Compare commits

..

No commits in common. "c0af6ff14827847adabd28a22cdbc24c6171954f" and "6ea155c07d4305055bdf71c60277bf925b6c0d5e" have entirely different histories.

1 changed files with 8 additions and 10 deletions

View File

@ -356,7 +356,7 @@ export default {
})
// sangelxiu1
this.newShareMember = uni.getStorageSync('User')?.loginType !== 0
if (this.newShareMember) {
if(this.newShareMember){
uni.navigateTo({
url:
'/pages/regiest/shareRegister?specialArea=' +
@ -364,7 +364,7 @@ export default {
'&shoppArr=' +
JSON.stringify(shoppArr),
})
} else {
}else{
uni.navigateTo({
url:
'/pages/regiest/index?specialArea=' +
@ -586,12 +586,10 @@ export default {
})
})
this.shopCarList = res.data
if (this.newShareMember) {
if (this.shopCarList) {
this.shopCarList = this.shopCarList.filter(
car => car.specialArea === 1
)
let subCar = this.shopCarList.find(car => car.specialArea === 1)
if(this.newShareMember){
if(this.shopCarList){
this.shopCarList = this.shopCarList.filter(car => car.specialArea === 41);
let subCar = this.shopCarList.find(car => car.specialArea === 41)
this.$set(subCar, 'specialAreaVal', '会员专区')
}
}