From a71e242acdfbde2fabb7af66e5326aa15e5e854c Mon Sep 17 00:00:00 2001
From: hhl123456789 <3118891075@qq.com>
Date: Sun, 8 Oct 2023 16:51:59 +0800
Subject: [PATCH] =?UTF-8?q?'=E5=BF=AB=E9=80=92=E4=BF=A1=E6=81=AF=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2=E5=BC=80=E5=8F=91'?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/expressDeliveryDialog.vue | 101 ++++++++++++++++++
src/views/awardManagement/listofAwards.vue | 38 ++++++-
2 files changed, 136 insertions(+), 3 deletions(-)
create mode 100644 src/views/awardManagement/components/expressDeliveryDialog.vue
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 @@
+
+
+
+ 中通快递 85644454542121
+
+
+
+ {{ activity.content }}
+
+
+
+
+
+
+
+
+
+
\ 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 @@
-
+
+
+
+ {{ scope.row.caseStatusName }}
+
+
送达裁决书
- 案件归档
+
@@ -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;
--
2.54.0