|
|
@@ -33,7 +33,12 @@
|
|
33
|
33
|
<el-table-column label="案件标的" align="center" prop="caseSubjectAmount" />
|
|
34
|
34
|
<el-table-column label="开庭日期" align="center" prop="hearDate" :show-overflow-tooltip="true" />
|
|
35
|
35
|
<!-- 缴费人 -->
|
|
36
|
|
- <el-table-column label="案件状态" align="center" prop="caseStatusName" />
|
|
|
36
|
+ <!-- <el-table-column label="案件状态" align="center" prop="caseStatusName" /> -->
|
|
|
37
|
+ <el-table-column label="案件状态" align="center" prop="caseStatusName">
|
|
|
38
|
+ <template slot-scope="scope">
|
|
|
39
|
+ <el-tag type="success">{{ scope.row.caseStatusName }}</el-tag>
|
|
|
40
|
+ </template>
|
|
|
41
|
+ </el-table-column>
|
|
37
|
42
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
38
|
43
|
<template slot-scope="scope">
|
|
39
|
44
|
<!-- <el-button size="mini" type="text" icon="el-icon-reading" v-if="scope.row.caseStatus == 10" @click="showModel(scope.row, 0)"
|
|
|
@@ -46,10 +51,12 @@
|
|
46
|
51
|
v-hasPermi="['monitor:online:forceLogout']">签名</el-button>
|
|
47
|
52
|
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 14" @click="showaffixModel(scope.row, 4)"
|
|
48
|
53
|
v-hasPermi="['monitor:online:forceLogout']">用印申请</el-button>
|
|
|
54
|
+ <el-button size="mini" type="text" icon="el-icon-truck" @click="showDeliveryModel(scope.row, 4)"
|
|
|
55
|
+ v-hasPermi="['monitor:online:forceLogout']">快递信息</el-button>
|
|
49
|
56
|
<!-- v-if="scope.row.caseStatus == 15" 送达裁决书 -->
|
|
50
|
57
|
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 15" @click="showMailaward(scope.row)"
|
|
51
|
58
|
v-hasPermi="['monitor:online:forceLogout']">送达裁决书</el-button>
|
|
52
|
|
- <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 16" @click="showModel(scope.row, 6)"
|
|
|
59
|
+ <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 16" @click="showCasefilingModel(scope.row, 6)"
|
|
53
|
60
|
v-hasPermi="['monitor:online:forceLogout']">案件归档</el-button>
|
|
54
|
61
|
<!-- <el-button size="mini" type="text" icon="el-icon-reading"
|
|
55
|
62
|
@click="showModel(scope.row, 0)" v-hasPermi="['monitor:online:forceLogout']">生成裁决书</el-button>
|
|
|
@@ -80,6 +87,11 @@
|
|
80
|
87
|
@updataList="updataList"
|
|
81
|
88
|
:mailawardata="mailawardata"
|
|
82
|
89
|
></mailawardDialog>
|
|
|
90
|
+ <!-- 快递信息页面 -->
|
|
|
91
|
+ <expressDeliveryDialog
|
|
|
92
|
+ :showDelivery="showDelivery"
|
|
|
93
|
+ @closeDeliveryModel="closeDeliveryModel"
|
|
|
94
|
+ ></expressDeliveryDialog>
|
|
83
|
95
|
</div>
|
|
84
|
96
|
</template>
|
|
85
|
97
|
|
|
|
@@ -90,11 +102,12 @@ import {
|
|
90
|
102
|
} from "@/api/awardManagement/awardManagement";
|
|
91
|
103
|
import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
|
|
92
|
104
|
import mailawardDialog from './components/MailawardDialog.vue';
|
|
|
105
|
+import expressDeliveryDialog from './components/expressDeliveryDialog.vue';
|
|
93
|
106
|
|
|
94
|
107
|
export default {
|
|
95
|
108
|
name: "paymentList",
|
|
96
|
109
|
dicts: ["case_status"],
|
|
97
|
|
- components: { paymentdetailsDialog, mailawardDialog },
|
|
|
110
|
+ components: { paymentdetailsDialog, mailawardDialog, expressDeliveryDialog },
|
|
98
|
111
|
data() {
|
|
99
|
112
|
return {
|
|
100
|
113
|
queryParams: {
|
|
|
@@ -124,6 +137,7 @@ export default {
|
|
124
|
137
|
flag: null,
|
|
125
|
138
|
openMailawardDialog: false, //送达裁决书页面
|
|
126
|
139
|
mailawardata: {}, //裁决书送达界面数据
|
|
|
140
|
+ showDelivery: false, //快递信息弹框
|
|
127
|
141
|
};
|
|
128
|
142
|
},
|
|
129
|
143
|
created() {
|
|
|
@@ -193,6 +207,24 @@ export default {
|
|
193
|
207
|
// row.status = row.status === "0" ? "1" : "0";
|
|
194
|
208
|
});
|
|
195
|
209
|
},
|
|
|
210
|
+ // 快递信息弹框
|
|
|
211
|
+ showDeliveryModel(row) {
|
|
|
212
|
+ console.log(row,'快递');
|
|
|
213
|
+ this.showDelivery = true
|
|
|
214
|
+ },
|
|
|
215
|
+ closeDeliveryModel() {
|
|
|
216
|
+ this.showDelivery = false
|
|
|
217
|
+ },
|
|
|
218
|
+ // 案件归档
|
|
|
219
|
+ showCasefilingModel() {
|
|
|
220
|
+ this.$modal.confirm('是否确认立即进行案件扫描?').then(
|
|
|
221
|
+ function () {}
|
|
|
222
|
+ ).then(() => {
|
|
|
223
|
+
|
|
|
224
|
+ }).catch(function () {
|
|
|
225
|
+
|
|
|
226
|
+ })
|
|
|
227
|
+ },
|
|
196
|
228
|
// 送达裁决书弹框
|
|
197
|
229
|
showMailaward(row) {
|
|
198
|
230
|
this.mailawardata = row;
|