MicroCommunityWeb/public/components/common/editCommunityArea/editCommunityArea.html
2023-01-10 01:48:59 +08:00

131 lines
7.5 KiB
HTML
Executable File

<div id="editCommunityAreaModel" 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 ">
<span>
<vc:i18n name="修改小区" namespace="editCommunityArea"></vc:i18n>
</span>
</h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="小区名称" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.name" type="text" readonly="readonly"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="小区地址" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.address" type="text" readonly="readonly"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="小区地标" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.nearbyLandmarks" type="text"
readonly="readonly" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="城市编码" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.cityCode" type="text" readonly="readonly"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="地区" namespace="editCommunityArea"></vc:i18n>
</span>X坐标
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.mapX" type="text" readonly="readonly"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="地区" namespace="editCommunityArea"></vc:i18n>
</span>Y坐标
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.mapY" type="text" readonly="readonly"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="客服电话" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.tel" type="text"
:placeholder="vc.i18n('必填,请填写客服电话','editCommunityArea')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="客服二维码" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<vc:create path="frame/uploadImageUrl" callBackListener="editCommunityArea"
callBackFunction="notifyUploadImage" imageCount="1"
namespace="editCommunityArea">
</vc:create>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span>
<vc:i18n name="小区面积" namespace="editCommunityArea"></vc:i18n>
</span>
</label>
<div class="col-sm-10">
<input v-model="editCommunityAreaInfo.communityArea" type="text"
:placeholder="vc.i18n('必填,请填写小区面积','editCommunityArea')" class="form-control">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button"
v-on:click="editCommunityArea()">
<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>