diff --git a/src/api/fileAuth/authenticate.js b/src/api/fileAuth/authenticate.js
index 79c6e0a1..f7d774e9 100644
--- a/src/api/fileAuth/authenticate.js
+++ b/src/api/fileAuth/authenticate.js
@@ -62,3 +62,12 @@ export function exportAuthenticateExcel(query) {
responseType: 'blob'
})
}
+
+// 新增鉴定申请
+export function createAuthenticateApply(data) {
+ return request({
+ url: '/archives/authenticate/create/apply',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/views/fileAuth/authRecord/index.vue b/src/views/fileAuth/authRecord/index.vue
index 3e7c4bee..a0b4560f 100644
--- a/src/views/fileAuth/authRecord/index.vue
+++ b/src/views/fileAuth/authRecord/index.vue
@@ -49,15 +49,7 @@
-
-
- {{ parseTime(scope.row.timeLimit) }}
-
+
@@ -66,7 +58,11 @@
{{ parseTime(scope.row.date) }}
-
+
+
+ {{ scope.row.result == 0 ? "销毁" : "延长期限" }}
+
+
diff --git a/src/views/fileAuth/authenticate/index.vue b/src/views/fileAuth/authenticate/index.vue
index d5169e2a..6b3d2150 100644
--- a/src/views/fileAuth/authenticate/index.vue
+++ b/src/views/fileAuth/authenticate/index.vue
@@ -78,6 +78,7 @@
plain
icon="el-icon-plus"
size="mini"
+ :disabled="multiple"
@click="handleAuth"
>鉴定
@@ -129,15 +130,80 @@
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 销毁
+ 延长期限
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+