Handy_Cao 1 year ago
parent
commit
89fc8e799f

+ 1 - 1
public/locales/en-US.json

@@ -144,7 +144,7 @@
     },
     },
     "account": {
     "account": {
         "title": "Funds Infos",
         "title": "Funds Infos",
-        "account": "Account Code",
+        "account": "AccountNo",
         "accountid": "Account ID",
         "accountid": "Account ID",
         "userId": "User ID:",
         "userId": "User ID:",
         "loginId": "Login ID:",
         "loginId": "Login ID:",

+ 1 - 1
src/packages/mobile/views/home/Index.vue

@@ -187,7 +187,7 @@ onActivated(() => {
   // 是否需要弹出提示信息
   // 是否需要弹出提示信息
   const showLoginAlert = globalStore.getSystemInfo('showLoginAlert')
   const showLoginAlert = globalStore.getSystemInfo('showLoginAlert')
   if (showLoginAlert) {
   if (showLoginAlert) {
-    dialog(t('user.login.tips7'))
+    dialog({message: t('user.login.tips7'), confirmButtonText: t('operation.confirm')})
   }
   }
   
   
 })
 })

+ 2 - 0
src/packages/mobile/views/mine/Index.vue

@@ -191,6 +191,7 @@ const doInOutMoney = (tab: string) => {
                     dialog({
                     dialog({
                         message: t('banksign.tips1'),
                         message: t('banksign.tips1'),
                         showCancelButton: true,
                         showCancelButton: true,
+                        cancelButtonText: t('operation.cancel'),
                         confirmButtonText: t('banksign.tips2')
                         confirmButtonText: t('banksign.tips2')
                     }).then(() => {
                     }).then(() => {
                         router.push({ name: 'bank-sign' })
                         router.push({ name: 'bank-sign' })
@@ -204,6 +205,7 @@ const doInOutMoney = (tab: string) => {
         dialog({
         dialog({
             message: t('banksign.tips3'),
             message: t('banksign.tips3'),
             showCancelButton: true,
             showCancelButton: true,
+            cancelButtonText: t('operation.cancel'),
             confirmButtonText: t('banksign.tips4')
             confirmButtonText: t('banksign.tips4')
         }).then(() => {
         }).then(() => {
             router.push({ name: 'account-certification' })
             router.push({ name: 'account-certification' })

+ 4 - 1
src/packages/tss/views/mine/Index.vue

@@ -21,7 +21,10 @@
                         </div>
                         </div>
                     </div>
                     </div>
                     <div class="profile-account">
                     <div class="profile-account">
-                        <span>{{ $t('mine.normal') }}</span>
+                        <div class="profile-account-first">
+                            <span>{{ $t('account.account') }}</span>
+                            <span class="status">{{ $t('mine.normal') }}</span>
+                        </div>
                         <span>{{ currentAccount.accountid ?? 0 }}</span>
                         <span>{{ currentAccount.accountid ?? 0 }}</span>
                     </div>
                     </div>
                 </div>
                 </div>

+ 3 - 10
src/packages/tss/views/mine/index.less

@@ -76,21 +76,14 @@
 
 
                 span {
                 span {
                     line-height: 20px;
                     line-height: 20px;
-
+                    font-size: 12px;
+                    
                     &:first-child {
                     &:first-child {
-                        font-size: 12px;
                         color: #46D63C;
                         color: #46D63C;
-
-                        &::before {
-                            content: '资金账户';
-                            color: #A1B1C5;
-                            margin-right: 6px;
-                        }
                     }
                     }
 
 
                     &:last-child {
                     &:last-child {
-                        font-size: 15px;
-                        font-weight: bold;
+                        padding-left: 5px;
                     }
                     }
                 }
                 }
             }
             }