feat: 订单列表页面详情弹窗关闭时刷新列表

This commit is contained in:
2025-03-07 11:07:00 +08:00
parent 8e52613f08
commit 73057865da
3 changed files with 10 additions and 4 deletions

View File

@@ -296,6 +296,7 @@ export default {
reset() {
this.user = "";
this.allSelected = false;
this.$emit("close");
},
returnPayType(payType) {
if (!payType) {
@@ -375,7 +376,7 @@ export default {
if (item === "all") {
for (let i in this.detail.detailMap) {
this.detail.detailMap[i].map((v) => {
if (v.checked) {
if (v.checked && v.selNumber) {
arr.push(v);
}
});