diff --git a/src/views/awardManagement/components/expressDeliveryDialog.vue b/src/views/awardManagement/components/expressDeliveryDialog.vue new file mode 100644 index 0000000..fcb395f --- /dev/null +++ b/src/views/awardManagement/components/expressDeliveryDialog.vue @@ -0,0 +1,101 @@ + + + + + \ No newline at end of file diff --git a/src/views/awardManagement/listofAwards.vue b/src/views/awardManagement/listofAwards.vue index c033bd4..9b8f828 100644 --- a/src/views/awardManagement/listofAwards.vue +++ b/src/views/awardManagement/listofAwards.vue @@ -33,7 +33,12 @@ - + + + + @@ -90,11 +102,12 @@ import { } from "@/api/awardManagement/awardManagement"; import paymentdetailsDialog from "./components/paymentdetailsDialog.vue"; import mailawardDialog from './components/MailawardDialog.vue'; +import expressDeliveryDialog from './components/expressDeliveryDialog.vue'; export default { name: "paymentList", dicts: ["case_status"], - components: { paymentdetailsDialog, mailawardDialog }, + components: { paymentdetailsDialog, mailawardDialog, expressDeliveryDialog }, data() { return { queryParams: { @@ -124,6 +137,7 @@ export default { flag: null, openMailawardDialog: false, //送达裁决书页面 mailawardata: {}, //裁决书送达界面数据 + showDelivery: false, //快递信息弹框 }; }, created() { @@ -193,6 +207,24 @@ export default { // row.status = row.status === "0" ? "1" : "0"; }); }, + // 快递信息弹框 + showDeliveryModel(row) { + console.log(row,'快递'); + this.showDelivery = true + }, + closeDeliveryModel() { + this.showDelivery = false + }, + // 案件归档 + showCasefilingModel() { + this.$modal.confirm('是否确认立即进行案件扫描?').then( + function () {} + ).then(() => { + + }).catch(function () { + + }) + }, // 送达裁决书弹框 showMailaward(row) { this.mailawardata = row;