|
@@ -136,10 +136,9 @@
|
|
|
<el-tab-pane label="显示设置" name="tab3">
|
|
|
<el-row>
|
|
|
<el-form-item label="考前说明" label-width="110px">
|
|
|
- <el-input
|
|
|
+ <ckeditor
|
|
|
v-model="form.properties.BEFORE_EXAM_REMARK"
|
|
|
- auto-complete="off"
|
|
|
- ></el-input>
|
|
|
+ ></ckeditor>
|
|
|
</el-form-item>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
@@ -173,6 +172,7 @@
|
|
|
<script>
|
|
|
import { EXAM_TYPE, EXAM_WORK_API } from "@/constants/constants.js";
|
|
|
import moment from "moment";
|
|
|
+import ckeditor from "@/components/ckeditor.vue";
|
|
|
|
|
|
let _this = null;
|
|
|
|
|
@@ -243,6 +243,9 @@ let validateExamReconnectTime = (rule, value, callback) => {
|
|
|
};
|
|
|
|
|
|
export default {
|
|
|
+ components: {
|
|
|
+ ckeditor
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
activeName: "tab1",
|