Compare commits

..

No commits in common. "c8c4cd6bd4a9a19087d3937c4d9cd4e853658e57" and "0cac04e0db19a45823bb262360e7920d7b76ce62" have entirely different histories.

4 changed files with 58 additions and 163 deletions

View File

@ -735,7 +735,7 @@ export default {
}
// ID
this.defaultInfoList = this.originalDefaultInfoList.filter(info => info?.id === item?.id);
this.defaultInfoList = this.originalDefaultInfoList.filter(info => info.id === item.id);
return;
}

View File

@ -57,9 +57,7 @@
<view class="payItem_tit">
<view class="payItem_left">
<checkbox :checked="item.check" @click="checkChange(item, index)"
v-if="item.community_order_rows.some(itemObj => itemObj.pay_status == 1)"
:disabled="!canSelectBill(index)">
</checkbox>
v-if="item.community_order_rows.some(itemObj => itemObj.pay_status == 1)"></checkbox>
<view style="margin-left: 24rpx">{{ item.order_date }}</view>
</view>
<view class="payItem_right">
@ -75,8 +73,8 @@
</view>
<view v-if="item.more">
<view class="payItem_List" v-for="(items, indes) in item.community_order_rows" :key="items.order_id">
<checkbox :checked="items.check" @click="itemsCheckChange(items, indes, index)" v-if="items.pay_status == 1"
:disabled="!canSelectItem(indes, index)"></checkbox>
<checkbox :checked="items.check" @click="itemsCheckChange(items, indes, index)"
v-if="items.pay_status == 1"></checkbox>
<view class="Item_time" v-if="items.billing_cycle == 1">
{{ items.order_date }}
</view>
@ -281,7 +279,6 @@ export default {
currentCommunity: "", //
currentCommunityAddr: "", //
Bill: "", //
Bill2: "", //
balanceMoney: 0, //
currentMoney: 0, //
@ -292,7 +289,6 @@ export default {
page_num: 1,
payOrderList: [],
flag: false,
isAllow: false,
};
},
onLoad(options) {
@ -391,7 +387,6 @@ export default {
page_num: 1,
page_size: 50,
}).then((res) => {
this.isAllow = res.rows[0].community.bill_allow_skip_payment === 1;
this.roomList = res.rows;
if (!this.currentRoom.room_id) {
this.currentRoom = this.roomList[0]
@ -410,7 +405,6 @@ export default {
//
selectRoom(item) {
this.getRoomSelect()
// ID
this.selectedRoomId = item.room_id;
//
@ -457,30 +451,7 @@ export default {
ite.check = false;
});
});
//
res.rows.sort((a, b) => {
// community_order_rowsorder_date
const yearA = a.community_order_rows && a.community_order_rows.length > 0 ? parseInt(a.community_order_rows[0].order_date) : 0;
const yearB = b.community_order_rows && b.community_order_rows.length > 0 ? parseInt(b.community_order_rows[0].order_date) : 0;
//
if (yearA !== yearB) {
return yearA - yearB;
}
//
const monthA = a.community_order_rows && a.community_order_rows.length > 0 ? parseInt(a.community_order_rows[0].order_datetime) : 0;
const monthB = b.community_order_rows && b.community_order_rows.length > 0 ? parseInt(b.community_order_rows[0].order_datetime) : 0;
return monthA - monthB;
});
this.Bill = res.rows;
this.Bill2 = res.rows.reduce((result, item) => {
const paidOrders = item.community_order_rows.filter(ite => ite.pay_status == 1);
return result.concat(paidOrders);
}, []);
resolve();
}).catch((error) => {
reject(error);
@ -491,57 +462,11 @@ export default {
changeCheck(e, index) {
this.Bill[index].more = !this.Bill[index].more;
},
//
canSelectBill(index) {
if (this.isAllow) return true;
//
if (index === 0) return true;
//
for (let i = 0; i < index; i++) {
const yearBill = this.Bill[i];
//
const hasUnpaid = yearBill.community_order_rows.some(item => item.pay_status === 1);
if (hasUnpaid) {
return false;
}
}
return true;
},
//
canSelectItem(indes, index) {
if (this.isAllow) return true;
//
if (!this.canSelectBill(index)) {
return false;
}
//
if (indes === 0) return true;
//
const yearBill = this.Bill[index];
for (let i = 0; i < indes; i++) {
if (yearBill.community_order_rows[i].pay_status === 1) {
return false;
}
}
return true;
},
//
checkChange(e, index) {
//
if (this.canSelectBill(index)) {
this.Bill[index].check = !this.Bill[index].check;
this.Bill[index].community_order_rows.forEach((item, indes) => {
//
if (item.pay_status == 1 && this.canSelectItem(indes, index)) {
this.Bill[index].community_order_rows.forEach((item) => {
if (item.pay_status == 1) {
item.check = this.Bill[index].check;
}
});
@ -556,42 +481,30 @@ export default {
});
});
this.currentMoney = money ? money.toFixed(2) : 0.00;
}
},
//
itemsCheckChange(e, indes, index) {
//
if (this.canSelectItem(indes, index)) {
this.Bill[index].community_order_rows[indes].check =
!this.Bill[index].community_order_rows[indes].check;
//
let isAll = this.Bill[index].community_order_rows.every((item, idx) => {
//
if (item.pay_status === 1 && this.canSelectItem(idx, index)) {
//
let isAll = this.Bill[index].community_order_rows.every((item) => {
return item.check;
}
//
return true;
});
if (isAll) {
this.Bill[index].check = true;
} else {
this.Bill[index].check = false;
}
//
//Billcommunity_order_rows
let money = 0;
this.Bill.forEach((item) => {
item.community_order_rows.forEach((ite) => {
if (ite.check && ite.pay_status == 1) {
if (ite.check) {
money += ite.money;
}
});
});
this.currentMoney = money ? money.toFixed(2) : 0.00;
}
},
//
changePayType(e) {

View File

@ -40,8 +40,7 @@
</view>
</view>
<view class="GG_rigth" @click="showSizePopup">
{{ info.commodity_goods_info_list ? info.commodity_goods_info_list.length : 0 }}<u-icon size="26rpx"
name="arrow-right"></u-icon>
{{ info.commodity_goods_info_list ? info.commodity_goods_info_list.length : 0 }}<u-icon size="26rpx" name="arrow-right"></u-icon>
</view>
</view>
@ -190,8 +189,7 @@
加入购物车
</view>
<view class="car_right car_right_disabled"
v-if="info.commodity_goods_info_list[currentGGIndex].stock_quantity < 1">
<view class="car_right car_right_disabled" v-if="info.commodity_goods_info_list[currentGGIndex].stock_quantity < 1">
已售罄
</view>
</view>
@ -437,6 +435,7 @@ export default {
request(apiArr.getGoodsInfo, "POST", {
id: this.id,
}).then((res) => {
console.log(res);
//
res.commodity_goods_info_list.forEach((item) => {
@ -459,6 +458,7 @@ export default {
});
}
this.info = res;
console.log("this.info", this.info.commodity_goods_info_list);
//
let selectedIndex = 0;
@ -517,17 +517,14 @@ export default {
//
getShopCar() {
request(apiArr.getCarCount, "POST", {}).then((res) => {
this.carNum = res.total;
this.prevCarNum = res.total;
});
},
getShopCarList() {
return request(apiArr.getCar, "POST", {}).then((res) => {
//
this.carOrderList = [].concat(res.same_day_cart_list, res.normal_cart_list)
.flatMap(supplier => supplier.commodity_cart_and_goods_model);
this.carNum = res.total;
return res;
request(apiArr.getCar, "POST", {}).then((res) => {
this.carOrderList = res.commodity_cart_list;
});
},
@ -658,23 +655,20 @@ export default {
},
onReachBottom() { },
onShow() {
this.getShopCarList().then(() => {
this.getShopCarList();
this.getGoodsInfo();
this.getShopCar();
this.getComment();
});
},
//( id count 0 )
onHide() {
let goods_id_and_count = [];
this.info.commodity_goods_info_list.forEach((item) => {
if (item.cart_count) {
goods_id_and_count.push({
goods_id: item.id,
count: item.cart_count.count,
count: item.cart_count ? item.cart_count.count : 0,
});
}
});
request(apiArr.updateCar, "POST", {

View File

@ -99,7 +99,7 @@
<view class="serverList1_right" v-if="serverRightList.length > 0">
<view :class="['serverItemRight', `serverItemRight${index + 1}`]"
v-for="(item, index) in serverRightList" :key="index">
<image :src="item.pic_src" mode="" @tap="index === 0 ? toAdvertisingView(serverRightList) : goToPurify(item)"/>
<image :src="item.pic_src" mode="" @tap="index === 0 ? toAdvertisingView(serverRightList) : headerServerClick(item)"/>
</view>
</view>
</view>
@ -360,18 +360,6 @@ export default {
NavgateTo('/packages/advertising/index/index?id=' + item.id, { isLogin: false })
},
//
goToPurify() {
uni.navigateToMiniProgram({
appId: 'wx77b22c0a0018e580',
path: 'pages/newLogin/newLogin',
envVersion: 'release',
success(res) {
//
}
})
},
async goToWuye() {
uni.removeStorageSync('order_dispatch_permission');
uni.removeStorageSync('work_order_permission');