83 lines
4.6 KiB
HTML
83 lines
4.6 KiB
HTML
<div id="editCommunityModel" 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 ">
|
|
<vc:i18n name="修改小区" namespace="editCommunity"></vc:i18n>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name="小区名称" namespace="editCommunity"></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editCommunityInfo.name" type="text"
|
|
:placeholder="vc.i18n('必填,请填写小区名称','editCommunity')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name="小区地址" namespace="editCommunity"></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editCommunityInfo.address" type="text"
|
|
:placeholder="vc.i18n('必填,请填写小区地址','editCommunity')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name="客服电话" namespace="editCommunity"></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editCommunityInfo.tel" type="text"
|
|
:placeholder="vc.i18n('必填,请填写客服电话','editCommunity')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name="外部编码" namespace="editCommunity"></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editCommunityInfo.extCommunityId" type="text"
|
|
:placeholder="vc.i18n('可选,请填写外部编码','editCommunity')" class="form-control">
|
|
</div>
|
|
</div>
|
|
|
|
<div v-for="(item,index) in editCommunityInfo.attrs">
|
|
<div class="form-group row" v-if="item.specType == '2233'">
|
|
<label class="col-sm-2 col-form-label">{{item.specName}}</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="item.value" type="text" :placeholder="item.specHoldplace"
|
|
class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row" v-if="item.specType == '3344'">
|
|
<label class="col-sm-2 col-form-label">{{item.specName}}</label>
|
|
<div class="col-sm-10">
|
|
<select class="custom-select" v-model="item.value">
|
|
<option selected disabled value="">{{item.specHoldplace}}</option>
|
|
<option v-for="value in item.values" :label="value.valueName" :value="value.value">
|
|
{{item.valueName}}
|
|
</option>
|
|
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div >
|
|
<vc:create path="3d/editMap"></vc:create>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="editCommunity()"><i
|
|
class="fa fa-check"></i> 保存</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal"><span>
|
|
<vc:i18n name="取消" namespace="editCommunity"></vc:i18n>
|
|
</span></button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |