chenhaozhe
2025-09-04 45b4cbd921589ff8d6ea6ff5bb3a02a7eb6435d7
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);
        }
    }