diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderDistributesBaseInfo.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderDistributesBaseInfo.vue
index 7dc887d..cd1d184 100644
--- a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderDistributesBaseInfo.vue
+++ b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderDistributesBaseInfo.vue
@@ -25,13 +25,8 @@
-
-
-
+
@@ -57,17 +52,13 @@
-
+
{{ $t('import') }}
-
-
- {{ $t('templateDownload') }}
-
{{ $t('export') }}
@@ -254,7 +245,6 @@ export default {
}
]
},
- clickNextAfter: false,
columns: [
{
title: this.$t('serialNumber'),
@@ -516,7 +506,6 @@ export default {
},
personFormInline: {},
url: {
- downTemplateUrl: '',
importExcelUrl: ''
},
dataSourceCopy: [] // 列表数组备份,防止切换排查任务是否下发后,填的数据带到新数组里
@@ -574,11 +563,11 @@ export default {
},
// 排查任务是否下发改变
distributeFlagChange (value) {
- this.dataSource = JSON.parse(JSON.stringify(this.dataSourceCopy))
- },
- // 下一步
- handleNext () {
- this.clickNextAfter = true
+ if (value === YesOrNoEnum.YES.value) {
+ this.dataSource = JSON.parse(JSON.stringify(this.dataSourceCopy))
+ } else {
+ this.dataSourceEvaluate = JSON.parse(JSON.stringify(this.dataSourceCopy))
+ }
},
// 表格选中
onSelectChange (selectedRowKeys, selectionRows) {
@@ -702,13 +691,6 @@ export default {
}
}
},
- // 下载导入模板
- downTemplate (fileName) {
- if (!fileName || typeof fileName !== 'string') {
- fileName = '模板文件'
- }
- downloadFile(this.url.downTemplateUrl, fileName + '.xls')
- },
handleExportXls (fileName, fileSuffix = '.xls') {
if (!fileName || typeof fileName !== 'string') {
fileName = '导出文件'
@@ -762,8 +744,4 @@ export default {
.form-add {
margin-top: 20px;
}
-
-.center-operate-box {
- float: right;
-}