diff --git a/src/api/除名公告.js b/src/api/除名公告.js
index e61ce52..32585d0 100644
--- a/src/api/除名公告.js
+++ b/src/api/除名公告.js
@@ -72,3 +72,35 @@ export function expelledAnnouncementList(data) {
})
}
+// 启动除名修复业务
+export function expelledRepairStartBiz(data) {
+ return request({
+ url: '/expelled/repair/startBiz',
+ method: 'post',
+ data
+ })
+}
+
+// 除名修复业务审批流程
+export function expelledRepairNextBiz(data) {
+ const form = new FormData()
+ console.log(form)
+ console.log(data)
+ for (const key in data) {
+ form.append(key, data[key])
+ }
+ console.log(form)
+ return request({
+ url: '/expelled/repair/nextBiz',
+ method: 'post',
+ data: form
+ })
+}
+
+export function expelledRepairGetBiz(bizId) {
+ return request({
+ url: `/expelled/repair/getBiz?bizId=${bizId}`,
+ method: 'get'
+ })
+}
+
diff --git a/src/views/expelled/除名修复管理/index.vue b/src/views/expelled/除名修复管理/index.vue
index b57e06b..088dd0d 100644
--- a/src/views/expelled/除名修复管理/index.vue
+++ b/src/views/expelled/除名修复管理/index.vue
@@ -8,7 +8,7 @@
-
+
@@ -22,6 +22,7 @@
size="mini"
placeholder="请选择列入原因"
class="custom"
+ @change="loadPage"
>
-
+
-
+
@@ -52,6 +53,7 @@
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
+ @change="loadPage"
/>
@@ -59,8 +61,8 @@
- 查询
- 重置
+ 查询
+ 重置
@@ -82,18 +84,14 @@
@selection-change="handleSelectionChange"
>
-
+
+
+
+
+
+
- {{ scope.row.uniscid ||scope.row.regno }}
-
-
-
-
-
-
-
-
- 办理
+ 办理
@@ -102,7 +100,7 @@
- 第 {{ pageParam.curPage }} 页 /
- 共 {{ (pageParam.total !== 0 ? parseInt((pageParam.total + pageParam.pageSize - 1)/pageParam.pageSize) : 1) }} 页
+ 第 {{ pageParam.current }} 页 /
+ 共 {{ (pageParam.total !== 0 ? parseInt((pageParam.total + pageParam.size - 1)/pageParam.size) : 1) }} 页
@@ -126,24 +124,16 @@
>
{{ prompt }}
-
-
-
-
-
-
-