1
李凌
2025-09-11 9495998e97dd04d4bdfcf32dfd4d49cd45c1fe32
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>