Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/property/addAttendanceMachine/addAttendanceMachine.html
2025-12-09 20:22:03 +08:00

104 lines
6.5 KiB
HTML
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 id="addAttendanceMachineModel" 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="addAttendanceMachine"></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="addAttendanceMachine"></vc:i18n></span>
</label>
<div class="col-sm-10">
<input v-model="addAttendanceMachineInfo.machineName" type="text"
:placeholder="vc.i18n('必填,请填写考勤机名称','addAttendanceMachine')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="考勤机编码" namespace="addAttendanceMachine"></vc:i18n></span>
</label>
<div class="col-sm-10">
<input v-model="addAttendanceMachineInfo.machineCode" type="text"
:placeholder="vc.i18n('必填,请填写考勤机编码','addAttendanceMachine')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="版本号" namespace="addAttendanceMachine"></vc:i18n></span>
</label>
<div class="col-sm-10">
<input v-model="addAttendanceMachineInfo.machineVersion" type="text"
:placeholder="vc.i18n('必填,请填写版本号','addAttendanceMachine')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="考勤班组" namespace="addAttendanceMachine"></vc:i18n></span>
</label>
<div class="col-sm-10">
<select class="custom-select" v-model="addAttendanceMachineInfo.locationTypeCd">
<option selected disabled value="">
{{vc.i18n('必填,请选择考勤班组','addAttendanceMachine')}}
</option>
<option v-for="item in addAttendanceMachineInfo.attendanceClassess"
:value="item.classesId">
{{item.classesName}}
</option>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="考勤机IP" namespace="addAttendanceMachine"></vc:i18n></span>
</label>
<div class="col-sm-10">
<input v-model="addAttendanceMachineInfo.machineIp" type="text"
:placeholder="vc.i18n('选填请填写考勤机IP,如 192.168.1.10:8090','addAttendanceMachine')"
class="form-control">
</div>
</div>
<div v-for="(item,index) in addAttendanceMachineInfo.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 class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveMachineInfo()">
<i class="fa fa-check"></i>&nbsp;保存
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
data-dismiss="modal">
<span><vc:i18n name="取消" namespace="addAttendanceMachine"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>