Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/ai/addDispatchFace/addDispatchFace.html
2025-12-09 20:22:03 +08:00

60 lines
2.8 KiB
HTML

<div id="addDispatchFaceModel" 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="addDispatchFace"></vc:i18n>
</h3>
<div class="ibox-content">
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='人员名称' namespace='addDispatchFace'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addDispatchFaceInfo.personName" type="text"
:placeholder="vc.i18n('必填,请填写人员名称','addDispatchFace')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='人脸地址' namespace='addDispatchFace'></vc:i18n>
</label>
<div class="col-sm-10">
<vc:create path="frame/uploadImageUrl" callBackListener="addDispatchFace" callBackFunction="notifyUploadImage"
imageCount="1" namespace="addDispatchFace">
</vc:create>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='开始时间' namespace='addDispatchFace'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addDispatchFaceInfo.startTime" type="text" readonly
:placeholder="vc.i18n('必填,请填写开始时间','addDispatchFace')" class="form-control addStartTime">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='结束时间' namespace='addDispatchFace'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addDispatchFaceInfo.endTime" type="text" readonly
:placeholder="vc.i18n('必填,请填写结束时间','addDispatchFace')" class="form-control addEndTime">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="savePersonFaceInfo()">
<vc:i18n name="保存"></vc:i18n>
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
<vc:i18n name="取消"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
</div>
</div>