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 @@
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 = {
......
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