- 
Status changed to merged 
- 
mentioned in commit fc825b88fb800e24a02128f84470b95387282737 
- 
2. 默认情况下,顶部搜索框的优化 3. 推荐列表,商品分组的组件在游客登陆后,要能够正确的显示商品的价格 
Showing
7 changed files
app.json
| ... | ... | @@ -87,23 +87,23 @@ | 
| 87 | 87 | "pages/template/index", | 
| 88 | 88 | "pages/store/index" | 
| 89 | 89 | ], | 
| 90 | - | |
| 90 | + "plugins": { | |
| 91 | + "live-player-plugin": { | |
| 92 | + "version": "1.1.1", | |
| 93 | + "provider": "wx2b03c6e691cd7370" | |
| 94 | + } | |
| 95 | + }, | |
| 91 | 96 | "subPackages": [{ | 
| 92 | 97 | "root": "packageA/", | 
| 93 | 98 | "name":"pack1", | 
| 94 | - "pages": [ | |
| 95 | - "pages/liveStream/liveStream", | |
| 99 | + "pages": [ | |
| 96 | 100 | "pages/prom_list/prom_list", | 
| 97 | 101 | "pages/quan_list/quan_list", | 
| 98 | 102 | "pages/quan_pro/quan_pro", | 
| 103 | + "pages/liveStream/liveStream", | |
| 99 | 104 | "pages/liveStreamDetails/liveStreamDetails" | 
| 100 | - ], | |
| 101 | - "plugins": { | |
| 102 | - "live-player-plugin": { | |
| 103 | - "version": "1.0.13", | |
| 104 | - "provider": "wx2b03c6e691cd7370" | |
| 105 | - } | |
| 106 | - } | |
| 105 | + ] | |
| 106 | + | |
| 107 | 107 | }], | 
| 108 | 108 | |
| 109 | 109 | "permission": { | ... | ... | 
components/diy_goodsGroup/diy_goodsGroup.js
| ... | ... | @@ -83,39 +83,10 @@ Component({ | 
| 83 | 83 | }, | 
| 84 | 84 | |
| 85 | 85 | pageLifetimes: { | 
| 86 | + //游客登陆后,只要更新卡的情况 | |
| 86 | 87 | show: function () { | 
| 87 | - this.data.firist_type_curr=0, | |
| 88 | - this.data.currentPage=1, | |
| 89 | - this.setData({ goods_array: null}) | |
| 90 | - | |
| 91 | - // 页面被展示 | |
| 92 | - // 在组件实例进入页面节点树时执行 | |
| 93 | - this.data.classstyle_id = this.data.object.classstyle; | |
| 94 | - this.data.goodscount = this.data.object.goodscount; | |
| 95 | - this.data.wgroup = this.data.object.wgroup; | |
| 96 | - | |
| 97 | - this.setData({ | |
| 98 | - classstyle_id: this.data.object.classstyle | |
| 99 | - }) | |
| 100 | - if (this.data.object.goodsclass == 1) { | |
| 101 | - this.data.is_recommend = 1 | |
| 102 | - } | |
| 103 | - if (this.data.object.goodsclass == 2) { | |
| 104 | - this.data.is_hot = 1 | |
| 105 | - } | |
| 106 | - if (this.data.object.goodsclass == 3) { | |
| 107 | - this.data.is_new = 1 | |
| 108 | - } | |
| 109 | - this.data.requestData = new Array(); | |
| 110 | - //---将数组--- | |
| 111 | - this.data.g_id = this.data.object.data; | |
| 112 | - var arr = []; | |
| 113 | - for (var i = 0; i < this.data.g_id .length; i += this.data.goodscount) { | |
| 114 | - arr.push(this.data.g_id .slice(i, i + this.data.goodscount)); | |
| 115 | - } | |
| 116 | - | |
| 117 | - this.data.firist_type_data = arr; | |
| 118 | - this.init(this.data.classstyle_id, this.data.wgroup); | |
| 88 | + //--初始化卡类-- | |
| 89 | + this.card_init(); | |
| 119 | 90 | }, | 
| 120 | 91 | }, | 
| 121 | 92 | |
| ... | ... | @@ -178,16 +149,18 @@ Component({ | 
| 178 | 149 | break; | 
| 179 | 150 | case "2": | 
| 180 | 151 | var item = {}; | 
| 152 | + var r_data={ | |
| 153 | + store_id: os.stoid , | |
| 154 | + pageSize: th.data.goodscount, | |
| 155 | + page: th.data.currentPage, | |
| 156 | + isonsale: 1, | |
| 157 | + }; | |
| 158 | + if(th.data.is_recommend) r_data.is_recommend=th.data.is_recommend; | |
| 159 | + if(th.data.is_hot) r_data.is_hot=th.data.is_hot; | |
| 160 | + if(th.data.is_new) r_data.is_new=th.data.is_new; | |
| 161 | + | |
| 181 | 162 | app.request.promiseGet("/api/weshop/goods/page", { | 
| 182 | - data: { | |
| 183 | - store_id: os.stoid , | |
| 184 | - is_recommend: th.data.is_recommend, | |
| 185 | - is_hot: th.data.is_hot, | |
| 186 | - is_new: th.data.is_new, | |
| 187 | - pageSize: th.data.goodscount, | |
| 188 | - page: th.data.currentPage, | |
| 189 | - isonsale: 1, | |
| 190 | - } | |
| 163 | + data:r_data | |
| 191 | 164 | }).then(res => { | 
| 192 | 165 | //商品地址 | 
| 193 | 166 | var goods = res.data.data.pageData; | ... | ... | 
components/diy_searchbox/diy_searchbox.wxml
| ... | ... | @@ -10,7 +10,7 @@ | 
| 10 | 10 | </view> | 
| 11 | 11 | </view> | 
| 12 | 12 | </view> | 
| 13 | -<view wx:if="{{object.is_top}}" style="height: 120rpx;"></view> | |
| 13 | +<view wx:if="{{object.is_top==1}}" style="height: 120rpx;"></view> | |
| 14 | 14 | </block> | 
| 15 | 15 | |
| 16 | 16 | |
| ... | ... | @@ -26,7 +26,7 @@ | 
| 26 | 26 | <view class='s2_cen' style='background-color:{{object.inner_bgcolor}}'> | 
| 27 | 27 | <navigator url="/pages/goods/search/search" class="s1_gk_a2"> | 
| 28 | 28 | <image src='/public/static/images/model/select.png'></image> | 
| 29 | - <text>在店铺内搜索</text> | |
| 29 | + <text style='color:{{object.word_color?object.word_color:"#fff"}}'>在店铺内搜索</text> | |
| 30 | 30 | </navigator> | 
| 31 | 31 | </view> | 
| 32 | 32 | ... | ... | 
components/goods_list/goods_list.js
pages/index/index/index.js
| ... | ... | @@ -76,7 +76,7 @@ Page({ | 
| 76 | 76 | |
| 77 | 77 | }, | 
| 78 | 78 | |
| 79 | - onLoad: function() { | |
| 79 | + onLoad: async function() { | |
| 80 | 80 | var th = this; | 
| 81 | 81 | //看一下商家是否开通了权益 | 
| 82 | 82 | //--初始化是否有打勾-- | 
| ... | ... | @@ -92,26 +92,11 @@ Page({ | 
| 92 | 92 | }); | 
| 93 | 93 | } | 
| 94 | 94 | }) | 
| 95 | - | |
| 96 | - | |
| 97 | - }, | |
| 98 | - //关闭新用户领取广告 | |
| 99 | - close_disgraceful: function() { | |
| 100 | - var th = this; | |
| 101 | - th.setData({ | |
| 102 | - is_disgraceful: 0 | |
| 103 | - }) | |
| 104 | - }, | |
| 105 | 95 | |
| 106 | - async onShow() { | |
| 107 | - | |
| 108 | - var th = this | |
| 109 | - | |
| 110 | 96 | //调用底部导航 | 
| 111 | 97 | getApp().globalData.url=th.data.url | 
| 112 | 98 | t.editTabBar(th,o.stoid,th.data.url); | 
| 113 | 99 | |
| 114 | - | |
| 115 | 100 | await this.init_load(); | 
| 116 | 101 | //显示的时候要开启计时器 | 
| 117 | 102 | this.data.is_timer = 1; | 
| ... | ... | @@ -119,16 +104,16 @@ Page({ | 
| 119 | 104 | if (this.data.isTemplate) { | 
| 120 | 105 | //---先获取会员--- | 
| 121 | 106 | t.getUserFir(function() { | 
| 122 | - th.is_festival(); | |
| 123 | - var new_nav = th.data.new_nav; | |
| 124 | - if (new_nav == "") { | |
| 125 | - th.is_new(); | |
| 126 | - } | |
| 127 | - setTimeout(function () { | |
| 128 | - if (getApp().globalData.user_id) getApp().requestCardNum(th); | |
| 129 | - },500) | |
| 130 | - | |
| 131 | - }); | |
| 107 | + th.is_festival(); | |
| 108 | + var new_nav = th.data.new_nav; | |
| 109 | + if (new_nav == "") { | |
| 110 | + th.is_new(); | |
| 111 | + } | |
| 112 | + setTimeout(function () { | |
| 113 | + if (getApp().globalData.user_id) getApp().requestCardNum(th); | |
| 114 | + },500) | |
| 115 | + | |
| 116 | + }); | |
| 132 | 117 | } else { | 
| 133 | 118 | await this.init_fir(); | 
| 134 | 119 | wx.setNavigationBarColor({ | 
| ... | ... | @@ -168,12 +153,25 @@ Page({ | 
| 168 | 153 | }).then(res => { | 
| 169 | 154 | if (res.data.data) { | 
| 170 | 155 | var gd_category = res.data.data.pageData; | 
| 171 | - | |
| 172 | 156 | th.setData({ | 
| 173 | 157 | gd_category: gd_category | 
| 174 | 158 | }); | 
| 175 | 159 | } | 
| 176 | 160 | }) | 
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + }, | |
| 165 | + //关闭新用户领取广告 | |
| 166 | + close_disgraceful: function() { | |
| 167 | + var th = this; | |
| 168 | + th.setData({ | |
| 169 | + is_disgraceful: 0 | |
| 170 | + }) | |
| 171 | + }, | |
| 172 | + | |
| 173 | + async onShow() { | |
| 174 | + var th = this | |
| 177 | 175 | }, | 
| 178 | 176 | //当隐藏的时候就关闭计时器 | 
| 179 | 177 | onHide: function() { | 
| ... | ... | @@ -185,6 +183,7 @@ Page({ | 
| 185 | 183 | clearInterval(i); | 
| 186 | 184 | } | 
| 187 | 185 | |
| 186 | + | |
| 188 | 187 | }, | 
| 189 | 188 | |
| 190 | 189 | //同步初始加载 | 
| ... | ... | @@ -469,13 +468,12 @@ Page({ | 
| 469 | 468 | this.data.timer && (clearInterval(this.data.timer), this.data.timer = null); | 
| 470 | 469 | }, | 
| 471 | 470 | onPageScroll: function(e) { | 
| 472 | - this.setData({ | |
| 473 | - scrollTop: e.scrollTop | |
| 474 | - }); | |
| 471 | + this.data.scrollTop=e.scrollTop; | |
| 472 | + | |
| 473 | + | |
| 475 | 474 | var t = getCurrentPages(); | 
| 476 | 475 | "pages/index/index/index" == t[t.length - 1].route; | 
| 477 | - /*-- | |
| 478 | - && (e.scrollTop > 10 ? wx.setNavigationBarColor({ | |
| 476 | + /*--(e.scrollTop > 10 ? wx.setNavigationBarColor({ | |
| 479 | 477 | frontColor: "#ffffff", | 
| 480 | 478 | backgroundColor: "#f95959" | 
| 481 | 479 | }) : wx.setNavigationBarColor({ | 
| ... | ... | @@ -829,5 +827,4 @@ Page({ | 
| 829 | 827 | }) | 
| 830 | 828 | } | 
| 831 | 829 | |
| 832 | - | |
| 833 | 830 | }); | 
| 834 | 831 | \ No newline at end of file | ... | ... | 
pages/index/index/index.wxml
