|
|
@@ -104,7 +104,9 @@ import {
|
|
104
|
104
|
caseApplicationDetail,
|
|
105
|
105
|
adjudicationLogistics,
|
|
106
|
106
|
adjudicationCaseFile,
|
|
107
|
|
- adjudicationStamp
|
|
|
107
|
+ adjudicationStamp,
|
|
|
108
|
+ selectSignUrl,
|
|
|
109
|
+ selectSealUrl
|
|
108
|
110
|
} from "@/api/awardManagement/awardManagement";
|
|
109
|
111
|
import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
|
|
110
|
112
|
import mailawardDialog from './components/MailawardDialog.vue';
|
|
|
@@ -155,7 +157,7 @@ export default {
|
|
155
|
157
|
this.getList(this.queryParams);
|
|
156
|
158
|
},
|
|
157
|
159
|
methods: {
|
|
158
|
|
- updataList(){
|
|
|
160
|
+ updataList() {
|
|
159
|
161
|
this.getList(this.queryParams);
|
|
160
|
162
|
},
|
|
161
|
163
|
/** 搜索按钮操作 */
|
|
|
@@ -179,20 +181,27 @@ export default {
|
|
179
|
181
|
},
|
|
180
|
182
|
// model框显示
|
|
181
|
183
|
showModel(row, type) {
|
|
182
|
|
- this.getDetail({ id: row.id });
|
|
183
|
|
- this.openDialog = true;
|
|
|
184
|
+
|
|
184
|
185
|
switch (type) {
|
|
185
|
186
|
case 1:
|
|
|
187
|
+ this.getDetail({ id: row.id });
|
|
|
188
|
+ this.openDialog = true;
|
|
186
|
189
|
this.title = "核验裁决书";
|
|
187
|
190
|
this.flag = 1;
|
|
188
|
191
|
break;
|
|
189
|
192
|
case 2:
|
|
|
193
|
+ this.getDetail({ id: row.id });
|
|
|
194
|
+ this.openDialog = true;
|
|
190
|
195
|
this.title = "审核裁决书";
|
|
191
|
196
|
this.flag = 2;
|
|
192
|
197
|
break;
|
|
193
|
198
|
case 3:
|
|
194
|
|
- this.title = "裁决书签名";
|
|
195
|
|
- this.flag = 3;
|
|
|
199
|
+ // this.title = "裁决书签名";
|
|
|
200
|
+ // this.flag = 3;
|
|
|
201
|
+ selectSignUrl({ id: row.id }).then(res => {
|
|
|
202
|
+ let url = res.data.signUrl;
|
|
|
203
|
+ window.open(url)
|
|
|
204
|
+ })
|
|
196
|
205
|
break;
|
|
197
|
206
|
default:
|
|
198
|
207
|
break;
|
|
|
@@ -206,20 +215,24 @@ export default {
|
|
206
|
215
|
showaffixModel(row) {
|
|
207
|
216
|
this.$modal.confirm('是否进行用印申请?')
|
|
208
|
217
|
.then(function () {
|
|
209
|
|
- return adjudicationStamp({id:row.id});
|
|
210
|
|
- })
|
|
211
|
|
- .then(() => {
|
|
212
|
|
- this.getList(this.queryParams);
|
|
213
|
|
- this.$modal.msgSuccess("用印成功!");
|
|
214
|
|
- })
|
|
215
|
|
- .catch(function () {
|
|
216
|
|
- });
|
|
|
218
|
+ // return adjudicationStamp({ id: row.id });
|
|
|
219
|
+ selectSealUrl({ id: row.id }).then(res => {
|
|
|
220
|
+ let url = res.data.sealUrl;
|
|
|
221
|
+ window.open(url)
|
|
|
222
|
+ })
|
|
|
223
|
+ })
|
|
|
224
|
+ // .then(() => {
|
|
|
225
|
+ // this.getList(this.queryParams);
|
|
|
226
|
+ // this.$modal.msgSuccess("用印成功!");
|
|
|
227
|
+ // })
|
|
|
228
|
+ .catch(function () {
|
|
|
229
|
+ });
|
|
217
|
230
|
},
|
|
218
|
231
|
// 快递信息弹框
|
|
219
|
232
|
showDeliveryModel(row) {
|
|
220
|
|
- console.log(row,'快递');
|
|
|
233
|
+ console.log(row, '快递');
|
|
221
|
234
|
this.showDelivery = true
|
|
222
|
|
- this.getadjudicationLogistics({id:row.id})
|
|
|
235
|
+ this.getadjudicationLogistics({ id: row.id })
|
|
223
|
236
|
},
|
|
224
|
237
|
closeDeliveryModel() {
|
|
225
|
238
|
this.showDelivery = false
|
|
|
@@ -236,12 +249,12 @@ export default {
|
|
236
|
249
|
showCasefilingModel(row) {
|
|
237
|
250
|
this.$modal.confirm('是否确认立即进行案件扫描?').then(
|
|
238
|
251
|
function () {
|
|
239
|
|
- return adjudicationCaseFile({id:row.id})
|
|
|
252
|
+ return adjudicationCaseFile({ id: row.id })
|
|
240
|
253
|
}
|
|
241
|
254
|
).then(() => {
|
|
242
|
255
|
this.getList(this.queryParams);
|
|
243
|
256
|
this.$modal.msgSuccess("归档成功!");
|
|
244
|
|
- }).catch(function () {})
|
|
|
257
|
+ }).catch(function () { })
|
|
245
|
258
|
},
|
|
246
|
259
|
// 送达裁决书弹框
|
|
247
|
260
|
showMailaward(row) {
|