diff --git a/components/diy_goodsGroup/diy_goodsGroup.js b/components/diy_goodsGroup/diy_goodsGroup.js index 9f3eb01..3092772 100644 --- a/components/diy_goodsGroup/diy_goodsGroup.js +++ b/components/diy_goodsGroup/diy_goodsGroup.js @@ -46,6 +46,7 @@ Component({ title_index: 0, swiper_hei: 0, title_class: "", + is_no_plus: 1, }, ready: function () { }, @@ -106,7 +107,7 @@ Component({ } if (this.data.object.bg_color) { this.setData({ - bg_color:this.data.object.bg_color, + bg_color: this.data.object.bg_color, }) } this.setData({ @@ -332,6 +333,21 @@ Component({ }) } }) + //调用接口判断商家plus有没有过期 + getApp().request.promiseGet("/store/storemoduleendtime/page?store_id=" + os.stoid + "&type=3", {}).then(res => { + if (res.data.code == 0) { + var arr = res.data.data.pageData; + if (arr.length > 0) { + var item = arr[0]; + if (item.is_sy == 0) { + var now = Date.parse(new Date()); now = now / 1000; + if (item.end_time < now) { + th.setData({ is_no_plus: 0 }) + } + } + } + } + }) }, diff --git a/components/diy_goodsGroup/diy_goodsGroup.wxml b/components/diy_goodsGroup/diy_goodsGroup.wxml index f73d30d..4b4ad3c 100644 --- a/components/diy_goodsGroup/diy_goodsGroup.wxml +++ b/components/diy_goodsGroup/diy_goodsGroup.wxml @@ -102,7 +102,7 @@ - + @@ -253,7 +253,7 @@ - + @@ -403,7 +403,7 @@ - + @@ -577,7 +577,7 @@ - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2) && is_no_plus}} {{g_filter.get_card_price(item,card_list,1)}} @@ -734,7 +734,7 @@ - + diff --git a/components/goods_list/goods_list.js b/components/goods_list/goods_list.js index 068ff44..6caf01a 100644 --- a/components/goods_list/goods_list.js +++ b/components/goods_list/goods_list.js @@ -16,21 +16,22 @@ Component({ card_field: "", card_name: "", max_card_field: "", - card_list: null + card_list: null, + is_no_plus: 1, }, properties: { // 这⾥定义了innerText属性,属性值可以在组件使⽤时指定 }, - ready: function () {}, + ready: function () { }, pageLifetimes: { //要处理一下,游客登录后的界面的变化,主要还该是改变会员 show: function () { this.init(); - if(getApp().globalData.login_back==1){ - getApp().globalData.login_back==0; - this.data.curPage=1; - this.setData({ recommend: [] }); - this.get_list(); + if (getApp().globalData.login_back == 1) { + getApp().globalData.login_back == 0; + this.data.curPage = 1; + this.setData({ recommend: [] }); + this.get_list(); } } }, @@ -83,9 +84,21 @@ Component({ }) } - - - + } + }) + //调用接口判断商家plus有没有过期 + getApp().request.promiseGet("/store/storemoduleendtime/page?store_id=" + os.stoid + "&type=3", {}).then(res => { + if (res.data.code == 0) { + var arr = res.data.data.pageData; + if (arr.length > 0) { + var item = arr[0]; + if (item.is_sy == 0) { + var now = Date.parse(new Date()); now = now / 1000; + if (item.end_time < now) { + th.setData({ is_no_plus: 0 }) + } + } + } } }) }, @@ -93,8 +106,8 @@ Component({ get_list: function () { var that = this; if (that.data.is_no_more == 0) return false; - var user_id=getApp().globalData.user_id; - if(!user_id) user_id=0; + var user_id = getApp().globalData.user_id; + if (!user_id) user_id = 0; var curPage = that.data.curPage; getApp().request.get('/api/weshop/goods/page?page', { @@ -124,10 +137,10 @@ Component({ //加载完成 if (data.data.pageData) { - for(let i in data.data.pageData){ - let item=data.data.pageData[i]; - if(item.user_price) - item.prom_price=item.user_price; + for (let i in data.data.pageData) { + let item = data.data.pageData[i]; + if (item.user_price) + item.prom_price = item.user_price; } that.setData({ @@ -197,10 +210,10 @@ Component({ }) }, - go_url:function (e) { - var url=e.currentTarget.dataset.url; - getApp().goto(url); - } + go_url: function (e) { + var url = e.currentTarget.dataset.url; + getApp().goto(url); + } }, }) \ No newline at end of file diff --git a/components/goods_list/goods_list.wxml b/components/goods_list/goods_list.wxml index 7675f86..a04bef6 100644 --- a/components/goods_list/goods_list.wxml +++ b/components/goods_list/goods_list.wxml @@ -6,9 +6,9 @@ - + - + @@ -16,25 +16,25 @@ {{item.goods_name}} - - - {{item.prom_integral}}积分 - + - - - - {{item.prom_price}} - - - - - - - {{item.market_price}} - - - - + + + {{item.prom_integral}}积分 + + + + + + {{item.prom_price}} + + + + + + + {{item.market_price}} + + + + @@ -81,7 +81,7 @@ - + @@ -94,16 +94,16 @@ {{item.market_price}} - + - - - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} - - - {{g_filter.get_card_price(item,card_list,1)}} - - + + + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + + + {{g_filter.get_card_price(item,card_list,1)}} + + diff --git a/packageA/pages/distribution/goods/goods.js b/packageA/pages/distribution/goods/goods.js index 919d255..f6d3451 100644 --- a/packageA/pages/distribution/goods/goods.js +++ b/packageA/pages/distribution/goods/goods.js @@ -14,18 +14,14 @@ Page({ inputVal: '',//记录搜索输入框的内容 isSort: false,//控制排序开关状态,true开启排序 isDescending: false, //isDescending降序,ascending升序 - - tabArr: [], currentTabIndex: 0, isShowRow: false,//控制视图切换状态 isHiddenDropdown: true,//控制筛选下拉菜单显隐 - list: null, isLoading: false, // 检测是否已经发送请求,防止重复发送请求 noMore: false, // 检测是否有更多数据,true为没有更多数据,false为还有数据 pageNum: 1, // 当前页数 - isCheckAll: false, //记录是否全选 currentQuery: { store_id: app.globalData.setting.stoid, diff --git a/packageA/pages/distribution/goods/goods.wxml b/packageA/pages/distribution/goods/goods.wxml index c957d8c..61c2412 100644 --- a/packageA/pages/distribution/goods/goods.wxml +++ b/packageA/pages/distribution/goods/goods.wxml @@ -5,12 +5,12 @@ - + 筛选 - + - - + + - + - + + + {{item.goods_name}} - - {{item.prom_integral}}积分 - + - - - - {{item.prom_price}} - - - - - - - {{item.market_price}} - - + + {{item.prom_integral}}积分 + + + + + + {{item.prom_price}} + + + + + + + {{item.market_price}} + + - - - - - - - - - - - {{filter.toFix(item[card_field],2)}} - - - {{card_name}} - - - - - - - - {{item.market_price}} - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - {{item.market_price}} - - - - - - - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} - - - {{g_filter.get_card_price(item,card_list,1)}} - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - + + + + + + + + + + + {{filter.toFix(item[card_field],2)}} + + + {{card_name}} + + + + + + + + {{item.market_price}} + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + {{item.market_price}} + + + + + + + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + + + + {{g_filter.get_card_price(item,card_list,1)}} + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + 分成金额:{{filter.toFix(item.commission, 2)}} - + - - + + - + {{item.goods_name}} - + - - {{item.prom_integral}}积分 - + - - - - {{item.prom_price}} - - - - - - - {{item.market_price}} - - + + {{item.prom_integral}}积分 + + + + + + {{item.prom_price}} + + + + + + + {{item.market_price}} + + - - - - - - - - - - - {{filter.toFix(item[card_field],2)}} - - - {{card_name}} - - - - - - - - {{item.market_price}} - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - {{item.market_price}} - - - - - - - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} - - + + + + + + + + + + + {{filter.toFix(item[card_field],2)}} + + + {{card_name}} + + + + + + + + {{item.market_price}} + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + {{item.market_price}} + + + + + + + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + + + {{g_filter.get_card_price(item,card_list,1)}} - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + 分成金额:{{filter.toFix(item.commission, 2)}} @@ -353,25 +357,17 @@ - + - - - - - - + 一键上架 一键下架 - - - - + \ No newline at end of file diff --git a/packageA/pages/distribution/shop/shop.js b/packageA/pages/distribution/shop/shop.js index 951e5b5..20860ff 100644 --- a/packageA/pages/distribution/shop/shop.js +++ b/packageA/pages/distribution/shop/shop.js @@ -17,26 +17,21 @@ Page({ isDescending: false, //isDescending降序,ascending升序 imghost: '', url: os.imghost, - tabArr: ['最新', '销量', '评论', '价格'], currentTabIndex: 0, isShowRow: false,//控制视图切换状态 isHiddenDropdown: true,//控制筛选下拉菜单显隐 - list: [], isLoading: false, // 检测是否已经发送请求,防止重复发送请求 noMore: false, // 检测是否有更多数据,true为没有更多数据,false为还有数据 pageNum: 1, // 当前页数 - - rank_switch: false, card_field: "", card_name: "", max_card_field: "", card_list: null, - isAll: true, - + is_no_plus:1, default_img: '/miniapp/images/default_g_img.gif', }, @@ -213,6 +208,21 @@ Page({ }) } }) + //调用接口判断商家plus有没有过期 + getApp().request.promiseGet("/store/storemoduleendtime/page?store_id=" + os.stoid + "&type=3", {}).then(res => { + if (res.data.code == 0) { + var arr = res.data.data.pageData; + if (arr.length > 0) { + var item = arr[0]; + if (item.is_sy == 0) { + var now = Date.parse(new Date()); now = now / 1000; + if (item.end_time < now) { + th.setData({ is_no_plus: 0 }) + } + } + } + } + }) } if (app.globalData.key_word) { diff --git a/packageA/pages/distribution/shop/shop.wxml b/packageA/pages/distribution/shop/shop.wxml index 419c52f..e790000 100644 --- a/packageA/pages/distribution/shop/shop.wxml +++ b/packageA/pages/distribution/shop/shop.wxml @@ -1,365 +1,365 @@ - - - - - - - - - - - - {{userInfo2.nickname}} - - - - - - - {{userInfo.nickname}} - - - - - {{filter.show_default(total)}} - 全部商品 - - - {{filter.show_default(newListTotal)}} - 新品 - - - - - - 会员中心 - - - - - - - - - - - - - 搜索 - - - - - - {{item}} - - - {{item}} - - - - - - - - - - - - - - - - - {{item.goods_name}} - - - - - {{item.prom_integral}} - 积分 - - + - - - - {{item.prom_price}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - - - - {{filter.toFix(item[card_field],2)}} - - - {{card_name}} - - - - - - - - {{item.market_price}} - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - {{item.market_price}} - - - - - - - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} - - - {{g_filter.get_card_price(item,card_list,1)}} - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - - - - - - {{item.goods_name}} - - - - - {{item.prom_integral}} - 积分 - - + - - - - {{item.prom_price}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - - - - {{filter.toFix(item[card_field],2)}} - - - {{card_name}} - - - - - - - - {{item.market_price}} - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - {{item.market_price}} - - - - - - - - {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} - - - - {{g_filter.get_card_price(item,card_list,1)}} - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - - - - - - {{filter.toFix(item.shop_price,2)}} - - - - - - - {{item.market_price}} - - - - - - - 分成金额: - {{filter.toFix(item.commission,2)}} - - - - - - - + + + + + + + + + + + + {{userInfo2.nickname}} + + + + + + + {{userInfo.nickname}} + + + + + {{filter.show_default(total)}} + 全部商品 + + + {{filter.show_default(newListTotal)}} + 新品 + + + + + + 会员中心 + + + + + + + + + + + + + 搜索 + + + + + + {{item}} + + + {{item}} + + + + + + + + + + + + + + + + + {{item.goods_name}} + + + + + {{item.prom_integral}} + 积分 + + + + + + + {{item.prom_price}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + + + + {{filter.toFix(item[card_field],2)}} + + + {{card_name}} + + + + + + + + {{item.market_price}} + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + {{item.market_price}} + + + + + + + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + + + {{g_filter.get_card_price(item,card_list,1)}} + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + + + + + + {{item.goods_name}} + + + + + {{item.prom_integral}} + 积分 + + + + + + + {{item.prom_price}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + + + + {{filter.toFix(item[card_field],2)}} + + + {{card_name}} + + + + + + + + {{item.market_price}} + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + {{item.market_price}} + + + + + + + + {{filter.toFix(g_filter.get_card_price(item,card_list,0),2)}} + + + + {{g_filter.get_card_price(item,card_list,1)}} + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + + + + + + {{filter.toFix(item.shop_price,2)}} + + + + + + + {{item.market_price}} + + + + + + + 分成金额: + {{filter.toFix(item.commission,2)}} + + + + + + + \ No newline at end of file diff --git a/packageD/pages/AI-test-skin/analyse/analyse.js b/packageD/pages/AI-test-skin/analyse/analyse.js index efb5be2..c6f5873 100644 --- a/packageD/pages/AI-test-skin/analyse/analyse.js +++ b/packageD/pages/AI-test-skin/analyse/analyse.js @@ -236,7 +236,7 @@ Page({ //检查睁眼闭眼 var eye_status = check_data.eye_status; console.log('eye_status',eye_status); - if (eye_status.left_eye > 0.1 || eye_status.right_eye > 0.1) { + if (eye_status.left_eye > 0.5 || eye_status.right_eye > 0.5) { // var msg = "未闭眼拍照"; // th.go_error(msg); // return false; diff --git a/pages/cart/cart2/cart2.js b/pages/cart/cart2/cart2.js index d7accad..fcf119b 100644 --- a/pages/cart/cart2/cart2.js +++ b/pages/cart/cart2/cart2.js @@ -227,23 +227,6 @@ Page({ } else { th.setData({ user_addr: ie }); } - var going = 0; - - - //使用计时器,避免空现象 - /*--- - var jishi= setInterval(function () { - if (th.data.is_b_now == 1 && going==0) { - if(th.data.bn_goods) { - th.calculatePrice2();going=1;clearInterval(jishi); - } - }else if(going==0) { - if (th.data.cartlist){ - th.calculatePrice();going = 1; clearInterval(jishi); - } - } - },500)--*/ - }); var is_card_back = getApp().globalData.is_card_back; //--更新默认地址--,看一下是不是跳到地址页面,同时也不是购买等级卡返回的,这里很重要,否则会重新更新收货物流公司 @@ -392,6 +375,7 @@ Page({ th.setData({ user_addr: addr }); //--------------------------立即购买------------------ if (ta.is_bnow == 1) { + console.log('is_bnow'); //读取门店 to.get_allsto(function (e) { th.setData({ allsto: e }); @@ -404,6 +388,8 @@ Page({ to.get_allsto(function (e) { th.setData({ allsto: e }); //-------获取购物车已经选择的商品-------- + console.log('购物车结算'); + th.get_cart(); }) } @@ -533,7 +519,7 @@ Page({ } if (item1.prom_type == 10) { if (!th.data.ladder_map[item1.prom_id]) { - //如果有组合购 + //如果有预售 var isok = 1; var is_flag = 1; var act = null; @@ -984,7 +970,6 @@ Page({ if (gg.prom_type == 5) { t.data.data.prom_id = gg.prom_id; t.data.data.prom_type = 5; - // console.log('xxxxxxxxxxxxxxxxxx', gg.is_coupon) th.is_coupon = gg.is_coupon; th.setData({ @@ -3786,7 +3771,7 @@ Page({ for (var i in goodlist) { var gd = goodlist[i]; //--如果是秒杀就跳出,如果是赠品,如果是组合购,如果是限制使用优惠券-- - if (gd.prom_type == 1 || gd.is_gift || gd.prom_type == 7) { + if (gd.prom_type == 1 || gd.is_gift || (gd.prom_type == 7 && gd.act.is_xz_yh)) { continue; } diff --git a/pages/goods/goodsInfo/goodsInfo.wxml b/pages/goods/goodsInfo/goodsInfo.wxml index c755b15..5fcc7ad 100644 --- a/pages/goods/goodsInfo/goodsInfo.wxml +++ b/pages/goods/goodsInfo/goodsInfo.wxml @@ -294,7 +294,7 @@ - + {{card_name}} diff --git a/pages/goods/goodsList/goodsList.js b/pages/goods/goodsList/goodsList.js index caee622..4fe7bfe 100644 --- a/pages/goods/goodsList/goodsList.js +++ b/pages/goods/goodsList/goodsList.js @@ -19,7 +19,8 @@ Page({ tabname:"sort", //排序的字段 adname:"asc", //升降的字段 is_new:0, - is_hot:0, + is_hot:0, + is_no_plus:1, prom_goods_list:null, rq_data:null, isToggle: false, //切换商品视图控制符 @@ -43,9 +44,6 @@ Page({ } var th=this; - - //a.init(this, "", "requestData"); - var url = this.data.baseUrl; this.data.is_new=t.is_new; this.data.is_hot=t.is_hot; @@ -152,9 +150,6 @@ Page({ } }) } - - - this.requestGoodsList(url); getApp().getConfig2(function(rs){ //计算等级价相关 @@ -186,7 +181,23 @@ Page({ }) },500) } - }); + }); + + //调用接口判断商家plus有没有过期 + getApp().request.promiseGet("/store/storemoduleendtime/page?store_id=" + oo.stoid + "&type=3", {}).then(res => { + if (res.data.code == 0) { + var arr = res.data.data.pageData; + if (arr.length > 0) { + var item = arr[0]; + if (item.is_sy == 0) { + var now = Date.parse(new Date()); now = now / 1000; + if (item.end_time < now) { + th.setData({ is_no_plus: 0 }) + } + } + } + } + }) }, //设置优惠券的 diff --git a/pages/goods/goodsList/goodsList.wxml b/pages/goods/goodsList/goodsList.wxml index 13dea3a..82e562a 100644 --- a/pages/goods/goodsList/goodsList.wxml +++ b/pages/goods/goodsList/goodsList.wxml @@ -120,7 +120,7 @@ - + {{item.shop_price}} {{item.market_price}} @@ -203,7 +203,7 @@ - + @@ -235,7 +235,7 @@ - + {{item.shop_price}} {{item.market_price}} diff --git a/pages/goods/search/search.wxml b/pages/goods/search/search.wxml index 3e5c1d6..c645425 100644 --- a/pages/goods/search/search.wxml +++ b/pages/goods/search/search.wxml @@ -97,7 +97,7 @@ - + @@ -124,7 +124,7 @@ - + ¥{{item.shop_price}} ¥{{item.market_price}} @@ -161,11 +161,9 @@ - - @@ -174,13 +172,7 @@ - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/pages/user/index/index.js b/pages/user/index/index.js index d553601..2fa7e06 100644 --- a/pages/user/index/index.js +++ b/pages/user/index/index.js @@ -74,32 +74,6 @@ Page({ } }) app.getUserFir(); - - - - - //-- 读取会员中心按钮列表 -- - /*-- - getApp().request.get("/api/weshop/userTool/page?pageSize=100&store_id="+os.stoid, { - success:function(res){ - if(ut.ajax_ok(res)) { - var d_list=res.data.data.pageData; - getApp().promiseGet("/api/weshop/storeDistribut/get/"+os.stoid,{}).then(rs=>{ - var dis=rs.data.data; - for(var i in d_list){ - if(d_list[i].name=='我的分销' && (!dis || dis.switch==0)){ - d_list.splice(i,1); - } - } - th.setData({user_tool:d_list}); - - - - }) - } - } - }) - --*/ this.init_user_tool() }, diff --git a/pages/user/index/index.wxml b/pages/user/index/index.wxml index fc4fe8a..09ce4f3 100644 --- a/pages/user/index/index.wxml +++ b/pages/user/index/index.wxml @@ -10,9 +10,10 @@ - {{userInfo.nickname}} - - {{GradeName}} + {{userInfo.nickname}} + + {{GradeName}} + @@ -69,29 +70,31 @@ - + + - - - 加入plus会员预计可省3031元 - + + + 加入plus会员预计可省3031元 + 立即开通 - + - - - 加入plus会员预计可省3031元 - + + + 加入plus会员预计可省3031元 + 立即续费 - + + @@ -102,8 +105,8 @@ 我的订单 - - 您有{{countDadaOrder}}个同城配送订单 + + 您有{{countDadaOrder}}个同城配送订单 更多 @@ -152,7 +155,7 @@ - 我的权益 + 我的权益 @@ -168,32 +171,32 @@ - - - + + + - + - - + + - - - - {{item.PrivilegeName}} + + + + {{item.PrivilegeName}} + - - + - + - - + + + - - 未找到数据 + 未找到数据 @@ -202,87 +205,87 @@ - - + - + - + 工具与服务 - - - - - - - - - - PLUS会员 - - - - - - 助力活动 - - - - - - 我的权益 - - - - - - 套盒商品 - - - - - - {{item.name}} - - - - - - - - - - - 联系客服 - - - - - 联系客服 - - - - - - - 收入卡包 - - - - - + + + + + + + + + + PLUS会员 + + + + + + 助力活动 + + + + + + 我的权益 + + + + + + 套盒商品 + + + + + + {{item.name}} + + + + + + + + + + + 联系客服 + + + + + 联系客服 + + + + + + + 收入卡包 + + + + + @@ -306,15 +309,17 @@ - - - - - - - - 提供技术支持 - + + + + + + + + + 提供技术支持 + + @@ -327,7 +332,7 @@ {{userInfo.nickname}} - + {{userInfo.address}} @@ -341,4 +346,4 @@ - + \ No newline at end of file diff --git a/pages/user/userinfo/userinfo.wxml b/pages/user/userinfo/userinfo.wxml index d2f17f3..2e82d7b 100644 --- a/pages/user/userinfo/userinfo.wxml +++ b/pages/user/userinfo/userinfo.wxml @@ -27,7 +27,7 @@ - +