|
@@ -7,7 +7,7 @@
|
|
|
:inline="true"
|
|
|
:model="formSearch"
|
|
|
label-position="right"
|
|
|
- label-width="110px"
|
|
|
+ label-width="100px"
|
|
|
>
|
|
|
<el-form-item label="评卷工作名称" class="pull-left">
|
|
|
<el-input
|
|
@@ -112,7 +112,6 @@
|
|
|
type="danger"
|
|
|
size="mini"
|
|
|
icon="el-icon-delete"
|
|
|
- plain
|
|
|
>删除</el-button
|
|
|
>
|
|
|
</el-dropdown-item>
|
|
@@ -151,73 +150,59 @@
|
|
|
v-loading="loading"
|
|
|
element-loading-text="拼命加载中"
|
|
|
:visible.sync="markWorkDialog"
|
|
|
+ width="500px"
|
|
|
>
|
|
|
<el-form
|
|
|
:model="formMarkWork"
|
|
|
+ label-width="120px"
|
|
|
:rules="rules"
|
|
|
ref="formMarkWork"
|
|
|
- label-position="right"
|
|
|
- label-width="110px"
|
|
|
+ inline
|
|
|
inline-message
|
|
|
>
|
|
|
- <el-row>
|
|
|
- <el-col :xs="12" :sm="12" :md="12" :lg="12">
|
|
|
- <el-form-item label="评卷工作名称" prop="name">
|
|
|
- <el-input
|
|
|
- placeholder="评卷工作名称"
|
|
|
- v-model="formMarkWork.name"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :xs="12" :sm="12" :md="12" :lg="12">
|
|
|
- <el-form-item label="考试批次" prop="examId">
|
|
|
- <el-select
|
|
|
- v-if="!examDisabled"
|
|
|
- @change="update"
|
|
|
- v-model="formMarkWork.examId"
|
|
|
- filterable
|
|
|
- placeholder="考试批次"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in examSelect"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
- :key="item.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- <el-input
|
|
|
- v-if="examDisabled"
|
|
|
- :disabled="true"
|
|
|
- v-model="formMarkWork.examName"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :xs="20" :sm="20" :md="20" :lg="20">
|
|
|
- <el-form-item label="备注" prop="remark">
|
|
|
- <el-input
|
|
|
- type="textarea"
|
|
|
- :rows="5"
|
|
|
- placeholder="备注"
|
|
|
- v-model="formMarkWork.remark"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row style="margin-top:10px;">
|
|
|
- <el-col>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" @click="saveMarkWork"
|
|
|
- >保存</el-button
|
|
|
- >
|
|
|
- <el-button @click="closeMarkWork">取消</el-button>
|
|
|
- <el-button @click="resetForm">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
+ <el-form-item label="评卷工作名称" prop="name">
|
|
|
+ <el-input
|
|
|
+ placeholder="评卷工作名称"
|
|
|
+ v-model="formMarkWork.name"
|
|
|
+ style="width: 200px"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="考试批次" prop="examId">
|
|
|
+ <el-select
|
|
|
+ v-if="!examDisabled"
|
|
|
+ @change="update"
|
|
|
+ v-model="formMarkWork.examId"
|
|
|
+ filterable
|
|
|
+ placeholder="考试批次"
|
|
|
+ style="width: 200px"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in examSelect"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ :key="item.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-input
|
|
|
+ v-if="examDisabled"
|
|
|
+ :disabled="true"
|
|
|
+ v-model="formMarkWork.examName"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input
|
|
|
+ style="width: 200px"
|
|
|
+ type="textarea"
|
|
|
+ :rows="3"
|
|
|
+ placeholder="备注"
|
|
|
+ v-model="formMarkWork.remark"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item style="margin-top:10px;margin-left: 100px">
|
|
|
+ <el-button type="primary" @click="saveMarkWork">保存</el-button>
|
|
|
+ <el-button @click="closeMarkWork">取消</el-button>
|
|
|
+ <el-button @click="resetForm">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</el-dialog>
|
|
|
</div>
|