Ver código fonte

修改海报位置

cr 4 anos atrás
pai
commit
3b7f23639a
2 arquivos alterados com 13 adições e 11 exclusões
  1. 5 5
      src/common/js/poster.js
  2. 8 6
      src/pages/manage/index.vue

+ 5 - 5
src/common/js/poster.js

@@ -66,26 +66,26 @@ export default {
66 66
             lineH: 173,
67 67
             img: {
68 68
                 x: 35,
69
-                y: 275,
69
+                y: 310,
70 70
                 w: 150,
71 71
                 h: 140,
72 72
             },
73 73
             title: {
74 74
                 x: 205,
75
-                y: 300,
76
-                y2: 330,
75
+                y: 335,
76
+                y2: 363,
77 77
                 size: 22,
78 78
                 color: "#000000",
79 79
             },
80 80
             price: {
81 81
                 x: 205,
82
-                y: 380,
82
+                y: 410,
83 83
                 size: 32,
84 84
                 color: "#ff0000",
85 85
             },
86 86
             oldPrice: {
87 87
                 x: 205,
88
-                y: 410,
88
+                y: 440,
89 89
                 size: 18,
90 90
                 color: "#666666",
91 91
             },

+ 8 - 6
src/pages/manage/index.vue

@@ -99,7 +99,7 @@ export default {
99 99
             curShop: {},
100 100
             shopErr: false,
101 101
             menuList: [],
102
-            menuLoading:true,
102
+            menuLoading: true,
103 103
         };
104 104
     },
105 105
 
@@ -133,14 +133,16 @@ export default {
133 133
             uni.showLoading({
134 134
                 title: "加载中...",
135 135
             });
136
-                    this.menuLoading = true;
136
+            this.menuLoading = true;
137 137
             this.api
138 138
                 .get("/User/GetUserMenu", { userId: this.user.id })
139 139
                 .then((res) => {
140
-                    let userMenu = res.data.userMenu.mobile;
141
-                    let mobileMenu = res.data.menu.mobile;
142
-                    if (userMenu && userMenu.length) {
143
-                        this.initMenu(mobileMenu, userMenu);
140
+                    if (res.data.userMenu) {
141
+                        let userMenu = res.data.userMenu.mobile;
142
+                        let mobileMenu = res.data.menu.mobile;
143
+                        if (userMenu && userMenu.length) {
144
+                            this.initMenu(mobileMenu, userMenu);
145
+                        }
144 146
                     }
145 147
                     this.menuLoading = false;
146 148
                     uni.hideLoading();