增加提现设置内容:提现方式、最低提现金额、微信提现应用ID

master
pikachu1995@126.com 2023-03-02 06:52:15 +08:00
parent 7052fa7420
commit 7c775f7692
1 changed files with 20 additions and 2 deletions

View File

@ -6,11 +6,25 @@
<i-switch v-model="formValidate.apply" style="margin-top:7px;"><span slot="open"></span>
<span slot="close"></span>
</i-switch>
</FormItem>
<FormItem label="最低提现金额" prop="minPrice">
<Input class="label-appkey" v-model="formValidate.minPrice" />
</FormItem>
<FormItem label="提现方式" prop="type">
<RadioGroup v-model="formValidate.type">
<Radio label="WECHAT">微信</Radio>
<Radio label="ALI">支付宝</Radio>
</RadioGroup>
</FormItem>
<FormItem label="微信提现应用ID" prop="wechatAppId">
<Input class="label-appkey" v-model="formValidate.wechatAppId" />
</FormItem>
<div class="label-btns">
<Button type="primary" @click="submit('formValidate')"></Button>
</div>
</Form>
</div>
@ -23,6 +37,9 @@ export default {
return {
formValidate: { //
apply: true,
minPrice: "",
type: "",
wechatAppId: "",
},
switchTitle: "提现审核是否开启", // title
@ -42,6 +59,7 @@ export default {
},
//
setupSetting() {
setSetting(this.type, this.formValidate).then((res) => {
if (res.success) {
this.$Message.success("保存成功!");