Commit ea36e236 authored by leiqingsong's avatar leiqingsong

Merge branch 'dev_lqs' into 'master'

Dev lqs

See merge request !117
parents e738d5b5 614d8e0d
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
alt="解释" alt="解释"
/> />
</p> </p>
<p class="explain"> <p v-if="showExplain" class="explain">
<span>{{ this.textName }}</span> <span>{{ this.textName }}</span>
</p> </p>
</div> </div>
...@@ -78,9 +78,9 @@ ...@@ -78,9 +78,9 @@
:base-dialog-show="resultDialog" :base-dialog-show="resultDialog"
@onClick="onSuccess" @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 /> <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 }} {{ resultDialogTip }}
</p> </p>
</div> </div>
...@@ -98,6 +98,7 @@ export default { ...@@ -98,6 +98,7 @@ export default {
name: "CashOut", name: "CashOut",
data() { data() {
return { return {
showExplain: false,
userPhone: JSON.parse(localStorage.getItem("user")).userId, userPhone: JSON.parse(localStorage.getItem("user")).userId,
bank: "", bank: "",
money: null, money: null,
...@@ -171,14 +172,17 @@ export default { ...@@ -171,14 +172,17 @@ export default {
this.validCodeDialogShow = true; this.validCodeDialogShow = true;
}, },
taxtClick() { taxtClick() {
const params = { this.showExplain = !this.showExplain;
money: 1 if (this.showExplain) {
}; const params = {
getTaxRate(params).then(res => { money: 1
if (res.code === 0) { };
this.textName = res.data.taxDesc; getTaxRate(params).then(res => {
} if (res.code === 0) {
}); this.textName = res.data.taxDesc;
}
});
}
}, },
getUserInfo() { getUserInfo() {
const params = { const params = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment