Browse Source

修改直接补料

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

31
src/mycomponents/record/recordComDetailCard.vue

@ -1,22 +1,23 @@
<template> <template>
<view class="" style="background-color: #fff;"> <view class="" style="background-color: #fff;">
<uni-collapse ref="collapse1" @change=""> <uni-collapse ref="collapse1">
<uni-collapse-item :open="true"> <uni-collapse-item :open="true">
<template v-slot:title> <template v-slot:title>
<uni-swipe-action > <uni-swipe-action>
<uni-swipe-action-item @click="removeItem($event,dataContent)" :right-options="removeOptions"> <uni-swipe-action-item @click="removeItem($event,dataContent)" :right-options="removeOptions">
<item-qty :dataContent="dataContent" <item-qty :dataContent="dataContent" :isShowBalance="true"
:isShowBalance="true" :isShowBalanceQty="isShowBalanceQty"></item-qty> :isShowBalanceQty="isShowBalanceQty"></item-qty>
</uni-swipe-action-item> </uni-swipe-action-item>
</uni-swipe-action> </uni-swipe-action>
</template> </template>
<view class='split_line'></view> <view class='split_line'></view>
<view class="" v-for="(detail,index) in dataContent.subList" :key="index"> <view class="" v-for="(detail,index) in dataContent.subList" :key="index">
<uni-swipe-action > <uni-swipe-action>
<uni-swipe-action-item @click="swipeClick($event,detail,index)" <uni-swipe-action-item @click="swipeClick($event,detail,index)"
:right-options="detail.scaned?scanOptions:detailOptions"> :right-options="detail.scaned?scanOptions:detailOptions">
<balance :dataContent="detail" :isShowStdPack="false" :isShowStatus="isShowStatus" <balance :dataContent="detail" :isShowStdPack="false" :isShowStatus="isShowStatus"
:isShowPack="true" :isShowFromLocation="isShowFromLocation" :isShowToLocation="isShowToLocation"> :isShowPack="true" :isShowFromLocation="isShowFromLocation"
:isShowToLocation="isShowToLocation">
</balance> </balance>
</uni-swipe-action-item> </uni-swipe-action-item>
</uni-swipe-action> </uni-swipe-action>
@ -26,7 +27,7 @@
</uni-collapse> </uni-collapse>
<balance-qty-edit ref="balanceQtyEdit" @confirm="confirm"></balance-qty-edit> <balance-qty-edit ref="balanceQtyEdit" @confirm="confirm"></balance-qty-edit>
<record-detail-popup ref="recordDetailPopup"></record-detail-popup> <record-detail-popup ref="recordDetailPopup"></record-detail-popup>
<!-- <balance-detail-popup ref="balanceDetailPopup"></balance-detail-popup> --> <!-- <balance-detail-popup ref="balanceDetailPopup"></balance-detail-popup> -->
<comMessage ref="comMessage"></comMessage> <comMessage ref="comMessage"></comMessage>
</view> </view>
</template> </template>
@ -90,19 +91,23 @@
}, },
}, },
watch: { watch: {
dataContent: { dataContent: {
handler(newName, oldName) { handler(newName, oldName) {
if (this.dataContent.subList.length > 0) { if (this.dataContent.subList.length > 0) {
if (this.$refs.collapse1 != undefined && this.$refs.collapse1 != null) { this.$nextTick(res => {
this.$nextTick(res => { setTimeout(() => {
this.$refs.collapse1.resize() if (this.$refs.collapse1) {
}) this.$refs.collapse1.resize();
} }
}, 500)
})
} }
}, },
immediate: true, immediate: true,
deep: true deep: true
} }
}, },
data() { data() {
@ -176,4 +181,4 @@
</script> </script>
<style> <style>
</style> </style>

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

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

Loading…
Cancel
Save