MicroCommunityWeb/public/components/property/viewApplicationKeyInfo/viewApplicationKeyInfo.html
2022-04-22 00:24:24 +08:00

83 lines
4.5 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><vc:i18n name="钥匙申请信息" namespace="viewApplicationKeyInfo"></vc:i18n></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" v-if="viewApplicationKeyInfo.index != 2" class="btn btn-primary btn-sm"
style="margin-right:10px;" v-on:click="_openSelectApplicationKeyInfoModel()">
<i class="fa fa-search"></i> <vc:i18n name="选择钥匙申请" namespace="viewApplicationKeyInfo"></vc:i18n></button>
<button type="button" v-if="viewApplicationKeyInfo.index != 2" class="btn btn-primary btn-sm"
v-on:click="_openAddApplicationKeyInfoModel()">
<i class="fa fa-plus"></i> <vc:i18n name="添加钥匙申请" namespace="viewApplicationKeyInfo"></vc:i18n></button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="姓名" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.name}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="手机号" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.tel}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="用户类型" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.typeCd}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="性别" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.sex}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="年龄" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.age}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="身份证号" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.idCard}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="开始时间" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.startTime}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label"><vc:i18n name="结束时间" namespace="viewApplicationKeyInfo"></vc:i18n></label>
<label class="">{{viewApplicationKeyInfo.endTime}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/addApplicationKey" callBackListener="viewApplicationKeyInfo"
callBackFunction="chooseApplicationKey"></vc:create>
<vc:create path="property/chooseApplicationKey" emitChooseApplicationKey="viewApplicationKeyInfo"
emitLoadData="viewApplicationKeyInfo"></vc:create>
</div>