|
@@ -1,6 +1,8 @@
|
|
|
<template>
|
|
|
<div id="insertApp">
|
|
|
- <LinkTitlesCustom :currentPaths="['精确结构创建', '创建大题']" />
|
|
|
+ <LinkTitlesCustom
|
|
|
+ :currentPaths="['基础信息 ', '精确结构预设', '精确结构创建']"
|
|
|
+ />
|
|
|
<section class="content">
|
|
|
<!-- 正文信息 -->
|
|
|
<div class="box-body">
|
|
@@ -10,10 +12,10 @@
|
|
|
ref="paperStruct"
|
|
|
:rules="rules2"
|
|
|
label-position="right"
|
|
|
- label-width="90px"
|
|
|
+ label-width="78px"
|
|
|
>
|
|
|
<el-row>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="结构名称" prop="name">
|
|
|
<el-input
|
|
|
class="search_width"
|
|
@@ -23,7 +25,7 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="总分" prop="score">
|
|
|
<el-input
|
|
|
class="search_width"
|
|
@@ -33,7 +35,7 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="制定课程">
|
|
|
<el-select
|
|
|
class="search_width"
|
|
@@ -57,39 +59,18 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
- <div class="search_down">
|
|
|
- <el-button
|
|
|
- size="small"
|
|
|
- type="primary"
|
|
|
- :disabled="button_disabled"
|
|
|
- @click="savePaperStruct()"
|
|
|
- >保 存</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="small"
|
|
|
- type="primary"
|
|
|
- :disabled="button_disabled"
|
|
|
- @click="insert()"
|
|
|
- ><i class="el-icon-plus"></i> 新增大题</el-button
|
|
|
- >
|
|
|
- <el-button size="small" type="primary" @click="back"
|
|
|
- ><i class="el-icon-arrow-left"></i> 返 回</el-button
|
|
|
- >
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
- <el-form-item label="考试说明">
|
|
|
- <div style="width:550px;">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="考试说明" class="pull-left">
|
|
|
<ckeditor
|
|
|
:display="display"
|
|
|
:width="wValue"
|
|
|
:height="hValue"
|
|
|
v-model="paperStruct.examRemark"
|
|
|
></ckeditor>
|
|
|
- </div>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
|
|
@@ -159,8 +140,8 @@
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 页面列表 -->
|
|
|
- <div style="margin-top:10px"></div>
|
|
|
- <el-table :data="paperDetailStructs" border>
|
|
|
+ <div class="margin_top_10"></div>
|
|
|
+ <el-table :data="paperDetailStructs" border style="width:88.5%">
|
|
|
<el-table-column label="大题名称">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.name }}</span>
|
|
@@ -202,6 +183,25 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
+ <div class="search_down margin_top_10">
|
|
|
+ <el-button
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ :disabled="button_disabled"
|
|
|
+ @click="savePaperStruct()"
|
|
|
+ >保存试卷结构</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ :disabled="button_disabled"
|
|
|
+ @click="insert()"
|
|
|
+ ><i class="el-icon-plus"></i> 新增大题</el-button
|
|
|
+ >
|
|
|
+ <el-button size="small" type="primary" @click="back"
|
|
|
+ ><i class="el-icon-arrow-left"></i> 返 回</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
</section>
|
|
|
</div>
|
|
|
</template>
|