mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
113 lines
7.8 KiB
HTML
113 lines
7.8 KiB
HTML
<div id="roomCreateFeeAddModel" 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="roomCreateFeeAddInfo.locationTypeCd"
|
|
v-if="roomCreateFeeAddInfo.isMore == true">
|
|
<option selected disabled value="">必填,请选择收费范围</option>
|
|
<option value="1000">小区</option>
|
|
<option value="4000">楼栋</option>
|
|
<option value="2000">单元</option>
|
|
<option value="3000">房屋</option>
|
|
</select>
|
|
<input v-model="roomCreateFeeAddInfo.locationTypeCdName"
|
|
v-if="roomCreateFeeAddInfo.isMore == false" disabled="disabled" type="text"
|
|
placeholder="必填,请填写收费范围" class="form-control">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group row"
|
|
v-show="roomCreateFeeAddInfo.locationTypeCd == '2000' || roomCreateFeeAddInfo.locationTypeCd == '3000' ||roomCreateFeeAddInfo.locationTypeCd == '4000' ">
|
|
<label class="col-sm-2 col-form-label">楼栋</label>
|
|
<div class="col-sm-10">
|
|
<vc:create path="property/floorSelect2" parentModal="roomCreateFeeAddModel"
|
|
namespace="roomCreateFeeAdd"></vc:create>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row"
|
|
v-show="roomCreateFeeAddInfo.locationTypeCd == '2000' || roomCreateFeeAddInfo.locationTypeCd == '3000' ">
|
|
<label class="col-sm-2 col-form-label">单元</label>
|
|
<div class="col-sm-10">
|
|
<vc:create path="property/unitSelect2" parentModal="roomCreateFeeAddModel"
|
|
callBackListener="roomCreateFeeAdd" callBackFunction="notify"
|
|
namespace="roomCreateFeeAdd"></vc:create>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row" v-show="roomCreateFeeAddInfo.locationTypeCd == '3000' ">
|
|
<label class="col-sm-2 col-form-label">房屋</label>
|
|
<div class="col-sm-10">
|
|
<vc:create path="property/roomSelect2" parentModal="roomCreateFeeAddModel"
|
|
callBackListener="roomCreateFeeAdd" callBackFunction="notify"
|
|
namespace="roomCreateFeeAdd"></vc:create>
|
|
</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="roomCreateFeeAddInfo.feeTypeCd"
|
|
@change="_changeFeeTypeCdX(roomCreateFeeAddInfo.feeTypeCd)">
|
|
<option selected disabled value="">必填,请选择费用类型</option>
|
|
<option v-for="(item,index) in roomCreateFeeAddInfo.feeTypeCds" :key="index"
|
|
v-bind:value="item.statusCd" v-if="item.statusCd !='888800010008'">
|
|
{{item.name}}
|
|
</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="roomCreateFeeAddInfo.configId">
|
|
<option selected disabled value="">必填,请选择收费项目</option>
|
|
<option v-for="(item,index) in roomCreateFeeAddInfo.feeConfigs" :key="index"
|
|
v-bind:value="item.configId">{{item.feeName}}
|
|
</option>
|
|
</select></div>
|
|
</div>
|
|
|
|
<div class="form-group row" v-if="roomCreateFeeAddInfo.isMore == true">
|
|
<label class="col-sm-2 col-form-label">房屋状态</label>
|
|
<div class="col-sm-10">
|
|
<div class="checkbox custom-control-inline" >
|
|
<label><input type="checkbox" v-model="roomCreateFeeAddInfo.roomState" value="2001">已入住</label>
|
|
</div>
|
|
<div class="checkbox custom-control-inline">
|
|
<label><input type="checkbox" v-model="roomCreateFeeAddInfo.roomState" value="2003">已交房</label>
|
|
</div>
|
|
<div class="checkbox custom-control-inline">
|
|
<label><input type="checkbox" v-model="roomCreateFeeAddInfo.roomState" value="2005">已装修</label>
|
|
</div>
|
|
<div class="checkbox custom-control-inline">
|
|
<label><input type="checkbox" v-model="roomCreateFeeAddInfo.roomState" value="2004">未入住</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">计费起始时间</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="roomCreateFeeAddInfo.startTime" type="text" placeholder="必填,请填写计费起始时间"
|
|
class="form-control roomCreateFeeStartTime">
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button"
|
|
v-on:click="saveRoomCreateFeeInfo()"><i class="fa fa-check"></i> 提交
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal">取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |