厨房设置修改
This commit is contained in:
parent
f9d0ff49f9
commit
236490d4db
|
|
@ -8,7 +8,7 @@
|
|||
<div>
|
||||
<span class="item-label">健康证临期提醒设置:</span>
|
||||
<el-input
|
||||
v-model="staff_health_cert_left_day_reminder" style="width: 200px;margin-left: 50px;"
|
||||
v-model.number="staff_health_cert_left_day_reminder" style="width: 200px;margin-left: 50px;"
|
||||
auto-complete="off" placeholder="30" maxlength="9"
|
||||
></el-input>
|
||||
<span class="item-unit">天</span>
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
<div>
|
||||
<span class="item-label">晨检视频存储时长设置:</span>
|
||||
<el-input
|
||||
v-model="staff_morning_check_video_save_day" style="width: 200px;margin-left: 50px;"
|
||||
v-model.number="staff_morning_check_video_save_day" style="width: 200px;margin-left: 50px;"
|
||||
auto-complete="off" maxlength="9" placeholder="30"
|
||||
></el-input>
|
||||
<span class="item-unit">天</span>
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
<div>
|
||||
<span class="item-label">人员违规环境报警记录保存时长:</span>
|
||||
<el-input
|
||||
v-model="staff_illegal_warning_record_save_day" style="width: 200px;margin-left: 50px;"
|
||||
v-model.number="staff_illegal_warning_record_save_day" style="width: 200px;margin-left: 50px;"
|
||||
auto-complete="off" maxlength="9"
|
||||
placeholder="365"
|
||||
></el-input>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<div>
|
||||
<span class="item-label">人脸识别相似度:</span>
|
||||
<el-input
|
||||
v-model="camera_face_recognition_similarity" style="width: 200px;margin-left: 50px;"
|
||||
v-model.number="camera_face_recognition_similarity" style="width: 200px;margin-left: 50px;"
|
||||
auto-complete="off" maxlength="9"
|
||||
placeholder="70"
|
||||
></el-input>
|
||||
|
|
@ -53,13 +53,13 @@
|
|||
is-range v-model="scope.row.timeList" style="width: 100%;"
|
||||
range-separator="至" format="HH:mm:ss" value-format="HH:mm:ss"
|
||||
start-placeholder="00:00:00" end-placeholder="23:59:59"
|
||||
@change="changeOrderTimeList(scope.row)"
|
||||
@change="changeOrderTimeList(scope.row)" :clearable="false"
|
||||
placeholder="选择时间范围"></el-time-picker>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="抓拍频率" align="center" prop="frequency" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<el-input v-model="scope.row.frequency" style="width: 60%;" maxlength="9"
|
||||
<el-input v-model.number="scope.row.frequency" style="width: 60%;" maxlength="9"
|
||||
auto-complete="off" placeholder="60"></el-input><span class="item-unit">秒</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<div>
|
||||
<span class="item-label">环境监控统计频率:</span>
|
||||
<el-input
|
||||
v-model="env_monitor_statis_frequency" style="width: 200px;margin-left: 50px;"
|
||||
v-model.number="env_monitor_statis_frequency" style="width: 200px;margin-left: 50px;"
|
||||
auto-complete="off" maxlength="9"
|
||||
placeholder="60"
|
||||
></el-input>
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
<span class="item-label">{{item.measureName}}报警阈值:</span>
|
||||
<span>高于</span>
|
||||
<el-input
|
||||
v-model="item.measureMaxValue" style="width: 200px;margin-left: 20px;"
|
||||
v-model.number="item.measureMaxValue" style="width: 200px;margin-left: 20px;"
|
||||
auto-complete="off" maxlength="9"
|
||||
placeholder="22"
|
||||
></el-input>
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
<span class="item-label"></span>
|
||||
<span>低于</span>
|
||||
<el-input
|
||||
v-model="item.measureMinValue" style="width: 200px;margin-left: 20px;"
|
||||
v-model.number="item.measureMinValue" style="width: 200px;margin-left: 20px;"
|
||||
auto-complete="off" maxlength="9"
|
||||
placeholder="16"
|
||||
></el-input>
|
||||
|
|
|
|||
Loading…
Reference in New Issue