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

72 lines
3.4 KiB
HTML

<div id="addCouponRuleFeeModel" 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 "><span>
<vc:i18n name="缴费赠送" namespace="addCouponRuleFee"></vc:i18n>
</span></h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span>
<vc:i18n name='费用' namespace='addCouponRuleFee'></vc:i18n>
</span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="addCouponRuleFeeInfo.feeConfigId">
<option selected disabled value="">{{vc.i18n('必填,请选择费用','addCouponRuleFee')}}
</option>
<option :value="item.configId" v-for="(item,index) in addCouponRuleFeeInfo.feeConfigs">
{{item.feeName}}</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span>
<vc:i18n name='缴费开始时间' namespace='addCouponRuleFee'></vc:i18n>
</span></label>
<div class="col-sm-10">
<input v-model="addCouponRuleFeeInfo.payStartTime" type="text"
:placeholder="vc.i18n('必填,请填写缴费开始时间','addCouponRuleFee')" class="form-control addPayStartTime">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span>
<vc:i18n name='缴费结束时间' namespace='addCouponRuleFee'></vc:i18n>
</span></label>
<div class="col-sm-10">
<input v-model="addCouponRuleFeeInfo.payEndTime" type="text"
:placeholder="vc.i18n('必填,请填写缴费结束时间','addCouponRuleFee')" class="form-control addPayEndTime">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span>
<vc:i18n name='缴费月' namespace='addCouponRuleFee'></vc:i18n>
</span></label>
<div class="col-sm-10">
<input v-model="addCouponRuleFeeInfo.payMonth" type="number"
:placeholder="vc.i18n('必填,请填写缴费月','addCouponRuleFee')" class="form-control">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveCouponRuleFeeInfo()"><i
class="fa fa-check"></i>&nbsp;
<span>
<vc:i18n name="保存"></vc:i18n>
</span>
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
data-dismiss="modal">
<span>
<vc:i18n name="取消"></vc:i18n>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>