|
|
|
@ -569,8 +569,10 @@
|
|
|
|
|
<div class="footer"></div> |
|
|
|
|
<!-- 底部提交 --> |
|
|
|
|
<div class="button-container"> |
|
|
|
|
<!-- 关闭 --> |
|
|
|
|
<el-button class="submitButton" icon="CircleClose" @click="back"> 关闭 </el-button> |
|
|
|
|
|
|
|
|
|
<!-- 提交 --> |
|
|
|
|
<el-button |
|
|
|
|
class="submitButton" |
|
|
|
|
icon="Promotion" |
|
|
|
@ -580,6 +582,11 @@
|
|
|
|
|
> |
|
|
|
|
提交 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 处理未挂载在目的仓的数据 --> |
|
|
|
|
<el-button icon="Refresh" type="primary" @click="handleShowProblemData"> |
|
|
|
|
挂载目的仓 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</basic-container> |
|
|
|
@ -597,9 +604,9 @@
|
|
|
|
|
class="columnList" |
|
|
|
|
ref="newColumnListNode" |
|
|
|
|
:columnList="details.newColumnList" |
|
|
|
|
:tableData="details.renderData" |
|
|
|
|
@inputTxt="(value, row) => inputsc(value, row, index)" |
|
|
|
|
@selection="list => selectionChange(list, index)" |
|
|
|
|
:tableData="details.problemData" |
|
|
|
|
@inputTxt="(value, row) => inputsc(value, row)" |
|
|
|
|
@selection="list => selectionChange(list)" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '计划数'"> |
|
|
|
@ -896,6 +903,8 @@ const details = reactive<any>({
|
|
|
|
|
remveNodeList: [], |
|
|
|
|
/** 拷贝的编辑信息, 提交时根据数据对比设置为新增、删除、编辑 */ |
|
|
|
|
nodeCloneInfoData: [], |
|
|
|
|
/** 挂载在配载任务中, 但未挂载目的仓的数据 */ |
|
|
|
|
problemData: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const btnLoadingObj = reactive({ |
|
|
|
@ -1709,6 +1718,9 @@ const handleSubmitEdit = async () => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 显示未挂载目的仓的数据 */ |
|
|
|
|
const handleShowProblemData = () => {}; |
|
|
|
|
|
|
|
|
|
/** 关闭页面 */ |
|
|
|
|
const back = () => { |
|
|
|
|
$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|