Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
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
74e7760b
Commit
74e7760b
authored
4 years ago
by
leiqingsong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
6b6a728a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
11 deletions
+15
-11
cash-out.vue
H5/src/views/cashOut/cash-out.vue
+15
-11
No files found.
H5/src/views/cashOut/cash-out.vue
View file @
74e7760b
...
...
@@ -39,7 +39,7 @@
alt=
"解释"
/>
</p>
<p
class=
"explain"
>
<p
v-if=
"showExplain"
class=
"explain"
>
<span>
{{
this
.
textName
}}
</span>
</p>
</div>
...
...
@@ -78,9 +78,9 @@
:base-dialog-show=
"resultDialog"
@
onClick=
"onSuccess"
>
<div
slot=
"content"
style=
"text-align:center"
>
<div
slot=
"content"
style=
"text-align:
center"
>
<img
:src=
"resultDialogImg"
style=
"width: 70px; height: 76px"
alt
/>
<p
style=
"margin:
0;font-size:14px;color:
#999999"
>
<p
style=
"margin:
0; font-size: 14px; color:
#999999"
>
{{
resultDialogTip
}}
</p>
</div>
...
...
@@ -98,6 +98,7 @@ export default {
name
:
"CashOut"
,
data
()
{
return
{
showExplain
:
false
,
userPhone
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
bank
:
""
,
money
:
null
,
...
...
@@ -171,14 +172,17 @@ export default {
this
.
validCodeDialogShow
=
true
;
},
taxtClick
()
{
const
params
=
{
money
:
1
};
getTaxRate
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
textName
=
res
.
data
.
taxDesc
;
}
});
this
.
showExplain
=
!
this
.
showExplain
;
if
(
this
.
showExplain
)
{
const
params
=
{
money
:
1
};
getTaxRate
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
textName
=
res
.
data
.
taxDesc
;
}
});
}
},
getUserInfo
()
{
const
params
=
{
...
...
This diff is collapsed.
Click to expand it.
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