MicroCommunityWeb/public/components/property/addProxyFee/addProxyFee.html
sangzhigang a2ad31d6fa 费用管理房屋收费修改如下:
1.业主名称、业主身份证号、房屋编号选框去空处理
  2.新增重置按钮
  3.列表手机号隐藏中间四位数字,身份证号隐藏后四位
  4.列表页面居中处理
  5.在表头加上单位,修改房屋显示格式
  6.解决房屋收费批量创建页面时间插件多次点击失去焦点问题
  7.查看费用中水电抄表和创建费用时间插件防止失去焦点处理
  8.缴费历史时间查询修改;加了重置按钮;列表居中处理;并在表    头加上单位;开始时间和结束时间选框日期插件只能选择年月日,  且终止时间不能大于起始时间
  9.费用变更修改成功后加了操作成功提示
2020-12-03 16:29:37 +08:00

87 lines
5.6 KiB
HTML

<div id="addProxyFeeModel" 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 ">代收费用</h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">费用类型</label>
<div class="col-sm-10">
<select class="custom-select" v-model="addProxyFeeInfo.feeTypeCd"
@change="_changeProxyFeeTypeCd(addProxyFeeInfo.feeTypeCd)">
<option selected disabled value="">必填,请选择费用类型</option>
<option value="888800010015">水费</option>
<option value="888800010016">电费</option>
<option value="888800010014">其他</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">收费项目</label>
<div class="col-sm-10">
<select class="custom-select" v-model="addProxyFeeInfo.configId"
@change="_changeProxyFeeConfig()">
<option selected disabled value="">必填,请选择收费项目</option>
<option v-for="(item,index) in addProxyFeeInfo.feeConfigs" :key="index"
v-bind:value="item.configId">{{item.feeName}}
</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">收费对象</label>
<div class="col-sm-10">
<input v-model="addProxyFeeInfo.ownerName" type="text" disabled="disabled"
placeholder="必填,请填写房屋" class="form-control ">
</div>
</div>
<div v-if="addProxyFeeInfo.feeTypeCd != '888800010014'">
<div class="form-group row">
<label class="col-sm-2 col-form-label">金额</label>
<div class="col-sm-10">
<input v-model="addProxyFeeInfo.amount" type="text" placeholder="必填,请填写金额"
class="form-control " @blur="_changeAmount()">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">用量</label>
<div class="col-sm-10">
<input v-model="addProxyFeeInfo.consumption" @blur="_changeConsumption()"
type="text" placeholder="必填,请填写用量" class="form-control">
</div>
</div>
</div>
<div v-else>
<div class="form-group row">
<label class="col-sm-2 col-form-label">个数</label>
<div class="col-sm-10">
<input v-model="addProxyFeeInfo.consumption" @blur="_changeConsumption()"
type="text" placeholder="必填,请填写用量" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">金额</label>
<div class="col-sm-10">
<input v-model="addProxyFeeInfo.amount" disabled="disabled" type="text"
placeholder="必填,请填写金额" class="form-control " @blur="_changeAmount()">
</div>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveProxyInfo()">
<i class="fa fa-check"></i>&nbsp;保存
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
data-dismiss="modal">
<i class="fa fa-times"></i>&nbsp;取消
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>