diff --git a/src/views/fileAuth/authenticate/index.vue b/src/views/fileAuth/authenticate/index.vue index de4c776f..1311e6b1 100644 --- a/src/views/fileAuth/authenticate/index.vue +++ b/src/views/fileAuth/authenticate/index.vue @@ -187,7 +187,7 @@ export default { queryParams: { pageNo: 1, pageSize: 10, - identifyStatus: null, + authenticate: "List", fileType: null, }, // 表单参数 @@ -202,19 +202,19 @@ export default { userName: null, options: [ { - value: 10, + value: "10", label: "10年", }, { - value: 20, + value: "20", label: "20年", }, { - value: 30, + value: "30", label: "30年", }, { - value: null, + value: "永久保存", label: "永久保存", }, ], @@ -259,30 +259,6 @@ export default { }).then((res) => { this.fileTypeOptions = res.data.list || []; }); - // 获取全宗号 - listData({ - pageNo: 1, - pageSize: 100, - dictType: "archives_case_num", - }).then((res) => { - this.caseNumOptions = res.data.list || []; - }); - // 获取目录号 - listData({ - pageNo: 1, - pageSize: 100, - dictType: "archives_catalog_num", - }).then((res) => { - this.catalogNumOptions = res.data.list || []; - }); - // 获取归档状态 - listData({ - pageNo: 1, - pageSize: 100, - dictType: "archives_file_status", - }).then((res) => { - this.fileStatusOptions = res.data.list || []; - }); }, //获取用户 getUserList() { @@ -339,7 +315,7 @@ export default { }); console.log(this.selectList); createAuthenticateApply(this.selectList).then((response) => { - this.$modal.msgSuccess("修改成功"); + this.$modal.msgSuccess("鉴定完成"); this.open = false; this.getList(); });