hookehuyr

fix: 修复银行账号从数字转换为字符串存储的问题

1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-08-08 13:24:11 4 + * @LastEditTime: 2025-08-08 13:58:13
5 * @FilePath: /jgdl/src/pages/collectionSettings/index.vue 5 * @FilePath: /jgdl/src/pages/collectionSettings/index.vue
6 * @Description: 收款设置 6 * @Description: 收款设置
7 --> 7 -->
...@@ -500,7 +500,7 @@ const getUserInfo = async () => { ...@@ -500,7 +500,7 @@ const getUserInfo = async () => {
500 if (userInfo.bank_id && userInfo.bank_no) { 500 if (userInfo.bank_id && userInfo.bank_no) {
501 accountInfo.value = { 501 accountInfo.value = {
502 bankName: userInfo.bank_id, // 存储银行ID 502 bankName: userInfo.bank_id, // 存储银行ID
503 - bankAccount: Number(userInfo.bank_no), // 从接口获取后转换为数字 503 + bankAccount: userInfo.bank_no, // 存储银行账号
504 bankImg: userInfo.bank_img || '' // 存储银行卡图片 504 bankImg: userInfo.bank_img || '' // 存储银行卡图片
505 }; 505 };
506 } 506 }
......