From 3003b7486ddeffd169f2b2f564fc0ff8c2c58bb3 Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Tue, 22 Jul 2025 09:56:04 +0800
Subject: [PATCH] 1

---
 src/page/newUser/setting.vue |   75 +++++++++++++++++++++++++++++--------
 1 files changed, 59 insertions(+), 16 deletions(-)

diff --git a/src/page/newUser/setting.vue b/src/page/newUser/setting.vue
index 66ca2eb..fd7499a 100644
--- a/src/page/newUser/setting.vue
+++ b/src/page/newUser/setting.vue
@@ -1,15 +1,36 @@
 <template>
   <div class="content">
-    <div class="top_back">
+    <van-nav-bar
+      :placeholder="true"
+      :safe-area-inset-top="true"
+      :title="$t('setting')"
+      left-arrow
+      @click-left="$router.go(-1)"
+    >
+    </van-nav-bar>
+    <!-- <div class="top_back">
       <div class="left_back_icon" @click="$router.go(-1)">
         <img src="../../assets/img/zuojiantou.png" alt />
       </div>
       <div class="titles">
         <span>{{ $t("setting") }}</span>
       </div>
-    </div>
+    </div> -->
     <div style="width: 100%; height: 10px; background-color: #f8f8f8"></div>
 
+    <div class="jy" @click="handleGoToBankCard1()">
+      <div class="left_gn">
+        <div class="l_icon">
+          <!-- <img src="../../assets/img/yeb.png" alt /> -->
+        </div>
+        <div class="r_title">
+          <span>{{ $t("关于我们") }}</span>
+        </div>
+      </div>
+      <div class="right_gos">
+        <img src="../../assets/img/youjiantou.png" alt />
+      </div>
+    </div>
     <div class="jy" @click="handleGoToBankCard()">
       <div class="left_gn">
         <div class="l_icon">
@@ -43,7 +64,8 @@
           <!-- <img src="../../assets/img/yeb.png" alt /> -->
         </div>
         <div class="r_title">
-          <span>{{ $t("hj146") }}</span>
+          <span>KYC</span>
+          <!-- <span>{{ $t("hj146") }}</span> -->
         </div>
       </div>
       <div class="right_gos">
@@ -127,7 +149,7 @@
       cirNewPassword: "", // 确认新密码
       userInfo: [],
       onlineService: "",
-      language: "",
+      language: ""
     };
   },
   components: { Language },
@@ -221,7 +243,7 @@
         // 判断是否登录
         this.$store.commit("dialogVisible", false);
         this.$store.state.userInfo = data.data;
-        document.title = 'Setting'
+        document.title = "Setting";
         this.userInfo = data.data;
       } else {
         this.$store.commit("dialogVisible", true);
@@ -242,7 +264,7 @@
       // 退出登录
       MessageBox.confirm(this.$t("hj149"), this.$t(""), {
         confirmButtonText: this.$t("qr"),
-        cancelButtonText: this.$t("hj106"),
+        cancelButtonText: this.$t("hj106")
       })
         .then(() => {
           this.toRegister();
@@ -268,7 +290,11 @@
       this.$router.push("/download");
     },
     handleGoToBankCard() {
-      this.$router.push("/bankCard");
+      // this.$router.push("/bankCard");
+      this.$router.push("/banklist");
+    },
+    handleGoToBankCard1() {
+      this.$router.push("/bankCard1");
     },
     async toRegister() {
       // 注销登陆
@@ -301,7 +327,7 @@
         if (this.newPassword === this.cirNewPassword) {
           let opts = {
             oldPwd: this.oldPassword,
-            newPwd: this.newPassword,
+            newPwd: this.newPassword
           };
           let data = await api.changePassword(opts);
           if (data.status === 0) {
@@ -311,7 +337,7 @@
             this.settingDialog = false;
             Notify({
               type: "success",
-              message: this.$t("密码修改成功"),
+              message: this.$t("密码修改成功")
             });
             this.toRegister();
           } else {
@@ -327,12 +353,29 @@
         // 支持
         navigator.vibrate([55]);
       }
-    },
-  },
+    }
+  }
 };
 </script>
 
 <style scoped lang="less">
+@green: #c4d600;
+/deep/ .van-nav-bar__content {
+  height: 65px;
+}
+/deep/ .van-nav-bar__title {
+  font-family: "DINPro";
+  width: 100%;
+  height: 1.17333rem;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  font-style: normal;
+  font-weight: 500;
+  font-size: 0.48rem;
+  color: #14181f;
+}
+
 .right_gos_txt {
   margin-right: 15px;
 }
@@ -381,7 +424,7 @@
     width: 100%;
     height: 1.3rem;
     border-radius: 0.15rem;
-    background: #2d6ae9;
+    background: @green;
     color: #fff;
     font-size: 0.4615rem;
     margin-top: 0.5rem;
@@ -421,15 +464,15 @@
 }
 
 .btn_s_box {
-  border: none;
-  background: #409eff;
-  color: #fff;
+  border: @green solid 0.01em;
+  background: #fff;
+  color: @green;
   height: 70px;
   width: 100%;
   line-height: 70px;
   font-size: 16px;
   text-align: center;
-  border-radius: 15px;
+  border-radius: 5px;
   font-weight: 600;
   margin: 40px 20px 0 20px;
 }

--
Gitblit v1.9.3