Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
X
XiTianSenMall
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
leiqingsong
XiTianSenMall
Commits
1816221b
Commit
1816221b
authored
Mar 26, 2021
by
leiqingsong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://111.203.232.171:8888/Song/xitiansenmall
into dev_lqs
parents
92e9b9d4
c343d81a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
bank.vue
H5/src/views/bank.vue
+1
-1
cash-out.vue
H5/src/views/cashOut/cash-out.vue
+3
-2
No files found.
H5/src/views/bank.vue
View file @
1816221b
...
...
@@ -110,7 +110,7 @@ export default {
this
.
$toast
.
fail
(
"请输入正确的身份证号"
);
return
;
}
if
(
!
/^
[
u4e00-u9fa5
]{8}
/
.
test
(
this
.
form
.
name
)){
if
(
!
/^
[
a-zA-Z
\u
4e00-
\u
9fa5
]
+$
/
.
test
(
this
.
form
.
name
)){
this
.
$toast
.
fail
(
"姓名仅支持中文或英文"
);
return
;
}
...
...
H5/src/views/cashOut/cash-out.vue
View file @
1816221b
...
...
@@ -245,7 +245,8 @@ export default {
this
.
validCodeDialogShow
=
false
;
const
params
=
{
code
:
this
.
validCode
,
money
:
this
.
money
money
:
this
.
money
,
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
cashOut
(
params
)
.
then
(
res
=>
{
...
...
@@ -256,7 +257,7 @@ export default {
this
.
resultDialogImg
=
require
(
"@/assets/images/成功.png"
);
}
else
{
this
.
resultDialogTitle
=
"提现失败"
;
this
.
resultDialogTip
=
"提现失败,验证码错误"
;
this
.
resultDialogTip
=
res
.
message
;
this
.
resultDialogImg
=
require
(
"@/assets/images/叉号.png"
);
}
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment