| | |
| | | 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 { |
| | |
| | | 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)); } |
| | | }); |
| | | } |
| | | } |