This commit is contained in:
parent
f36767f1e1
commit
50e282896c
|
@ -184,6 +184,10 @@
|
||||||
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
|
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
|
||||||
<cash :payMode='pay_type' :pay_close="pay_close" @payClose="payClose" @onChangeFun="onChangeFun"
|
<cash :payMode='pay_type' :pay_close="pay_close" @payClose="payClose" @onChangeFun="onChangeFun"
|
||||||
:order_id="currentTab"></cash>
|
:order_id="currentTab"></cash>
|
||||||
|
|
||||||
|
<!-- 提现提示 -->
|
||||||
|
<u-modal :show="tipShow" title="提示" content='小额(1千元以下)提现2小时内到账,大额(大于1千元)提现次日18:00前到账'
|
||||||
|
@confirm="tipShow = false"></u-modal>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -220,6 +224,7 @@
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
tipShow: false,
|
||||||
extract_money: "",
|
extract_money: "",
|
||||||
lock_money: "",
|
lock_money: "",
|
||||||
ot_margin: "",
|
ot_margin: "",
|
||||||
|
@ -289,6 +294,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
|
// 提现提示
|
||||||
|
this.tipShow = true;
|
||||||
this.merId = options.mer_id
|
this.merId = options.mer_id
|
||||||
this.source = options.source;
|
this.source = options.source;
|
||||||
let data = this.$store.state.app.userInfo;
|
let data = this.$store.state.app.userInfo;
|
||||||
|
@ -302,7 +309,6 @@
|
||||||
this.isAuto = true;
|
this.isAuto = true;
|
||||||
this.isShowAuth = true
|
this.isShowAuth = true
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getApply() {
|
async getApply() {
|
||||||
|
|
Loading…
Reference in New Issue