Browse Source

修复成本分摊bug

dev-xx
qb 7 months ago
parent
commit
9098345086
  1. 4
      src/option/distribution/addVehicleStowage.js
  2. 6
      src/views/distribution/artery/VehicleStowageDetails.vue
  3. 2
      src/views/distribution/signfor/distributionSignfor.vue

4
src/option/distribution/addVehicleStowage.js

@ -822,7 +822,7 @@ export const detailsColumnList = [
width: '130', width: '130',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
isshowSummary: true, // isshowSummary: true,
sortable: true, sortable: true,
}, },
{ {
@ -833,7 +833,7 @@ export const detailsColumnList = [
width: '130', width: '130',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
isshowSummary: true, // isshowSummary: true,
sortable: true, sortable: true,
}, },
{ {

6
src/views/distribution/artery/VehicleStowageDetails.vue

@ -1065,7 +1065,7 @@ const handleCostApportionments = async () => {
if (code !== 200) return; if (code !== 200) return;
// , // ,
if (data.noDataLoadScanList.length === 0) { if (data.abnormalList.length === 0) {
const response = await postCostShareByLoadId(submitData); const response = await postCostShareByLoadId(submitData);
const { code, data, msg } = response.data; const { code, data, msg } = response.data;
@ -1074,7 +1074,7 @@ const handleCostApportionments = async () => {
} else { } else {
// , // ,
details.popUpShow.abnormalVisible = true; details.popUpShow.abnormalVisible = true;
details.abnormalData = data.noDataLoadScanList; details.abnormalData = data.abnormalList;
await nextTick(); await nextTick();
setNodeHeight(abnormalTableRef.value.$el, '60vh'); setNodeHeight(abnormalTableRef.value.$el, '60vh');
setTabelHeight(); setTabelHeight();
@ -1121,7 +1121,7 @@ const handleBatchDelete = () => {
if (code !== 200) return; if (code !== 200) return;
details.abnormalData = data.noDataLoadScanList; details.abnormalData = data.abnormalList;
} catch (error) { } catch (error) {
console.log('error :>> ', error); console.log('error :>> ', error);
} finally { } finally {

2
src/views/distribution/signfor/distributionSignfor.vue

@ -146,7 +146,7 @@
<el-button icon="el-icon-search" @click="searchHide" circle></el-button> <el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div> </div>
</div> </div>
<div style="height: 100%;"> <div style="height: 100%" class="mt20">
<!-- 列表模块 --> <!-- 列表模块 -->
<tablecmt <tablecmt
ref="tableNodeRef" ref="tableNodeRef"

Loading…
Cancel
Save