|
|
|
@ -896,7 +896,7 @@ |
|
|
|
<el-button type="primary" icon="el-icon-upload" style="margin-top: -5px" @click="addProjectDocumentTypeFlag = true">新增</el-button> |
|
|
|
<el-table |
|
|
|
height="200" |
|
|
|
:data="projectDocumentManifestDefinitionList" |
|
|
|
:data="projectOtherDocumentList" |
|
|
|
border |
|
|
|
style="width: 100%;"> |
|
|
|
<el-table-column |
|
|
|
@ -982,7 +982,7 @@ |
|
|
|
</el-footer> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<el-dialog title="选择生产确认文档" :visible.sync="projectProductionValidationDocumentVisible" width="763px" style="margin-top: 10vh" :close-on-click-modal="false"> |
|
|
|
<el-dialog title="选择生产确认文档" :visible.sync="projectProductionValidationDocumentVisible" width="763px" style="margin-top: -5vh" :close-on-click-modal="false"> |
|
|
|
<el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px;margin-top: -5px;"> |
|
|
|
<el-form-item label="项目编码" prop="projectId" class="red-label"> |
|
|
|
<el-input v-model="modalData.projectId" readonly style="width: 110px;" class="red-text"></el-input> |
|
|
|
@ -1026,7 +1026,7 @@ |
|
|
|
<el-tab-pane label="文档选择" name="selectDocument" style="width: 104%"> |
|
|
|
<el-table |
|
|
|
v-model="selectedDocumentItems" |
|
|
|
:height="height + 105" |
|
|
|
:height="height + 230" |
|
|
|
:data="projectAllDocumentList" |
|
|
|
border |
|
|
|
style="width: 100%;margin-top: -13px;margin-left: -14px !important; margin-right: 0 !important;" |
|
|
|
@ -1247,7 +1247,6 @@ import UploadFileList1 from "../common/uploadFileList1.vue"; |
|
|
|
import { |
|
|
|
deleteDocumentType, |
|
|
|
editProjectDocument, |
|
|
|
getDocumentList, |
|
|
|
getExtraDocumentList, |
|
|
|
projectDocumentSave, |
|
|
|
proofingDocumentNEW, |
|
|
|
@ -1337,7 +1336,6 @@ import { |
|
|
|
businessDataList6: [], |
|
|
|
dataList: [], |
|
|
|
dataListSelections: [], |
|
|
|
projectDocumentManifestDefinitionList: [], |
|
|
|
//用于储存选中的行数据 |
|
|
|
selectedDocumentItems: [], |
|
|
|
// ======== 复选数据集 ======== |
|
|
|
@ -3540,12 +3538,11 @@ import { |
|
|
|
page: 1 |
|
|
|
} |
|
|
|
this.getProjectOtherDocument() |
|
|
|
this.getProjectDocumentList() |
|
|
|
|
|
|
|
this.projectDocumentListVisible = true |
|
|
|
}, |
|
|
|
projectDocumentListVisibleFalse() { |
|
|
|
this.projectDocumentListVisible = false |
|
|
|
this.projectDocumentManifestDefinitionList = [] |
|
|
|
}, |
|
|
|
deleteProjectDocumentType(row) { |
|
|
|
this.$confirm('是否删除该文档清单?', '提示', { |
|
|
|
@ -3559,7 +3556,6 @@ import { |
|
|
|
message: '删除成功', |
|
|
|
type: 'success' |
|
|
|
}) |
|
|
|
this.getProjectDocumentList() |
|
|
|
this.getProjectOtherDocument() |
|
|
|
} else { |
|
|
|
this.$message({ |
|
|
|
@ -3634,7 +3630,6 @@ import { |
|
|
|
this.addProjectDocumentTypeFlag = false |
|
|
|
//刷新表格 |
|
|
|
this.getProjectOtherDocument() |
|
|
|
this.getProjectDocumentList() |
|
|
|
this.refreshCurrentTabTable() |
|
|
|
} else { |
|
|
|
this.$message({ |
|
|
|
@ -3645,15 +3640,6 @@ import { |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
getProjectDocumentList() { |
|
|
|
getDocumentList(this.modalData).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.projectDocumentManifestDefinitionList = data.page.list |
|
|
|
} else { |
|
|
|
this.projectDocumentManifestDefinitionList = [] |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
searchProjectAllDocumentList () { |
|
|
|
let inData = { |
|
|
|
site: this.$store.state.user.site, |
|
|
|
|