Browse Source

修改直接补料

hella_online_20240829
lijuncheng 3 months ago
parent
commit
d33c18bbec
  1. 19
      src/mycomponents/record/recordComDetailCard.vue
  2. 3
      src/pages/repleinsh/record/directRepleinshRecord.vue

19
src/mycomponents/record/recordComDetailCard.vue

@ -1,12 +1,12 @@
<template>
<view class="" style="background-color: #fff;">
<uni-collapse ref="collapse1" @change="">
<uni-collapse ref="collapse1">
<uni-collapse-item :open="true">
<template v-slot:title>
<uni-swipe-action>
<uni-swipe-action-item @click="removeItem($event,dataContent)" :right-options="removeOptions">
<item-qty :dataContent="dataContent"
:isShowBalance="true" :isShowBalanceQty="isShowBalanceQty"></item-qty>
<item-qty :dataContent="dataContent" :isShowBalance="true"
:isShowBalanceQty="isShowBalanceQty"></item-qty>
</uni-swipe-action-item>
</uni-swipe-action>
</template>
@ -16,7 +16,8 @@
<uni-swipe-action-item @click="swipeClick($event,detail,index)"
:right-options="detail.scaned?scanOptions:detailOptions">
<balance :dataContent="detail" :isShowStdPack="false" :isShowStatus="isShowStatus"
:isShowPack="true" :isShowFromLocation="isShowFromLocation" :isShowToLocation="isShowToLocation">
:isShowPack="true" :isShowFromLocation="isShowFromLocation"
:isShowToLocation="isShowToLocation">
</balance>
</uni-swipe-action-item>
</uni-swipe-action>
@ -90,19 +91,23 @@
},
},
watch: {
dataContent: {
handler(newName, oldName) {
if (this.dataContent.subList.length > 0) {
if (this.$refs.collapse1 != undefined && this.$refs.collapse1 != null) {
this.$nextTick(res => {
this.$refs.collapse1.resize()
})
setTimeout(() => {
if (this.$refs.collapse1) {
this.$refs.collapse1.resize();
}
}, 500)
})
}
},
immediate: true,
deep: true
}
},
data() {

3
src/pages/repleinsh/record/directRepleinshRecord.vue

@ -285,7 +285,8 @@
},
selectBalanceItem(balance) {
this.afterGetBalance(this.resultData, balance);
this.resultData.balance =balance;
this.afterGetBalance(this.resultData);
},
afterGetBalance(result){

Loading…
Cancel
Save