|
|
@ -296,7 +296,7 @@ |
|
|
|
<!-- 表格 --> |
|
|
|
<!-- 表格 --> |
|
|
|
<tablecmt |
|
|
|
<tablecmt |
|
|
|
class="tableNode mt10" |
|
|
|
class="tableNode mt10" |
|
|
|
:columnList="details.columnNewList" |
|
|
|
:columnList="details.columnOldList" |
|
|
|
:tableData="details.addInfo.oldData" |
|
|
|
:tableData="details.addInfo.oldData" |
|
|
|
:loading="details.loadingObj.oldListLoading" |
|
|
|
:loading="details.loadingObj.oldListLoading" |
|
|
|
@inputTxt="inputsc" |
|
|
|
@inputTxt="inputsc" |
|
|
@ -356,13 +356,18 @@ |
|
|
|
<!-- 表格 --> |
|
|
|
<!-- 表格 --> |
|
|
|
<tablecmt |
|
|
|
<tablecmt |
|
|
|
class="tableNode mt10" |
|
|
|
class="tableNode mt10" |
|
|
|
:columnList="details.newColumnNewList" |
|
|
|
:columnList="details.columnNewList" |
|
|
|
:tableData="details.addInfo.newRenderData" |
|
|
|
:tableData="details.addInfo.newRenderData" |
|
|
|
:loading="details.loadingObj.newlistLoading" |
|
|
|
:loading="details.loadingObj.newlistLoading" |
|
|
|
@inputTxt="newInputsc" |
|
|
|
@inputTxt="newInputsc" |
|
|
|
@timeCheck="timesc" |
|
|
|
@timeCheck="timesc" |
|
|
|
@selectCheck="selectsc" |
|
|
|
@selectCheck="selectsc" |
|
|
|
@selection="list => selectionChange(list, 2)" |
|
|
|
@selection="list => selectionChange(list, 2)" |
|
|
|
|
|
|
|
:isselectfun=" |
|
|
|
|
|
|
|
row => { |
|
|
|
|
|
|
|
return !Boolean(row.realNum); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
" |
|
|
|
> |
|
|
|
> |
|
|
|
<template #default="{ scope }"> |
|
|
|
<template #default="{ scope }"> |
|
|
|
<!-- <template v-if="scope.column.label === '计划件数'"> |
|
|
|
<!-- <template v-if="scope.column.label === '计划件数'"> |
|
|
@ -407,8 +412,8 @@ |
|
|
|
<edittablehead |
|
|
|
<edittablehead |
|
|
|
@closce="showdrawer" |
|
|
|
@closce="showdrawer" |
|
|
|
:drawerShow="details.drawerShow" |
|
|
|
:drawerShow="details.drawerShow" |
|
|
|
:columnList="details.columnNewList" |
|
|
|
:columnList="details.columnOldList" |
|
|
|
v-model="details.columnNewList" |
|
|
|
v-model="details.columnOldList" |
|
|
|
></edittablehead> |
|
|
|
></edittablehead> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
@ -435,7 +440,10 @@ import { |
|
|
|
postFindDriverListByName, |
|
|
|
postFindDriverListByName, |
|
|
|
} from '@/api/distribution/AddVehicleStowage'; |
|
|
|
} from '@/api/distribution/AddVehicleStowage'; |
|
|
|
// 引入表格配置文件 |
|
|
|
// 引入表格配置文件 |
|
|
|
import { columnNewList } from '@/option/distribution/arteryDistrilbutionBillLadingList'; |
|
|
|
import { |
|
|
|
|
|
|
|
columnNewList, |
|
|
|
|
|
|
|
columnOldList, |
|
|
|
|
|
|
|
} from '@/option/distribution/arteryDistrilbutionBillLadingList'; |
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
@ -470,8 +478,8 @@ const newFormNode = ref<FormInstance>(); |
|
|
|
const selectNodeRef = ref(); |
|
|
|
const selectNodeRef = ref(); |
|
|
|
|
|
|
|
|
|
|
|
const details = reactive({ |
|
|
|
const details = reactive({ |
|
|
|
|
|
|
|
columnOldList: deepClone(columnOldList), |
|
|
|
columnNewList: deepClone(columnNewList), |
|
|
|
columnNewList: deepClone(columnNewList), |
|
|
|
newColumnNewList: deepClone(columnNewList), |
|
|
|
|
|
|
|
/** 列表配置抽屉 */ |
|
|
|
/** 列表配置抽屉 */ |
|
|
|
drawerShow: false, |
|
|
|
drawerShow: false, |
|
|
|
// 弹框标题 |
|
|
|
// 弹框标题 |
|
|
|