From a857a5abd3525287221f813cea77bb78cd6c7e01 Mon Sep 17 00:00:00 2001
From: zhaoxiaoqiang <287285524@qq.com>
Date: Thu, 07 Sep 2023 15:32:52 +0800
Subject: [PATCH] 新增推广位项目选择

---
 src/views/qyp-project-order/admin.vue |   20 +++++++++++++++-----
 1 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/src/views/qyp-project-order/admin.vue b/src/views/qyp-project-order/admin.vue
index 7151975..a996242 100644
--- a/src/views/qyp-project-order/admin.vue
+++ b/src/views/qyp-project-order/admin.vue
@@ -129,12 +129,15 @@
             <el-descriptions-item label="签约时间">{{ orderDetail.signTime }}</el-descriptions-item>
             <el-descriptions-item label="解约时间">{{ orderDetail.terminateTime }}</el-descriptions-item>
             <el-descriptions-item label="项目名称">{{ orderDetail.projName }}</el-descriptions-item>
+            <el-descriptions-item label="支付金额">¥{{ orderDetail.payAmt }}</el-descriptions-item>
+            <el-descriptions-item label="支付方式">{{ orderDetail.payType }}</el-descriptions-item>
+            <el-descriptions-item label="是否使用优惠券">{{ orderDetail.useCoup }}</el-descriptions-item>
         </el-descriptions>
       </el-dialog>
       <el-dialog top="2vh"  :title="subTitle" fullscreen :visible.sync="productShow" width="60%">
-          <history v-if="isWhith==1"></history>
-          <plan  v-else-if="isWhith==2"></plan>
-          <draw  v-else-if="isWhith==3"></draw>
+          <history :orderId="orderId" v-if="isWhith==1"></history>
+          <plan :orderId="orderId" v-else-if="isWhith==2"></plan>
+          <draw :orderId="orderId" v-else-if="isWhith==3"></draw>
       </el-dialog>
     </div>
   </template>
@@ -251,6 +254,8 @@
                       },
                       on: {
                         click: () => {
+                          let {orderId} = scope.row;
+                          this.orderId = orderId;
                           this.isWhith = 1;
                           this.productShow  = true;
                         },
@@ -271,6 +276,8 @@
                       },
                       on: {
                         click: () => {
+                          let {orderId} = scope.row;
+                          this.orderId = orderId;
                           this.isWhith = 2;
                           this.productShow  = true;
                         },
@@ -291,6 +298,8 @@
                       },
                       on: {
                         click: () => {
+                          let {orderId} = scope.row;
+                          this.orderId = orderId;
                           this.isWhith = 3;
                           this.productShow  = true;
                         },
@@ -309,7 +318,8 @@
           title:"新增项目",
           orderDetail:{},
           exportExcelList:[],
-          isWhith:''
+          isWhith:'',
+          orderId:''
       }
     },
     computed:{
@@ -367,7 +377,7 @@
         }
         let objForm = JSON.parse(JSON.stringify(this.formInline));
         for (let key in objForm) {
-          if (objForm[key] === "all") {
+          if (objForm[key] === "all"||objForm[key] === ""||objForm[key] === null) {
             delete objForm[key];
           }
         }

--
Gitblit v1.8.0