MicroCommunityWeb/public/pages/fee/roomOweFeeCallable/roomOweFeeCallable.html
2023-09-04 00:50:33 +08:00

56 lines
3.1 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="催缴欠费" namespace="roomOweFeeCallable"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-12">
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name="催缴方式" namespace="roomOweFeeCallable"></vc:i18n>
</label>
<div class="col-sm-8">
<select class="custom-select" v-model="roomOweFeeCallableInfo.callableWay">
<option selected disabled value="">{{vc.i18n('请选择催缴方式','oweFeeCallable')}}</option>
<option value="WECHAT">微信模板消息</option>
<option value="SMS">短信</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name="催缴费用" namespace="roomOweFeeCallable"></vc:i18n>
</label>
<div class="col-sm-8">
<span class="margin-right" v-for="(item,index) in roomOweFeeCallableInfo.fees">
<input type="checkbox" class="i-checks checkItem" v-bind:value="item.feeId" v-model="roomOweFeeCallableInfo.feeIds"> {{item.feeName}}
</span>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label text-right">
<vc:i18n name="催缴说明" namespace="roomOweFeeCallable"></vc:i18n>
</label>
<div class="col-sm-8">
<textarea class="form-control" rows="5" v-model="roomOweFeeCallableInfo.remark" placeholder="请输入备注"></textarea>
</div>
</div>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="_saveOweFeeCallable()">
<i class="fa fa-check"></i>&nbsp;提交
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" @click="vc.goBack()">
<vc:i18n name="取消" namespace="roomOweFeeCallable"></vc:i18n>
</button>
</div>
</div>
</div>
</div>