MicroCommunityWeb/public/components/property/viewReportInfoBackCityInfo/viewReportInfoBackCityInfo.html
2021-08-06 12:54:06 +08:00

79 lines
3.3 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>返省上报信息</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" v-if="viewReportInfoBackCityInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectReportInfoBackCityInfoModel()">
<i class="glyphicon glyphicon-search"></i> 选择返省上报</button>
<button type="button" v-if="viewReportInfoBackCityInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddReportInfoBackCityInfoModel()">
<i class="glyphicon glyphicon-plus"></i> 添加返省上报</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >姓名:</label>
<label class="">{{viewReportInfoBackCityInfo.name}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >身份证:</label>
<label class="">{{viewReportInfoBackCityInfo.idCard}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >手机号:</label>
<label class="">{{viewReportInfoBackCityInfo.tel}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >来源地:</label>
<label class="">{{viewReportInfoBackCityInfo.source}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >城市名称:</label>
<label class="">{{viewReportInfoBackCityInfo.sourceCityName}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >返回时间:</label>
<label class="">{{viewReportInfoBackCityInfo.backTime}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >备注:</label>
<label class="">{{viewReportInfoBackCityInfo.remark}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/addReportInfoBackCity"
callBackListener="viewReportInfoBackCityInfo"
callBackFunction="chooseReportInfoBackCity"
></vc:create>
<vc:create path="property/chooseReportInfoBackCity"
emitChooseReportInfoBackCity="viewReportInfoBackCityInfo"
emitLoadData="viewReportInfoBackCityInfo"
></vc:create>
</div>