Browse Source

修复零担计算,高度丢失

fix_bug_pro20231227
13208366016 1 year ago
parent
commit
6e97be203c
  1. 50
      src/views/distribution/turndelivery/devtmp.vue

50
src/views/distribution/turndelivery/devtmp.vue

@ -390,11 +390,11 @@
</div>
</div>
<!-- 弹窗组件 -->
<div class="addlalog addlalogS">
<div class="addlalog addlalogS" >
<el-dialog v-model="AddLalog" :title="wrapLoading ? '包件信息' : '在库订单信息'">
<!-- 表格列开始 -->
<!-- data 订单信息 wrapData包件信息 -->
<div class="SoInput" v-show="searchSo" ref="SoHeight">
<div class="SoInput" v-if="searchSo" ref="SoHeight">
<el-form label-width="100px" :model="parameter">
<el-form-item label="商场名称:">
<el-input
@ -487,7 +487,7 @@
<el-table
:data="wrapLoading ? wrapData : data"
border
:height="searchSo ? 512 : 600 + 'px'"
:height="searchSo? '500': '580'"
style="width: 100%"
ref="tableRefs"
@select-all="selectAll"
@ -693,7 +693,7 @@
<!-- 弹窗组件 -->
<div class="addlalog addlalogS">
<!-- <el-dialog v-model="SjTc" title="司机信息配置"> -->
<el-dialog v-model="comprehensive" title="零担品类信息">
<el-dialog v-model="comprehensive" :title="SjTc ? '司机配置' : '零担品类信息'">
<!-- 司机信息弹窗 -->
<el-table v-if="SjTc" :data="DvInfoData" border style="width: 100%">
<el-table-column prop="driverName" label="司机信息" />
@ -704,13 +704,12 @@
</template>
</el-table-column>
</el-table>
<!-- EnteringLibrary在库录入 -->
<div Class="iszer">
<!-- <span style="font-weight: bold; display: block; padding-bottom: 10px"
<div Class="iszer" v-if="EnteringLibrary">
<span style="font-weight: bold; display: block; padding-bottom: 10px"
>在库总数:{{ dataInfo[dataId].handQuantity }}</span
> -->
<el-table v-if="EnteringLibrary" :data="isZeroTable" border style="width: 100%">
>
<el-table :data="isZeroTable" border style="width: 100%">
<el-table-column fixed prop="firsts" label="名称" />
<el-table-column prop="quantity" label="数量" />
<el-table-column prop="handQuantity" label="在库数量" />
@ -835,11 +834,12 @@ const labelPosition = ref<FormProps['labelPosition']>('right');
const SoInfoData = ref(); //
const parameter = ref({}); //
const wrapTemp = ref([]); //
const EnteringLibrary = ref(true); //
const EnteringLibrary = ref(false); //
const QuantityEntryS = ref(false); //
const isZeroTable = ref([]); //
const comprehensive = ref(false); //,
const QuantityEntryStatus = ref(false); //
const TCzj = ref(); //
//
//
//
@ -1776,25 +1776,6 @@ const EditEvent = val => {
//
console.log('触发了编辑事件', val);
};
//
// const toggleSelection = (val = true, data, dataInfo = wrapData.value,index=0) => {
// //,IF
// const setIn = setTimeout(() => {
// if (val) {
// // tableRefs.value[0]
// dataInfo.forEach((row, i) => {
// tableRefs.value[index].toggleRowSelection(dataInfo[i], true);
// });
// } else {
// dataInfo.forEach((row, i) => {
// if (row.id == data[i]) {
// tableRefs.value[index].toggleRowSelection(dataInfo[i], true);
// }
// });
// }
// clearTimeout(setIn); //
// }, 0);
// };
const toggleSelection = options => {
const { val = true, data, dataInfo = wrapData.value, index = 0 } = options;
@ -1895,6 +1876,7 @@ const Entering = val => {
comprehensive.value = true; //
EnteringLibrary.value = true; //
QuantityEntryStatus.value = false; //
SjTc.value = false; //
console.log('在库录入', val);
getZeroOrderDetail(val.id).then(res => {
@ -1908,6 +1890,7 @@ const QuantityEntry = val => {
comprehensive.value = true; //
QuantityEntryStatus.value = true; //
EnteringLibrary.value = true; //
SjTc.value = false; //
getZeroOrderDetail(val.id).then(res => {
console.log(res, '数量录入返回信息');
isZeroTable.value = res.data.data;
@ -1919,9 +1902,9 @@ const ModifyLCL = () => {
console.log(res, '修改零担');
console.log(isZeroTable.value, '修改零担的值');
});
comprehensive.value = false; //
QuantityEntryStatus.value = false; //
EnteringLibrary.value = false; //
comprehensive.value = false; //
QuantityEntryStatus.value = false; //
EnteringLibrary.value = false; //
};
//
const SubmitLoad = () => {
@ -1936,7 +1919,7 @@ const SubmitLoad = () => {
console.log(isZeroTable.value, '提交零担的值');
});
}
comprehensive.value = false; //
comprehensive.value = false; //
EnteringLibrary.value = false; //
QuantityEntryStatus.value = false; //
};
@ -2177,6 +2160,7 @@ const merge = (val, kindS) => {
}
comprehensive.value = true; //
SjTc.value = true;
EnteringLibrary.value = false; //
};
//

Loading…
Cancel
Save