Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/scm/withholdIntegral/withholdIntegral.html
2025-12-09 20:22:03 +08:00

88 lines
4.3 KiB
HTML

<div id="withholdIntegralModel" 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="withholdIntegral"></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='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.amount" type="text"
:placeholder="vc.i18n('必填,请填写总积分数','withholdIntegral')" disabled class="form-control">
</div>
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='提现积分' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.applyAmount" type="text"
:placeholder="vc.i18n('必填,请填写提现积分','withholdIntegral')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='申请人' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.applyUserName" type="text"
:placeholder="vc.i18n('必填,请填写申请人','withholdIntegral')" class="form-control">
</div>
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='申请人电话' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.applyUserTel" type="text"
:placeholder="vc.i18n('必填,请填写申请人电话','withholdIntegral')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='银行账户' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.bankNum" type="text"
:placeholder="vc.i18n('必填,请填写银行账户','withholdIntegral')" class="form-control">
</div>
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='账号名称' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<input v-model="withholdIntegralInfo.bankNumName" type="text"
:placeholder="vc.i18n('必填,请填写账号名称','withholdIntegral')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='开户行' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<textarea v-model="withholdIntegralInfo.bankName"
:placeholder="vc.i18n('必填,请填写开户行','withholdIntegral')" class="form-control"></textarea>
</div>
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name='申请说明' namespace='withholdIntegral'></vc:i18n>
</label>
<div class="col-sm-4">
<textarea v-model="withholdIntegralInfo.remark"
:placeholder="vc.i18n('必填,请填写申请说明','withholdIntegral')" class="form-control"></textarea>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="withholdIntegral()">
<vc:i18n name="提交" namespace="withholdIntegral"></vc:i18n>
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
data-dismiss="modal">
<vc:i18n name="取消" namespace="withholdIntegral"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
</div>
</div>