mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
81 lines
5.2 KiB
HTML
81 lines
5.2 KiB
HTML
<div id="addPropertyCompanyModel" 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">
|
|
<input v-model="addPropertyCompanyInfo.name" 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="addPropertyCompanyInfo.address" 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="addPropertyCompanyInfo.tel" 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="addPropertyCompanyInfo.corporation" 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="addPropertyCompanyInfo.foundingTime" type="text" placeholder="必填,请填写成立日期" class="form-control foundingTime">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">地标</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="addPropertyCompanyInfo.nearbyLandmarks" 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">
|
|
<select class="selectpicker" id="communityIds" v-model="addPropertyCompanyInfo.communityIds" multiple>
|
|
<option v-for="(item,index) in addPropertyCompanyInfo.communitys" :key="index"
|
|
:value="item.communityId">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row" v-if="addPropertyCompanyInfo.communityIds && addPropertyCompanyInfo.communityIds.length>0">
|
|
<label class="col-sm-2 col-form-label">功能</label>
|
|
<div class="col-sm-10">
|
|
<label>
|
|
<input type="checkbox" v-model="addPropertyCompanyInfo.isAll" @change="changeAll()" >全部
|
|
</label>
|
|
<label class="margin-left" v-for="(item,index) in addPropertyCompanyInfo.menuGroups">
|
|
<input type="checkbox" v-model="addPropertyCompanyInfo.groupIds" @change="changeItem()" :value="item.gId"> {{item.name}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
<span>温馨提示:默认账号为手机号;密码为手机号</span>
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="savePropertyCompanyInfo()"><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> |