1
李凌
2025-09-08 b26b298f86bcf5bb2dc2b6accc1759c1a2babc89
1
1 files modified
16 ■■■■ changed files
src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue 16 ●●●● patch | view | raw | blame | history
src/views/C2C/c2cOrder/payment/ConfirmedPaid.vue
@@ -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() {
@@ -307,7 +307,7 @@
    Question,
  },
  beforeDestroy() {
    this.$bus.$off("returnPwd");
    // this.$bus.$off("returnPwd");
  },
};
</script>