From 45b4cbd921589ff8d6ea6ff5bb3a02a7eb6435d7 Mon Sep 17 00:00:00 2001
From: chenhaozhe <cgz@hz-kingdee.com>
Date: 星期四, 04 九月 2025 16:59:48 +0800
Subject: [PATCH] 生产领料单 问题修复
---
components/BillListPopup/BillListPopup.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/components/BillListPopup/BillListPopup.vue b/components/BillListPopup/BillListPopup.vue
index d92ee61..a42ea13 100644
--- a/components/BillListPopup/BillListPopup.vue
+++ b/components/BillListPopup/BillListPopup.vue
@@ -23,7 +23,7 @@
</view>
<scroll-view id="#BillListPanel" scroll-y="true" style="height: 55vh;">
<view class="options-wrapper" v-show="HBillList.length != 0">
- <uni-card :is-active="bill.isActive" v-for="(bill, index) in HBillList[curPage-1]" :key="index"
+ <uni-card :is-active="bill.isActive" :class="bill.isActive?'uni-card--is-active':''" v-for="(bill, index) in HBillList[curPage-1]" :key="index"
:title="bill['鐗╂枡鍚嶇О']" :extra="`鏁伴噺: ${bill['鏁伴噺']}`"
@tap="clickCard(bill['HSourceInterID'], bill['鍗曟嵁鍙�'], index)">
<view class="item">
@@ -166,6 +166,7 @@
} else {
this.multiSouceBillList.splice(index, 1)
}
+ console.log('this.multiSouceBillList: ',this.multiSouceBillList);
},
getBillList() {
this.HBillList = []
@@ -285,7 +286,7 @@
}
}
- .uni-card[is-active] {
+ .uni-card--is-active {
background-color: rgba(0, 122, 255, 0.2);
}
}
--
Gitblit v1.9.1