1
李凌
2025-09-06 b7eb749eb71ae802f9868e3b099aa362e23d7cc0
src/views/cryptos/AboutUs/index.vue
@@ -12,6 +12,7 @@
import assetsHead from "@/components/Transform/assets-head/index.vue";
import { _getAboutUs } from "@/service/user.api"
import { dataTimeEx } from '@/utils/utis'
import { showToast } from "vant";
export default {
  data() {
    return {
@@ -50,8 +51,8 @@
        this.createTime = this.dataTimeEx(res.createTime)
      }).catch((error) => {
        if (error.code == 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
        else if (error.msg !== undefined) { this.$toast(this.$t(error.msg)); }
        if (error.code == 'ECONNABORTED') { showToast(this.$t('网络超时!')); }
        else if (error.msg !== undefined) { showToast(this.$t(error.msg)); }
      });
    }
  }