细节修改

version/0412
fanfan 9 months ago
parent b9f56147a4
commit b6e54aa6cb
  1. 11
      pages/index/index.vue
  2. 2
      pages/login/index.vue
  3. 6
      pages/user/vip/goods.vue

@ -727,7 +727,7 @@
},
getTypeList() {
GoodsApi.typeList({
is_in_store: this.current==0?0:1
is_in_store: this.current==0?'':1
}).then(res => {
if (res.status == 200) {
this.tabList = res.data.list;
@ -840,9 +840,10 @@
page: 1,
per_page: 100,
categoryId: val,
is_brand: 0,
is_brand: '',
is_new: 1,
order: 1,
is_in_store:''
}
GoodsApi.brandList(param).then(res => {
let arr = res.data.data
@ -869,10 +870,10 @@
page: 1,
per_page: 100,
categoryId: val,
is_brand: 1,
is_new: 0,
is_brand: this.current==0?1:'',
is_new: '',
order: 1,
is_in_store: this.current==0?0:1
is_in_store: this.current==0?'':1
}
GoodsApi.brandList(param).then(res => {
let arr = res.data.data;

@ -125,7 +125,7 @@
return
}
if (that.semCode == '') {
this.$toast('请输入验证码')
that.$toast('请输入验证码')
return
}
uni.login({

@ -113,11 +113,11 @@
let pamars = {
// store_id: 10001,
page: 1,
is_brand: 1,
is_new: 0,
is_brand:this.type==1?'':1,
is_new: '',
categoryId: categoryId,
order: app.orderSort,
is_in_store:this.type==1?1:0
is_in_store:this.type==1?1:''
}
Api.brandList(pamars)
.then(result => {

Loading…
Cancel
Save