From d889eaf990af99c06970e51f2bc421ac0015489c Mon Sep 17 00:00:00 2001
From: ZZJ <zzjdsg2300@163.com>
Date: 星期四, 05 五月 2022 13:30:31 +0800
Subject: [PATCH] bug修复

---
 src/views/productDetail/components/ConfirmOrder.vue |  154 ++++++++++++++++++++++++++++++++------------------
 1 files changed, 98 insertions(+), 56 deletions(-)

diff --git a/src/views/productDetail/components/ConfirmOrder.vue b/src/views/productDetail/components/ConfirmOrder.vue
index 9378241..23226d8 100644
--- a/src/views/productDetail/components/ConfirmOrder.vue
+++ b/src/views/productDetail/components/ConfirmOrder.vue
@@ -128,69 +128,40 @@
         <el-button type="primary" @click="assureOnlinePay">瀹屾垚鏀粯</el-button>
       </div>
     </el-dialog>
-    <el-dialog
-      class="offpay-instruct-dialog"
-      :visible="offPayInstruVisible"
-      :show-close="true"
-      @close="offPayInstruVisible = false"
-    >
-      <div slot="title" class="dialog-title">绾夸笅姹囨璇存槑</div>
-      <div class="offPay-instruct">
-        <h5>璇峰皢娆鹃」姹囧叆浠ヤ笅閾惰璐︽埛锛�</h5>
-        <ul>
-          <li><label>寮�鎴烽摱琛岋細</label>鍖椾含閾惰澶槼瀹敮琛�</li>
-          <li><label>璐� 鍙凤細</label>2000 0031 2025 0000 9136 746</li>
-          <li><label>寮�鎴疯琛屽彿锛�</label>313100001792</li>
-          <li>
-            <label>娆鹃」锛�</label>
-            <span class="main-color">{{ sum }}鍏�</span>
-          </li>
-        </ul>
-        <div class="dash-line"></div>
-        <ul class="userinfo">
-          <li>
-            <label>鎮ㄧ殑鐧诲綍鐢ㄦ埛鍚嶏細</label>
-            {{ this.username }}
-          </li>
-          <li>
-            <label>鎮ㄧ殑璁㈠崟鍙凤細</label>
-            {{ orderId }}
-          </li>
-        </ul>
-        <div class="attentions">
-          <p class="title">娉ㄦ剰浜嬮」锛�</p>
-          <p>1銆佽鍦ㄨ浆璐︽椂鍔″繀鎻愪緵鐢ㄦ埛鍚嶅拰璁㈠崟缂栧彿锛�</p>
-          <p>
-            2銆佽浆璐﹀悗锛岃鍔″繀鐐瑰嚮鈥滄敮浠樺畬鎴�/涓婁紶鍑瘉鈥濇彁浜よ浆璐︿俊鎭紝浠ヤ究璐㈠姟纭锛岃储鍔$‘璁ゆ椂闂翠负鎻愪氦鍚庣殑1-3涓伐浣滄棩锛�
-          </p>
-          <p>3銆佹偍鍙互鍦ㄢ�滄垜鐨勮鍗曗�濈偣鍑汇�愭彁浜や粯娆惧嚟璇併�戯紝鏌ョ湅鏈〉涓殑鍐呭</p>
-        </div>
-        <div class="btns text-center">
-          <el-button
-            class="btn-cancle"
-            @click="offPayInstruVisible = false"
-            style="margin-right: 20px"
-            >鍙栨秷</el-button
-          >
-          <router-link
-            :to="`/Layout/ManageOrder?confirmOrder=offPay&orderId=${orderId}`"
-          >
-            <el-button class="btn-assure" type="primary"
-              >鏀粯瀹屾垚/涓婁紶鍑瘉</el-button
-            >
-          </router-link>
-        </div>
-      </div>
-    </el-dialog>
+
+    <div class="offerpay" v-if="showOffpayInstruct || showUploadBox">
+      <OffpayInstruct
+        v-if="showOffpayInstruct"
+        @close="showOffpayInstruct = false"
+        :offerData="{ username: username, sum: sum, orderId: orderId }"
+        @confirm="confirmOrder"
+      ></OffpayInstruct>
+      <UploadBox
+        :orderId="orderId"
+        @close="showUploadBox = false"
+        @back="back"
+        v-if="showUploadBox"
+      >
+      </UploadBox>
+    </div>
+
+    <div class="mask" v-if="showOffpayInstruct || showUploadBox"></div>
   </div>
 </template>
 
 <script>
 import { getOrderById } from "@/api/product";
 import { resumePay } from "@/api/order";
+import OffpayInstruct from "@/views/productDetail/components/OffpayInstruct";
+import UploadBox from "@/views/productDetail/components/UploadBox";
+
 export default {
   props: {
     orderId: {},
+  },
+  components: {
+    OffpayInstruct,
+    UploadBox,
   },
   data() {
     return {
@@ -202,6 +173,8 @@
       username: "",
       offPayInstruVisible: false,
       onlinePayVisible: false,
+      showOffpayInstruct: false,
+      showUploadBox: false,
     };
   },
   computed: {
@@ -232,13 +205,26 @@
       this.payWay = payway;
     },
     forPay() {
+      if (!this.policyChecked) {
+        this.$notify({
+          type: "error",
+          message: "璇风‘璁ょ敤鎴锋潯娆�",
+        });
+        return;
+      }
       let orderId = this.orderId;
       let payMethod = this.payWay;
       let _this = this;
       if (this.orderInfo.orderMoney == 0) {
         resumePay({ orderId, payMethod: 5 }).then((res) => {
           if (res.success) {
-            this.$router.replace("/Layout/ManageOrder");
+            this.$router.push("/trialCenter");
+            this.$notify({
+              type: "success",
+              message: "鎴愬姛璇曠敤",
+              duration: 2500,
+              offset: 57,
+            });
           }
         });
         return;
@@ -255,7 +241,7 @@
         resumePay({ orderId, payMethod: 1 })
           .then((res) => {
             if (res.success) {
-              this.offPayInstruVisible = true;
+              this.showOffpayInstruct = true;
             }
           })
           .catch((e) => {
@@ -278,6 +264,14 @@
     },
     close() {
       this.$emit("close");
+    },
+    confirmOrder() {
+      this.showOffpayInstruct = false;
+      this.showUploadBox = true;
+    },
+    back() {
+      this.showOffpayInstruct = true;
+      this.showUploadBox = false;
     },
   },
 };
@@ -399,6 +393,54 @@
       }
     }
   }
+
+  .btns {
+    position: absolute;
+    right: 20px;
+    bottom: 20px;
+    display: flex;
+    justify-content: end;
+    text-align: center;
+    line-height: 40px;
+
+    .confirm {
+      margin-left: 10px;
+      width: 104px;
+      height: 40px;
+      background: #0065ff;
+      color: #fff;
+    }
+
+    .cancel {
+      width: 104px;
+      height: 40px;
+      border: 1px solid #0065ff;
+      color: #0065ff;
+    }
+  }
+
+  .offerpay {
+    position: fixed;
+    top: 50%;
+    left: 50%;
+    margin-top: -331px;
+    margin-left: -223px;
+    width: 446px;
+    height: 662px;
+    background: #ffffff;
+    z-index: 2;
+  }
+
+  .mask {
+    position: fixed;
+    top: 0;
+    left: 0;
+    right: 0;
+    bottom: 0;
+    background: #000000;
+    opacity: 0.2;
+    z-index: 1;
+  }
 }
 </style>
 

--
Gitblit v1.8.0