88 lines
4.2 KiB
HTML
88 lines
4.2 KiB
HTML
<div id="withholdGoldModel" class="modal fade" role="dialog" aria-labelledby="exampleModalLabel"
|
|
aria-hidden="true">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-body">
|
|
<h3 class="m-t-none m-b ">
|
|
<vc:i18n name="申请提现" namespace="withholdGold"></vc:i18n>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='金币金额' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.amount" type="text"
|
|
:placeholder="vc.i18n('必填,请填写金币金额','withholdGold')" disabled class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='提现金额' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.applyAmount" type="text"
|
|
:placeholder="vc.i18n('必填,请填写提现金额','withholdGold')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='申请人' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.applyUserName" type="text"
|
|
:placeholder="vc.i18n('必填,请填写申请人','withholdGold')" class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='申请人电话' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.applyUserTel" type="text"
|
|
:placeholder="vc.i18n('必填,请填写申请人电话','withholdGold')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='银行账户' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.bankNum" type="text"
|
|
:placeholder="vc.i18n('必填,请填写银行账户','withholdGold')" class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='账号名称' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="withholdGoldInfo.bankNumName" type="text"
|
|
:placeholder="vc.i18n('必填,请填写账号名称','withholdGold')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='开户行' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<textarea v-model="withholdGoldInfo.bankName"
|
|
:placeholder="vc.i18n('必填,请填写开户行','withholdGold')" class="form-control"></textarea>
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='申请说明' namespace='withholdGold'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<textarea v-model="withholdGoldInfo.remark"
|
|
:placeholder="vc.i18n('必填,请填写申请说明','withholdGold')" class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="withholdGold()">
|
|
<vc:i18n name="提交" namespace="withholdGold"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal">
|
|
<vc:i18n name="取消" namespace="withholdGold"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |