mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
43 lines
2.6 KiB
HTML
43 lines
2.6 KiB
HTML
<div id="addPropertyCommunityModel" class="modal fade" tabindex="-1" 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="selectpicker" id="communityCommunityIds" v-model="addPropertyCommunityInfo.communityIds" multiple>
|
|
<option v-for="(item,index) in addPropertyCommunityInfo.communitys" :key="index"
|
|
:value="item.communityId">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row" v-if="addPropertyCommunityInfo.communityIds && addPropertyCommunityInfo.communityIds.length>0">
|
|
<label class="col-sm-2 col-form-label">功能</label>
|
|
<div class="col-sm-10">
|
|
<label>
|
|
<input type="checkbox" v-model="addPropertyCommunityInfo.isAll" @change="changeAllCommunity()" >全部
|
|
</label>
|
|
<label class="margin-left" v-for="(item,index) in addPropertyCommunityInfo.menuGroups">
|
|
<input type="checkbox" v-model="addPropertyCommunityInfo.groupIds" @change="changeItemCommunity()" :value="item.gId"> {{item.name}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="savePropertyCommunityInfo()"><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> |