1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <script>
- // window.SITE_CONFIG = {};
- // window.SITE_CONFIG["dictList"] = JSON.parse(localStorage.getItem('dictList'))||[];
- // import Api from "./@/http/Api.js";
- export default {
- data() {
- return {
- // globalData: {},
- }
- },
- methods:{
- // getDictAll() {
- // Api.getDictList().then((res) => {
- // console.log(res.data)
- // window.SITE_CONFIG["dictList"] = res.data.data;
- // localStorage.setItem("dictList",JSON.stringify(res.data.data));
- // });
- // },
- },
- onLaunch: function() {
- // this.getDictAll();
- // 获取字典列表, 添加并全局变量保存
- },
- onShow: function() {
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "@/uni_modules/uview-ui/index.scss";
- uni-page-body,html,body{
- height: 100%;
- width: 750rpx;
- background: #F6F6F6;
- }
- </style>
|