zzzz
2024-03-31 1e1488b576d301a9cb229e746fee126af21026fa
注册页面的客服地址错误
5 files modified
18 ■■■■■ changed files
src/locales/zh.js 2 ●●● patch | view | raw | blame | history
src/page/authentication/index.vue 6 ●●●● patch | view | raw | blame | history
src/page/newUser/setting.vue 4 ●●●● patch | view | raw | blame | history
src/page/user/ransferIndex.vue 2 ●●● patch | view | raw | blame | history
src/page/user/recharge-sure.vue 4 ●●●● patch | view | raw | blame | history
src/locales/zh.js
@@ -522,5 +522,5 @@
  韩股總資產: "韩股總資產",
  "上傳憑證:": "上傳憑證:",
  从: "从",
  到: "到"
  到: "到",
};
src/page/authentication/index.vue
@@ -38,7 +38,7 @@
          <input v-if="!showBtn" type="text" v-model="form.idCard" readonly />
        </div>
      </div>
      <div class="bank_name">
      <!-- <div class="bank_name">
        <div class="lefts">
          <span>{{ "Vaild Number" + ":" }}</span>
        </div>
@@ -56,7 +56,7 @@
            readonly
          />
        </div>
      </div>
      </div> -->
      <div class="uploads">
        <div class="lefts">
          <el-upload
@@ -232,7 +232,7 @@
    },
    async getUserInfo() {
      // 获取用户信息
      let data = await api.getUserInfo();
      let data = await api.getUserInfodata();
      if (data.status === 0) {
        // 判断是否登录
        this.$store.commit("dialogVisible", false);
src/page/newUser/setting.vue
@@ -164,6 +164,7 @@
import * as api from "@/axios/api";
import { Toast, MessageBox } from "mint-ui";
import { isNull, pwdReg } from "@/utils/utils";
import { mapMutations } from "vuex";
export default {
  name: "newUser",
@@ -214,6 +215,8 @@
    }
  },
  methods: {
    ...mapMutations(["undataToken"]),
    popClose() {
      this.settingDialog = false;
    },
@@ -360,6 +363,7 @@
      let data = await api.logout();
      if (data.status === 0) {
        // Toast(data.msg)
        this.undataToken(null);
        this.$router.push("/login");
      } else {
        Toast(data.msg);
src/page/user/ransferIndex.vue
@@ -164,7 +164,7 @@
  components: {},
  data() {
    return {
      exchangeRate: 7.3,
      exchangeRate: 7.35,
      formValue: "",
      from: {},
      to: {},
src/page/user/recharge-sure.vue
@@ -48,7 +48,7 @@
      </div>
      <div>
        <div class="dz-title" v-if="rechargeAccountData.key !== undefined">
          <div>餘額</div>
          <div>{{ $t("可用餘額") }}</div>
          <div class="balance-text">
            {{ availableBalanceUSD }} {{ symbolCode }}
          </div>
@@ -184,7 +184,7 @@
      this.rechargeAccountData = e;
      (this.getMoneyList || []).map((item) => {
        if (item.accectType === this.rechargeAccountData.key) {
          this.availableBalanceUSD = item.availableBalanceUSD;
          this.availableBalanceUSD = item.availableBalance;
          this.symbolCode = item.symbolCode;
          this.accectType = item.accectType;
        }