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