Handy_Cao 9 mēneši atpakaļ
vecāks
revīzija
c6c9cbdb43

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

@@ -1371,7 +1371,7 @@
                 "failedtogetservertime": "Failed to get server time",
                 "paste": "Copied, go paste it~",
                 "pastefailure": "Copy failed",
-                "submitsuccess": "If the application is successful, please make payment in the application details",
+                "submitsuccess": "If the application is successful, please confirm the result on the application record screen",
                 "submitfailure": "Submission failed:",
                 "tips2": "Please upload transfer receipt",
                 "tips1": "Is golden on bank account transfer?"

+ 1 - 1
public/locales/th-TH.json

@@ -1374,7 +1374,7 @@
                 "failedtogetservertime": "การดึงเวลาจากเซิร์ฟเวอร์ล้มเหลว",
                 "paste": "คัดลอกแล้ว ไปวางได้เลย~",
                 "pastefailure": "คัดลอกล้มเหลว",
-                "submitsuccess": "ใบสมัครสำเร็จแล้วกรุณาใช้รายละเอียดการชำระเงิน",
+                "submitsuccess": "โปรแกรมประสบความสำเร็จโปรดยืนยันผลการทำงานของอินเทอร์เฟซการบันทึก",
                 "submitfailure": "การส่งข้อมูลล้มเหลว:",
                 "tips2": "กรุณาอัปโหลดหลักฐานการโอนเงินค่ะ",
                 "tips1": "มีการโอนเงินเข้าสู่ระบบธนาคาร หรือไม่?"

+ 1 - 1
public/locales/zh-CN.json

@@ -1374,7 +1374,7 @@
                 "failedtogetservertime": "获取服务器时间失败",
                 "paste": "已复制,快去粘贴吧~",
                 "pastefailure": "复制失败",
-                "submitsuccess": "申请成功,请在申请明细进行支付",
+                "submitsuccess": "申请成功,请在申请记录界面确认结果",
                 "submitfailure": "提交失败:",
                 "tips2": "请上传转账凭证",
                 "tips1": "是否已在银行端进行入金转账?"

+ 1 - 1
public/locales/zh-TW.json

@@ -1374,7 +1374,7 @@
                 "failedtogetservertime": "獲取服務器時間失敗",
                 "paste": "已複製,快去粘貼吧~",
                 "pastefailure": "複製失敗",
-                "submitsuccess": "申請成功,請在申請明細進行支付",
+                "submitsuccess": "申請成功,請在申請記錄界面確認結果",
                 "submitfailure": "提交失敗:",
                 "tips2": "請上傳匯款證明",
                 "tips1": "是否已在銀行端進行入金轉賬?"

+ 2 - 2
src/business/bank/index.ts

@@ -351,7 +351,8 @@ export function useDoBankSign() {
         loading.value = true
         // 默认未签约状态
         const { signstatus = SignStatus.Unsigned } = bankInfo.value ?? {}
-
+        // 有签约信息 不能修改签约渠道
+        if (bankInfo.value) { formData.CusBankID = bankInfo.value.cusbankid }
         return t2bBankSign({
             data: {
                 ...formData,
@@ -478,7 +479,6 @@ export function useDoCusBankExtendConfigs(extendbiztype: number) {
                 } else {
                     cusBank.value = res.data[0]
                 }
-                console.log(res)
                 if (cusBank.value) {
                     /// 不为空 入金取 318 出金取 319
                     const time = getSystemParamValue(extendbiztype === 2 ? '318' : '319') ?? ''

+ 1 - 2
src/packages/mobile/views/bank/sign/components/edit/Index.vue

@@ -9,7 +9,7 @@
                 <CellGroup inset>
                     <!-- 错误 #6595 已签约状态的签约信息,修改时应限制修改银行渠道 -->
                     <Field v-if="bankInfo?.signstatus === 4 && selectCusBank" :label="$t('banksign.bankchannel')"
-                        v-model="selectCusBank.cusbankname" readonly />
+                        v-model="bankInfo.cusbankname" readonly />
                     <Field :label="$t('banksign.bankchannel')" :placeholder="$t('banksign.tips16')" name="CusBankID"
                         :rules="formRules.CusBankID" is-link v-else>
                         <template #input>
@@ -279,7 +279,6 @@ const formSubmit = () => {
                 formData.BankCity = extendInfo.value['102']
             }
         })
-
         onSubmit().then(() => {
             hideLoading()
             dialog(props.isedit ? t('banksign.submitsuccess1') : t('banksign.submitsuccess2')).then(() => {