diff --git a/src/views/archives/record/index.vue b/src/views/archives/record/index.vue
index 395fc1c3..fb598d72 100644
--- a/src/views/archives/record/index.vue
+++ b/src/views/archives/record/index.vue
@@ -1106,7 +1106,6 @@ export default {
catalogNumOptions: [], //目录号
caseNumOptions: [], //全宗号
organizationList: [],
- fileTypeOptions: [], //档案类型
};
},
created() {
diff --git a/src/views/borrow/apply/index.vue b/src/views/borrow/apply/index.vue
index 4aa138a9..5f9dd072 100644
--- a/src/views/borrow/apply/index.vue
+++ b/src/views/borrow/apply/index.vue
@@ -286,18 +286,38 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -374,6 +394,7 @@ export default {
remark: null,
createTime: [],
},
+ optType: null,
// 表单参数
form: {},
// 表单校验
@@ -383,6 +404,7 @@ export default {
mediaOptions: [],
userOptions: [], //用户数据
filesNumOptions: [], //借阅档案数据
+ fileTypeOptions: [], //档案类型
};
},
created() {
@@ -434,6 +456,14 @@ export default {
}).then((res) => {
this.mediaOptions = res.data.list || [];
});
+ // 获取档案类型
+ listData({
+ pageNo: 1,
+ pageSize: 100,
+ dictType: "archives_file_type",
+ }).then((res) => {
+ this.fileTypeOptions = res.data.list || [];
+ });
},
//获取用户
getUserList() {
@@ -480,12 +510,14 @@ export default {
/** 新增按钮操作 */
handleAdd() {
this.reset();
+ this.optType = "add";
this.open = true;
this.title = "添加档案借阅申请";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
+ this.optType = "edit";
const id = row.id;
getBorrowApply(id).then((response) => {
this.form = response.data;
diff --git a/src/views/fileAuth/authenticate/index.vue b/src/views/fileAuth/authenticate/index.vue
index dbdccbaa..de4c776f 100644
--- a/src/views/fileAuth/authenticate/index.vue
+++ b/src/views/fileAuth/authenticate/index.vue
@@ -159,10 +159,7 @@