|
|
@@ -51,10 +51,11 @@
|
|
51
|
51
|
v-hasPermi="['monitor:online:forceLogout']">签名</el-button>
|
|
52
|
52
|
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 14" @click="showaffixModel(scope.row, 4)"
|
|
53
|
53
|
v-hasPermi="['monitor:online:forceLogout']">用印申请</el-button>
|
|
54
|
|
- <el-button size="mini" type="text" icon="el-icon-truck" @click="showDeliveryModel(scope.row, 4)"
|
|
|
54
|
+ <!-- v-if="scope.row.caseStatus > 15" -->
|
|
|
55
|
+ <el-button size="mini" type="text" icon="el-icon-truck" v-if="scope.row.caseStatus > 15" @click="showDeliveryModel(scope.row, 4)"
|
|
55
|
56
|
v-hasPermi="['monitor:online:forceLogout']">快递信息</el-button>
|
|
56
|
57
|
<!-- v-if="scope.row.caseStatus == 15" 送达裁决书 -->
|
|
57
|
|
- <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 15" @click="showMailaward(scope.row)"
|
|
|
58
|
+ <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 15" @click="showMailaward(scope.row)"
|
|
58
|
59
|
v-hasPermi="['monitor:online:forceLogout']">送达裁决书</el-button>
|
|
59
|
60
|
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseStatus == 16" @click="showCasefilingModel(scope.row, 6)"
|
|
60
|
61
|
v-hasPermi="['monitor:online:forceLogout']">案件归档</el-button>
|
|
|
@@ -90,7 +91,9 @@
|
|
90
|
91
|
<!-- 快递信息页面 -->
|
|
91
|
92
|
<expressDeliveryDialog
|
|
92
|
93
|
:showDelivery="showDelivery"
|
|
|
94
|
+ :deliveryDataArr="deliveryDataArr"
|
|
93
|
95
|
@closeDeliveryModel="closeDeliveryModel"
|
|
|
96
|
+ :flagLoading="flagLoading"
|
|
94
|
97
|
></expressDeliveryDialog>
|
|
95
|
98
|
</div>
|
|
96
|
99
|
</template>
|
|
|
@@ -99,6 +102,9 @@
|
|
99
|
102
|
import {
|
|
100
|
103
|
caseApplicationList,
|
|
101
|
104
|
caseApplicationDetail,
|
|
|
105
|
+ adjudicationLogistics,
|
|
|
106
|
+ adjudicationCaseFile,
|
|
|
107
|
+ adjudicationStamp
|
|
102
|
108
|
} from "@/api/awardManagement/awardManagement";
|
|
103
|
109
|
import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
|
|
104
|
110
|
import mailawardDialog from './components/MailawardDialog.vue';
|
|
|
@@ -138,6 +144,8 @@ export default {
|
|
138
|
144
|
openMailawardDialog: false, //送达裁决书页面
|
|
139
|
145
|
mailawardata: {}, //裁决书送达界面数据
|
|
140
|
146
|
showDelivery: false, //快递信息弹框
|
|
|
147
|
+ deliveryDataArr: [],//快递信息数据
|
|
|
148
|
+ flagLoading: true,
|
|
141
|
149
|
};
|
|
142
|
150
|
},
|
|
143
|
151
|
created() {
|
|
|
@@ -198,32 +206,42 @@ export default {
|
|
198
|
206
|
showaffixModel(row) {
|
|
199
|
207
|
this.$modal.confirm('是否进行用印申请?')
|
|
200
|
208
|
.then(function () {
|
|
201
|
|
- // return changeJobStatus(row.jobId, row.status);
|
|
|
209
|
+ return adjudicationStamp({id:row.id});
|
|
202
|
210
|
})
|
|
203
|
211
|
.then(() => {
|
|
204
|
|
- // this.$modal.msgSuccess(text + "成功");
|
|
|
212
|
+ this.getList(this.queryParams);
|
|
|
213
|
+ this.$modal.msgSuccess("用印成功!");
|
|
205
|
214
|
})
|
|
206
|
215
|
.catch(function () {
|
|
207
|
|
- // row.status = row.status === "0" ? "1" : "0";
|
|
208
|
216
|
});
|
|
209
|
217
|
},
|
|
210
|
218
|
// 快递信息弹框
|
|
211
|
219
|
showDeliveryModel(row) {
|
|
212
|
220
|
console.log(row,'快递');
|
|
213
|
221
|
this.showDelivery = true
|
|
|
222
|
+ this.getadjudicationLogistics({id:row.id})
|
|
214
|
223
|
},
|
|
215
|
224
|
closeDeliveryModel() {
|
|
216
|
225
|
this.showDelivery = false
|
|
217
|
226
|
},
|
|
|
227
|
+ // 查询物流信息
|
|
|
228
|
+ getadjudicationLogistics(val) {
|
|
|
229
|
+ this.flagLoading = true;
|
|
|
230
|
+ adjudicationLogistics(val).then((res) => {
|
|
|
231
|
+ this.deliveryDataArr = res.data
|
|
|
232
|
+ this.flagLoading = false
|
|
|
233
|
+ })
|
|
|
234
|
+ },
|
|
218
|
235
|
// 案件归档
|
|
219
|
|
- showCasefilingModel() {
|
|
|
236
|
+ showCasefilingModel(row) {
|
|
220
|
237
|
this.$modal.confirm('是否确认立即进行案件扫描?').then(
|
|
221
|
|
- function () {}
|
|
|
238
|
+ function () {
|
|
|
239
|
+ return adjudicationCaseFile({id:row.id})
|
|
|
240
|
+ }
|
|
222
|
241
|
).then(() => {
|
|
223
|
|
-
|
|
224
|
|
- }).catch(function () {
|
|
225
|
|
-
|
|
226
|
|
- })
|
|
|
242
|
+ this.getList(this.queryParams);
|
|
|
243
|
+ this.$modal.msgSuccess("归档成功!");
|
|
|
244
|
+ }).catch(function () {})
|
|
227
|
245
|
},
|
|
228
|
246
|
// 送达裁决书弹框
|
|
229
|
247
|
showMailaward(row) {
|