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', 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 {

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

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

Loading…
Cancel
Save