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. 36
      src/views/distribution/signfor/distributionSignfor.vue

4
src/option/distribution/addVehicleStowage.js

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

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

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

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

@ -146,24 +146,24 @@
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
<div style="height: 100%;">
<!-- 列表模块 -->
<tablecmt
ref="tableNodeRef"
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<el-text size="small" @click="editsolt(slotProps.scope)"> </el-text>
</template>
</tablecmt>
</div>
<div style="height: 100%" class="mt20">
<!-- 列表模块 -->
<tablecmt
ref="tableNodeRef"
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<el-text size="small" @click="editsolt(slotProps.scope)"> </el-text>
</template>
</tablecmt>
</div>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->

Loading…
Cancel
Save