|
@@ -18,6 +18,7 @@
|
|
<el-input
|
|
<el-input
|
|
v-model.trim="modalForm.name"
|
|
v-model.trim="modalForm.name"
|
|
placeholder="请输入版头名称"
|
|
placeholder="请输入版头名称"
|
|
|
|
+ maxlength="255"
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
clearable
|
|
clearable
|
|
></el-input>
|
|
></el-input>
|
|
@@ -25,6 +26,7 @@
|
|
<el-form-item prop="title" label="题卡标题:">
|
|
<el-form-item prop="title" label="题卡标题:">
|
|
<el-input
|
|
<el-input
|
|
v-model="modalForm.title"
|
|
v-model="modalForm.title"
|
|
|
|
+ maxlength="255"
|
|
type="textarea"
|
|
type="textarea"
|
|
:rows="2"
|
|
:rows="2"
|
|
></el-input>
|
|
></el-input>
|
|
@@ -32,6 +34,7 @@
|
|
<el-form-item prop="attention" label="注意事项:">
|
|
<el-form-item prop="attention" label="注意事项:">
|
|
<el-input
|
|
<el-input
|
|
v-model="modalForm.attention"
|
|
v-model="modalForm.attention"
|
|
|
|
+ maxlength="1000"
|
|
type="textarea"
|
|
type="textarea"
|
|
:rows="4"
|
|
:rows="4"
|
|
></el-input>
|
|
></el-input>
|
|
@@ -42,6 +45,7 @@
|
|
<el-form-item prop="objectiveAttention" label="客观题注意事项:">
|
|
<el-form-item prop="objectiveAttention" label="客观题注意事项:">
|
|
<el-input
|
|
<el-input
|
|
v-model="modalForm.objectiveAttention"
|
|
v-model="modalForm.objectiveAttention"
|
|
|
|
+ maxlength="1000"
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
clearable
|
|
clearable
|
|
></el-input>
|
|
></el-input>
|
|
@@ -49,6 +53,7 @@
|
|
<el-form-item prop="subjectiveAttention" label="主观题注意事项:">
|
|
<el-form-item prop="subjectiveAttention" label="主观题注意事项:">
|
|
<el-input
|
|
<el-input
|
|
v-model="modalForm.subjectiveAttention"
|
|
v-model="modalForm.subjectiveAttention"
|
|
|
|
+ maxlength="1000"
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
clearable
|
|
clearable
|
|
></el-input>
|
|
></el-input>
|