|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+<template>
|
|
|
2
|
+ <div class="app-container">
|
|
|
3
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="70px">
|
|
|
4
|
+ <el-form-item label="批号:" prop="deptNameFirchar">
|
|
|
5
|
+ <el-input v-model="queryParams.deptNameFirchar" placeholder="请输入批号" clearable @keyup.enter.native="handleQuery" />
|
|
|
6
|
+ </el-form-item>
|
|
|
7
|
+ <el-form-item label="申请人:" prop="deptNameFirchar">
|
|
|
8
|
+ <el-input v-model="queryParams.deptNameFirchar" placeholder="请输入申请人" clearable @keyup.enter.native="handleQuery" />
|
|
|
9
|
+ </el-form-item>
|
|
|
10
|
+ <el-form-item>
|
|
|
11
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
12
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
13
|
+ </el-form-item>
|
|
|
14
|
+ </el-form>
|
|
|
15
|
+ <el-table v-loading="loading" style="width: 100%" :data="dataList">
|
|
|
16
|
+ <el-table-column label="序号" type="index" align="center">
|
|
|
17
|
+ <template slot-scope="scope">
|
|
|
18
|
+ <span>{{
|
|
|
19
|
+ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
|
|
|
20
|
+ }}</span>
|
|
|
21
|
+ </template>
|
|
|
22
|
+ </el-table-column>
|
|
|
23
|
+ <el-table-column label="批号" align="center" prop="ruleType" :show-overflow-tooltip="true" />
|
|
|
24
|
+ <el-table-column label="申请人" align="center" prop="prefixstr" :show-overflow-tooltip="true" />
|
|
|
25
|
+ <el-table-column label="仲裁方式" align="center" prop="prefixstr" :show-overflow-tooltip="true" />
|
|
|
26
|
+ <el-table-column label="仲裁员" align="center" prop="prefixstr" :show-overflow-tooltip="true" />
|
|
|
27
|
+ <el-table-column label="案件状态" align="center" prop="prefixstr">
|
|
|
28
|
+ <template slot-scope="scope">
|
|
|
29
|
+ <el-tag type="success">{{ scope.row.prefixstr }}</el-tag>
|
|
|
30
|
+ </template>
|
|
|
31
|
+ </el-table-column>
|
|
|
32
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="350">
|
|
|
33
|
+ <template slot-scope="scope">
|
|
|
34
|
+ <el-button size="mini" type="text" icon="el-icon-view" @click="viewingCasesBtn(scope.row)">查看案件列表</el-button>
|
|
|
35
|
+ <el-button size="mini" type="text" icon="el-icon-check" @click="confirmSubmission(scope.row)">提交</el-button>
|
|
|
36
|
+ <el-button size="mini" type="text" icon="el-icon-view" @click="filingFeview(scope.row)">立案审查</el-button>
|
|
|
37
|
+ <el-button size="mini" type="text" icon="el-icon-tickets" @click="batchPayments(scope.row)">缴费</el-button>
|
|
|
38
|
+ <el-button size="mini" type="text" @click="paymentConfir(scope.row)">缴费确认</el-button>
|
|
|
39
|
+ <el-button size="mini" type="text" @click="courtReviews(scope.row)">组庭审核</el-button>
|
|
|
40
|
+ <el-button size="mini" type="text">组庭确认</el-button>
|
|
|
41
|
+ <el-button size="mini" type="text">审核仲裁方式</el-button>
|
|
|
42
|
+ <el-button size="mini" type="text">书面审理</el-button>
|
|
|
43
|
+ <el-button size="mini" type="text">仲裁员审核仲裁文书</el-button>
|
|
|
44
|
+ <el-button size="mini" type="text">核验仲裁文书</el-button>
|
|
|
45
|
+ <el-button size="mini" type="text">部门长审核仲裁文书</el-button>
|
|
|
46
|
+ <el-button size="mini" type="text">签名</el-button>
|
|
|
47
|
+ <el-button size="mini" type="text">用印</el-button>
|
|
|
48
|
+ <el-button size="mini" type="text">生成裁决书</el-button>
|
|
|
49
|
+ <el-button size="mini" type="text">归档</el-button>
|
|
|
50
|
+ <el-button size="mini" type="text">仲裁文书送达</el-button>
|
|
|
51
|
+ </template>
|
|
|
52
|
+ </el-table-column>
|
|
|
53
|
+ </el-table>
|
|
|
54
|
+ <pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
|
55
|
+ @pagination="getList(queryParams)"
|
|
|
56
|
+ />
|
|
|
57
|
+ <!-- 缴费 -->
|
|
|
58
|
+ <batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay"></batchPayment>
|
|
|
59
|
+ <!-- 缴费确认 -->
|
|
|
60
|
+ <paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment"></paymentConfirmation>
|
|
|
61
|
+ <!-- 组庭审核 -->
|
|
|
62
|
+ <courtReview :caseVisableReview="caseVisableReview" @cancelCaseReview="cancelCaseReview"></courtReview>
|
|
|
63
|
+ <!-- 查看案件列表 -->
|
|
|
64
|
+ <viewingCases :caseVisableViewing="caseVisableViewing" @cancelCaseViewing="cancelCaseViewing"></viewingCases>
|
|
|
65
|
+ </div>
|
|
|
66
|
+</template>
|
|
|
67
|
+
|
|
|
68
|
+<script>
|
|
|
69
|
+import {caseNumRuleList,deleteCaseNumRule} from '@/api/officialSeal/officialSeal.js'
|
|
|
70
|
+import batchPayment from './components/batchPayment.vue'
|
|
|
71
|
+import paymentConfirmation from './components/paymentConfirmation.vue'
|
|
|
72
|
+import courtReview from './components/courtReview.vue'
|
|
|
73
|
+import viewingCases from './components/viewingCases.vue'
|
|
|
74
|
+export default {
|
|
|
75
|
+ components: {
|
|
|
76
|
+ batchPayment,
|
|
|
77
|
+ paymentConfirmation,
|
|
|
78
|
+ courtReview,
|
|
|
79
|
+ viewingCases
|
|
|
80
|
+ },
|
|
|
81
|
+ data() {
|
|
|
82
|
+ return {
|
|
|
83
|
+ queryParams: {
|
|
|
84
|
+ pageNum: 1,
|
|
|
85
|
+ pageSize: 10,
|
|
|
86
|
+ },
|
|
|
87
|
+ // 遮罩层
|
|
|
88
|
+ loading: false,
|
|
|
89
|
+ // 总条数
|
|
|
90
|
+ total: 0,
|
|
|
91
|
+ caseVisablePay: false,//批量缴费弹窗
|
|
|
92
|
+ caseVisablePayment:false,//批量缴费确认
|
|
|
93
|
+ caseVisableReview:false,//批量组庭审核
|
|
|
94
|
+ caseVisableViewing:false,//查看案件列表
|
|
|
95
|
+ dataList: [],
|
|
|
96
|
+ editData:{}
|
|
|
97
|
+ };
|
|
|
98
|
+ },
|
|
|
99
|
+ created() {
|
|
|
100
|
+ this.getList(this.queryParams)
|
|
|
101
|
+ },
|
|
|
102
|
+ methods: {
|
|
|
103
|
+ /** 搜索按钮操作 */
|
|
|
104
|
+ handleQuery() {
|
|
|
105
|
+ this.queryParams.pageNum = 1;
|
|
|
106
|
+ this.getList(this.queryParams);
|
|
|
107
|
+ },
|
|
|
108
|
+ /** 重置按钮操作 */
|
|
|
109
|
+ resetQuery() {
|
|
|
110
|
+ this.resetForm("queryForm");
|
|
|
111
|
+ this.handleQuery();
|
|
|
112
|
+ },
|
|
|
113
|
+ // 查询列表
|
|
|
114
|
+ getList(parm){
|
|
|
115
|
+ this.loading = true;
|
|
|
116
|
+ caseNumRuleList(parm).then(res=>{
|
|
|
117
|
+ this.dataList = res.rows;
|
|
|
118
|
+ this.total = res.total
|
|
|
119
|
+ this.loading = false;
|
|
|
120
|
+ })
|
|
|
121
|
+ },
|
|
|
122
|
+ // 批量提交
|
|
|
123
|
+ confirmSubmission(row){
|
|
|
124
|
+ this.$modal.confirm("您确定要批量提交吗?").then((res) => {
|
|
|
125
|
+ // this.deleteSealFn({ id: row.id })
|
|
|
126
|
+ }).catch(() =>{
|
|
|
127
|
+
|
|
|
128
|
+ })
|
|
|
129
|
+ },
|
|
|
130
|
+ // 批量提交接口
|
|
|
131
|
+ confirmSubmissionFn(data) {
|
|
|
132
|
+ // deleteCaseNumRule(data).then(res => {
|
|
|
133
|
+ // this.$modal.msgSuccess("删除成功!");
|
|
|
134
|
+ // this.getList(this.queryParams);
|
|
|
135
|
+ // })
|
|
|
136
|
+ },
|
|
|
137
|
+ // 批量立案审查
|
|
|
138
|
+ filingFeview(){
|
|
|
139
|
+ this.$modal.confirm("你确定要批量立案审查吗?").then((res) => {
|
|
|
140
|
+ // this.deleteSealFn({ id: row.id })
|
|
|
141
|
+ }).catch(() =>{
|
|
|
142
|
+
|
|
|
143
|
+ })
|
|
|
144
|
+ },
|
|
|
145
|
+ // 批量缴费
|
|
|
146
|
+ batchPayments(){
|
|
|
147
|
+ this.caseVisablePay = true
|
|
|
148
|
+ },
|
|
|
149
|
+ cancelCasePay(){
|
|
|
150
|
+ this.caseVisablePay = false
|
|
|
151
|
+ },
|
|
|
152
|
+ // 批量缴费确认
|
|
|
153
|
+ paymentConfir(){
|
|
|
154
|
+ this.caseVisablePayment = true
|
|
|
155
|
+ },
|
|
|
156
|
+ cancelCasePayment(){
|
|
|
157
|
+ this.caseVisablePayment = false
|
|
|
158
|
+ },
|
|
|
159
|
+ // 批量组庭审核
|
|
|
160
|
+ courtReviews(){
|
|
|
161
|
+ this.caseVisableReview = true
|
|
|
162
|
+ },
|
|
|
163
|
+ cancelCaseReview(){
|
|
|
164
|
+ this.caseVisableReview = false
|
|
|
165
|
+ },
|
|
|
166
|
+ // 查看案件列表
|
|
|
167
|
+ viewingCasesBtn(){
|
|
|
168
|
+ this.caseVisableViewing = true
|
|
|
169
|
+ },
|
|
|
170
|
+ cancelCaseViewing(){
|
|
|
171
|
+ this.caseVisableViewing = false
|
|
|
172
|
+ }
|
|
|
173
|
+ },
|
|
|
174
|
+};
|
|
|
175
|
+</script>
|
|
|
176
|
+
|
|
|
177
|
+<style lang="scss" scoped></style>
|