Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-08-08 13:58:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cc5ff41bfa062e1af757707240298b86cfe046eb
cc5ff41b
1 parent
616f654d
fix: 修复银行账号从数字转换为字符串存储的问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/pages/collectionSettings/index.vue
src/pages/collectionSettings/index.vue
View file @
cc5ff41
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-08 13:
24:11
* @LastEditTime: 2025-08-08 13:
58:13
* @FilePath: /jgdl/src/pages/collectionSettings/index.vue
* @Description: 收款设置
-->
...
...
@@ -500,7 +500,7 @@ const getUserInfo = async () => {
if (userInfo.bank_id && userInfo.bank_no) {
accountInfo.value = {
bankName: userInfo.bank_id, // 存储银行ID
bankAccount:
Number(userInfo.bank_no), // 从接口获取后转换为数字
bankAccount:
userInfo.bank_no, // 存储银行账号
bankImg: userInfo.bank_img || '' // 存储银行卡图片
};
}
...
...
Please
register
or
login
to post a comment