From 6cbea7c462cd659a8a3b2c8363def687a740ac19 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Mon, 08 Sep 2025 18:21:47 +0800
Subject: [PATCH] 3

---
 src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue b/src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue
index 384f2e5..8b4eea9 100644
--- a/src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue
+++ b/src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue
@@ -120,7 +120,7 @@
     </div>
 
     <!--  弹窗  -->
-    <van-popup v-model="show" round position="bottom">
+    <van-popup v-model:show="show" round position="bottom">
       <div class="pt-44">
         <div class="mb-42 font-600 font-32 text-center">
           {{ $t("您是否已收到款项?") }}
@@ -224,10 +224,10 @@
       params: [],
     };
   },
-  mounted() {
+  // mounted() {
 
-  },
-  activated() {
+  // },
+  mounted() {
     const order_no = this.$store.state.c2c.order_no;
     otcApi.ctcOrderGetDetail({ order_no, language: this.$i18n.locale }).then((res) => {
       this.detail = res.data;
@@ -242,10 +242,10 @@
       this.params = this.params.filter((item) => item.name && item.value);
       console.log(this.detail);
     });
-    this.$bus.$on("returnPwd", (pwd) => {
-      this.passwd = pwd;
-      this.enterTrade();
-    });
+    // this.$bus.$on("returnPwd", (pwd) => {
+    //   this.passwd = pwd;
+    //   this.enterTrade();
+    // });
   },
   methods: {
     onConfirm() {
@@ -255,6 +255,7 @@
           type: "sell",
         },
       });
+      // this.$router.go(-1)
     },
     back() {
       this.show = false;
@@ -306,7 +307,7 @@
     Question,
   },
   beforeDestroy() {
-    this.$bus.$off("returnPwd");
+    // this.$bus.$off("returnPwd");
   },
 };
 </script>

--
Gitblit v1.9.3