|
@@ -33,7 +33,11 @@
|
|
|
prop="name"
|
|
|
:label-width="style.label_width_tab1"
|
|
|
>
|
|
|
- <el-input v-model="form.name" class="input"></el-input>
|
|
|
+ <el-input
|
|
|
+ v-model="form.name"
|
|
|
+ class="input"
|
|
|
+ maxlength="20"
|
|
|
+ ></el-input>
|
|
|
</el-form-item>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
@@ -97,6 +101,7 @@
|
|
|
:label-width="style.label_width_tab2"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.duration"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -113,6 +118,7 @@
|
|
|
:label-width="style.label_width_tab2"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.examTimes"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -129,6 +135,7 @@
|
|
|
:label-width="style.label_width_tab2"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.properties.FREEZE_TIME"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -145,6 +152,7 @@
|
|
|
:label-width="style.label_width_tab2"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.properties.EXAM_RECONNECT_TIME"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -206,6 +214,7 @@
|
|
|
:label-width="style.label_width_tab3"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
:disabled="!form.properties.SINGLE_EDIT"
|
|
|
v-model="form.properties.SINGLE_ANSWER_REMARK"
|
|
|
auto-complete="off"
|
|
@@ -226,6 +235,7 @@
|
|
|
:label-width="style.label_width_tab3"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
:disabled="!form.properties.MUTIPLE_EDIT"
|
|
|
v-model="form.properties.MUTIPLE_ANSWER_REMARK"
|
|
|
auto-complete="off"
|
|
@@ -246,6 +256,7 @@
|
|
|
:label-width="style.label_width_tab3"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
:disabled="!form.properties.BOOL_EDIT"
|
|
|
v-model="form.properties.BOOL_ANSWER_REMARK"
|
|
|
class="input"
|
|
@@ -266,6 +277,7 @@
|
|
|
:label-width="style.label_width_tab3"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
:disabled="!form.properties.FILL_BLANK_EDIT"
|
|
|
v-model="form.properties.FILL_BLANK_REMARK"
|
|
|
class="input"
|
|
@@ -332,6 +344,7 @@
|
|
|
:label-width="style.label_width_tab4"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.properties.SNAPSHOT_INTERVAL"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -348,6 +361,7 @@
|
|
|
:label-width="style.label_width_tab4"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.trim.number="form.properties.WARN_THRESHOLD"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -364,6 +378,7 @@
|
|
|
:label-width="style.label_width_tab4"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model.number="form.properties.LIVING_WARN_THRESHOLD"
|
|
|
auto-complete="off"
|
|
|
class="input"
|
|
@@ -410,6 +425,7 @@
|
|
|
:label-width="style.label_width_tab6"
|
|
|
>
|
|
|
<el-input
|
|
|
+ maxlength="20"
|
|
|
v-model="form.properties.IP_ADDRESSES"
|
|
|
class="input"
|
|
|
></el-input>
|