店铺分类
This commit is contained in:
parent
364419c75a
commit
9e23c091d4
@ -652,7 +652,8 @@
|
||||
"path": "home/index",
|
||||
"style": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "店铺首页"
|
||||
"navigationBarTitleText": "店铺首页",
|
||||
"enablePullDownRefresh": true
|
||||
// #ifdef MP
|
||||
,
|
||||
"navigationBarTextStyle": "#FFFFFF"
|
||||
|
@ -610,7 +610,7 @@
|
||||
|
||||
// 获取已选择得店铺数据
|
||||
handleGetSelectStore(item) {
|
||||
this.setFormData.mer_cate_id = item.map(val => val.value);
|
||||
this.setFormData.mer_cate_id = item.map(val => val.store_category_id);
|
||||
console.log(item);
|
||||
this.setFormData.mer_cate_name = item.map(val => val.cate_name).join(',');
|
||||
this.$refs.select_store.close();
|
||||
|
@ -16,7 +16,7 @@
|
||||
<view class="selectList_tap">
|
||||
<view class="selectList_tap_item" v-for="(item, index) in tapList" :key="index"
|
||||
@click="selectTapItem(item, index)" :class="{ selectTap: selectTap == item.value }">
|
||||
{{ item.label }}
|
||||
{{ item.cate_name }}
|
||||
</view>
|
||||
<view class="selectList_tap_item" @click="selectTapLastItem(-1)" v-if="isShowLastItem"
|
||||
:class="{ selectTap: selectTap == -1 }">请选择</view>
|
||||
|
@ -723,6 +723,7 @@
|
||||
// #endif
|
||||
}
|
||||
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
||||
|
||||
},
|
||||
onShow() {
|
||||
|
||||
@ -730,6 +731,7 @@
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
@ -1168,6 +1170,7 @@
|
||||
setTimeout(() => {
|
||||
const newList = this.goods.reverse();
|
||||
this.goods = newList;
|
||||
// uni.startPullDownRefresh();
|
||||
uni.stopPullDownRefresh();
|
||||
}, 500)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user