细节修改

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

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

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

Loading…
Cancel
Save