|
|
@@ -1,5 +1,11 @@
|
|
1
|
1
|
<template>
|
|
2
|
2
|
<div class="app-container">
|
|
|
3
|
+ <el-row :gutter="10" class="mb8">
|
|
|
4
|
+ <el-col :span="1.5">
|
|
|
5
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="addInstitution">新增部门</el-button>
|
|
|
6
|
+ <!-- v-hasPermi="['caseManagement:list:add']" -->
|
|
|
7
|
+ </el-col>
|
|
|
8
|
+ </el-row>
|
|
3
|
9
|
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
|
4
|
10
|
<el-table-column label="序号" type="index" align="center">
|
|
5
|
11
|
<template slot-scope="scope">
|
|
|
@@ -8,11 +14,10 @@
|
|
8
|
14
|
}}</span>
|
|
9
|
15
|
</template>
|
|
10
|
16
|
</el-table-column>
|
|
11
|
|
- <el-table-column label="仲裁机构名称" align="center" prop="deptName" :show-overflow-tooltip="true" />
|
|
12
|
|
- <el-table-column label="公章名称" align="center" prop="sealName" :show-overflow-tooltip="true" />
|
|
13
|
|
- <el-table-column label="经办人姓名" align="center" prop="nickName" :show-overflow-tooltip="true" />
|
|
14
|
|
- <el-table-column label="经办人手机号" align="center" prop="phonenumber" :show-overflow-tooltip="true" />
|
|
15
|
|
- <el-table-column label="认证时间" align="center" prop="updateTime" />
|
|
|
17
|
+ <el-table-column label="仲裁机构名称" align="center" prop="identifyName" :show-overflow-tooltip="true" />
|
|
|
18
|
+ <el-table-column label="经办人姓名" align="center" prop="operName" :show-overflow-tooltip="true" />
|
|
|
19
|
+ <el-table-column label="经办人手机号" align="center" prop="operPhone" :show-overflow-tooltip="true" />
|
|
|
20
|
+ <el-table-column label="认证时间" align="center" prop="identifyDate" />
|
|
16
|
21
|
<el-table-column label="认证状态" align="center" prop="identifyStatus" :show-overflow-tooltip="true" />
|
|
17
|
22
|
<el-table-column label="是否启用" align="center" prop="isUse"></el-table-column>
|
|
18
|
23
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
@@ -21,12 +26,21 @@
|
|
21
|
26
|
v-if="scope.row.identifyStatus == '未认证'">认证</el-button>
|
|
22
|
27
|
<el-button size="mini" @click="changeStatus(scope.row)" type="text" icon="el-icon-thumb"
|
|
23
|
28
|
v-if="scope.row.isUse == '未启用' && scope.row.identifyStatus == '已认证'">启用</el-button>
|
|
|
29
|
+ <el-button size="mini" @click="uploadSeal(scope.row)" type="text"
|
|
|
30
|
+ v-if="scope.row.identifyStatus == '已认证'" icon="el-icon-upload2">上传公章</el-button>
|
|
|
31
|
+ <el-button size="mini" @click="sealManage(scope.row)" type="text"
|
|
|
32
|
+ v-if="scope.row.identifyStatus == '已认证'" icon="el-icon-upload2">公章管理</el-button>
|
|
24
|
33
|
</template>
|
|
25
|
34
|
</el-table-column>
|
|
26
|
35
|
</el-table>
|
|
27
|
36
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
28
|
37
|
@pagination="getList(queryParams)" />
|
|
29
|
|
-
|
|
|
38
|
+ <addInstitution :operateVisable="operateVisable" @cancelFilingreview="cancelFilingreview" @getList="getList">
|
|
|
39
|
+ </addInstitution>
|
|
|
40
|
+ <uploadSeal :uploadVisable="uploadVisable" @cancelUpload="cancelUpload" :uploadData="uploadData" @getList="getList">
|
|
|
41
|
+ </uploadSeal>
|
|
|
42
|
+ <sealManage :sealVisable="sealVisable" @cancelSeal="cancelSeal" :sealData="sealData">
|
|
|
43
|
+ </sealManage>
|
|
30
|
44
|
</div>
|
|
31
|
45
|
</template>
|
|
32
|
46
|
|
|
|
@@ -34,21 +48,25 @@
|
|
34
|
48
|
import {
|
|
35
|
49
|
deptIdentifyList,
|
|
36
|
50
|
enableDept,
|
|
37
|
|
- selectDeptIndefiUrl
|
|
|
51
|
+ selectDeptIndefiUrl,
|
|
38
|
52
|
} from "@/api/officialSeal/officialSeal.js";
|
|
39
|
53
|
|
|
40
|
|
-import { getDicts } from '@/api/system/dict/data.js'
|
|
|
54
|
+import addInstitution from "./components/addInstitution";
|
|
|
55
|
+import uploadSeal from "./components/uploadSeal";
|
|
|
56
|
+import sealManage from "./components/sealManage";
|
|
41
|
57
|
export default {
|
|
42
|
58
|
name: "paymentList",
|
|
43
|
|
- dicts: ["case_status"],
|
|
44
|
|
- components: {},
|
|
|
59
|
+ components: {
|
|
|
60
|
+ addInstitution,
|
|
|
61
|
+ uploadSeal,
|
|
|
62
|
+ sealManage
|
|
|
63
|
+ },
|
|
45
|
64
|
data() {
|
|
46
|
65
|
return {
|
|
47
|
66
|
queryParams: {
|
|
48
|
67
|
pageNum: 1,
|
|
49
|
68
|
pageSize: 10,
|
|
50
|
69
|
},
|
|
51
|
|
- caseStatus: [],
|
|
52
|
70
|
// 遮罩层
|
|
53
|
71
|
loading: false,
|
|
54
|
72
|
// 总条数
|
|
|
@@ -57,16 +75,41 @@ export default {
|
|
57
|
75
|
form: {},
|
|
58
|
76
|
// 校验表单
|
|
59
|
77
|
rules: {},
|
|
60
|
|
- dataList: [],
|
|
|
78
|
+ dataList: [1],
|
|
|
79
|
+ operateVisable: false,//新增弹窗
|
|
|
80
|
+ uploadVisable: false,//上传弹窗
|
|
|
81
|
+ sealVisable:false,//公章列表弹窗
|
|
|
82
|
+ uploadData: {},
|
|
|
83
|
+ sealData:{}
|
|
61
|
84
|
};
|
|
62
|
85
|
},
|
|
63
|
86
|
created() {
|
|
64
|
|
- getDicts("case_status").then(res => {
|
|
65
|
|
- this.caseStatus = res.data;
|
|
66
|
|
- this.getList(this.queryParams);
|
|
67
|
|
- })
|
|
|
87
|
+ this.getList(this.queryParams)
|
|
68
|
88
|
},
|
|
69
|
89
|
methods: {
|
|
|
90
|
+ // 公章管理
|
|
|
91
|
+ sealManage(row){
|
|
|
92
|
+ this.sealVisable = true;
|
|
|
93
|
+ this.sealData = row;
|
|
|
94
|
+ },
|
|
|
95
|
+ cancelSeal(){
|
|
|
96
|
+ this.sealVisable = false;
|
|
|
97
|
+ },
|
|
|
98
|
+ // 上传公章
|
|
|
99
|
+ uploadSeal(row) {
|
|
|
100
|
+ this.uploadVisable = true;
|
|
|
101
|
+ this.uploadData = row;
|
|
|
102
|
+ },
|
|
|
103
|
+ cancelFilingreview() {
|
|
|
104
|
+ this.operateVisable = false;
|
|
|
105
|
+ },
|
|
|
106
|
+ cancelUpload() {
|
|
|
107
|
+ this.uploadVisable = false;
|
|
|
108
|
+ },
|
|
|
109
|
+ // 新增部门
|
|
|
110
|
+ addInstitution() {
|
|
|
111
|
+ this.operateVisable = true;
|
|
|
112
|
+ },
|
|
70
|
113
|
// 启用认证按钮
|
|
71
|
114
|
changeStatus(row) {
|
|
72
|
115
|
this.$modal.confirm('是否进行启用?')
|