56 lines
3.3 KiB
HTML
56 lines
3.3 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('请选择催缴方式','roomOweFeeCallable')}}</option>
|
|
<option value="WECHAT"><vc:i18n name="微信模板消息" namespace="roomOweFeeCallable"></vc:i18n></option>
|
|
<option value="SMS"><vc:i18n name="短信" namespace="roomOweFeeCallable"></vc:i18n></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> <vc:i18n name="提交" namespace="roomOweFeeCallable"></vc:i18n>
|
|
</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> |