|
@@ -1,32 +1,239 @@
|
|
<template>
|
|
<template>
|
|
- <el-dialog
|
|
|
|
- :visible.sync="modalIsShow"
|
|
|
|
- title="文件夹管理"
|
|
|
|
- :modal="false"
|
|
|
|
- :close-on-click-modal="false"
|
|
|
|
- :close-on-press-escape="false"
|
|
|
|
- append-to-body
|
|
|
|
- fullscreen
|
|
|
|
- >
|
|
|
|
- <div class="folder-question">
|
|
|
|
- <div class="folder-list">
|
|
|
|
- <question-folder ref="QuestionFolder" is-edit></question-folder>
|
|
|
|
|
|
+ <div>
|
|
|
|
+ <el-dialog
|
|
|
|
+ :visible.sync="modalIsShow"
|
|
|
|
+ title="文件夹管理"
|
|
|
|
+ :modal="false"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ :close-on-press-escape="false"
|
|
|
|
+ append-to-body
|
|
|
|
+ fullscreen
|
|
|
|
+ >
|
|
|
|
+ <div class="folder-question">
|
|
|
|
+ <div class="folder-list">
|
|
|
|
+ <question-folder
|
|
|
|
+ ref="QuestionFolder"
|
|
|
|
+ is-edit
|
|
|
|
+ @selected="folderFilterSelected"
|
|
|
|
+ ></question-folder>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="question-list part-box">
|
|
|
|
+ <el-form class="part-filter-form" :inline="true" :model="filter">
|
|
|
|
+ <el-form-item label="课程名称">
|
|
|
|
+ <course-select v-model="filter.courseId" @change="courseChange">
|
|
|
|
+ </course-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="题型">
|
|
|
|
+ <question-type-select v-model="filter.quesStructType">
|
|
|
|
+ </question-type-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="属性名">
|
|
|
|
+ <property-select
|
|
|
|
+ v-model="filter.coursePropertyId"
|
|
|
|
+ :course-id="filter.courseId"
|
|
|
|
+ ></property-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="一级属性">
|
|
|
|
+ <property-sub-select
|
|
|
|
+ v-model="filter.firstPropertyId"
|
|
|
|
+ :parent-id="filter.coursePropertyId"
|
|
|
|
+ data-type="first"
|
|
|
|
+ ></property-sub-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="二级属性">
|
|
|
|
+ <property-sub-select
|
|
|
|
+ v-model="filter.secondPropertyId"
|
|
|
|
+ :parent-id="filter.firstPropertyId"
|
|
|
|
+ data-type="second"
|
|
|
|
+ ></property-sub-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="danger" @click="toPage(1)">查询</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+
|
|
|
|
+ <div class="part-box-action">
|
|
|
|
+ <div>
|
|
|
|
+ <el-button type="primary" plain @click="toBatchMove"
|
|
|
|
+ >移动</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button type="danger" plain @click="toBatchCopy"
|
|
|
|
+ >复制</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button type="danger" plain @click="toBatchDelete"
|
|
|
|
+ >删除</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ <div></div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <el-table
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ element-loading-text="加载中"
|
|
|
|
+ :data="questionList"
|
|
|
|
+ @selection-change="tableSelectChange"
|
|
|
|
+ >
|
|
|
|
+ <el-table-column
|
|
|
|
+ type="selection"
|
|
|
|
+ width="50"
|
|
|
|
+ align="center"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column label="题干">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <rich-text
|
|
|
|
+ class="row-question-body"
|
|
|
|
+ title="点击查看试题"
|
|
|
|
+ :text-json="scope.row.quesBody"
|
|
|
|
+ @click="toViewQuestion(scope.row)"
|
|
|
|
+ ></rich-text>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="课程" width="120">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ scope.row.course.name }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="题型" width="100">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ scope.row.questionType | questionType }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="难度" width="80"> </el-table-column>
|
|
|
|
+ <el-table-column label="使用量" width="80"> </el-table-column>
|
|
|
|
+ <el-table-column label="创建人" width="120">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ scope.row.creator }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="创建时间" width="170" prop="creationTime">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="操作" width="180" fixed="right">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div class="operate_left">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="primary"
|
|
|
|
+ plain
|
|
|
|
+ @click="toEditQuestion(scope.row)"
|
|
|
|
+ >编辑</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-dropdown>
|
|
|
|
+ <el-button type="primary" size="mini" plain>
|
|
|
|
+ 更多 <i class="el-icon-more el-icon--right"></i>
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-dropdown-menu slot="dropdown" class="action-dropdown">
|
|
|
|
+ <el-dropdown-item>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="primary"
|
|
|
|
+ plain
|
|
|
|
+ @click="toMoveQuestion(scope.row)"
|
|
|
|
+ >移动</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-dropdown-item>
|
|
|
|
+ <el-dropdown-item>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="primary"
|
|
|
|
+ plain
|
|
|
|
+ @click="toCopyQuestion(scope.row)"
|
|
|
|
+ >复制</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-dropdown-item>
|
|
|
|
+ <el-dropdown-item>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="danger"
|
|
|
|
+ plain
|
|
|
|
+ @click="toDeleteQuestion(scope.row)"
|
|
|
|
+ >删除</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-dropdown-item>
|
|
|
|
+ <el-dropdown-item>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="primary"
|
|
|
|
+ plain
|
|
|
|
+ @click="toLinkQuestion(scope.row)"
|
|
|
|
+ >关联属性</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-dropdown-item>
|
|
|
|
+ </el-dropdown-menu>
|
|
|
|
+ </el-dropdown>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <div class="part-page">
|
|
|
|
+ <el-pagination
|
|
|
|
+ :current-page="currentPage"
|
|
|
|
+ :page-size="pageSize"
|
|
|
|
+ :page-sizes="[10, 20, 50, 100, 200, 300]"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
+ :total="total"
|
|
|
|
+ @current-change="toPage"
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
+ >
|
|
|
|
+ </el-pagination>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- <div class="question-list"></div>
|
|
|
|
- </div>
|
|
|
|
- </el-dialog>
|
|
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
|
|
+ <!-- QuestionEditDialog -->
|
|
|
|
+ <question-edit-dialog
|
|
|
|
+ ref="QuestionEditDialog"
|
|
|
|
+ :question="curQuestion"
|
|
|
|
+ ></question-edit-dialog>
|
|
|
|
+ <!-- QuestionFolderDialog -->
|
|
|
|
+ <question-folder-dialog
|
|
|
|
+ ref="QuestionFolderDialog"
|
|
|
|
+ :is-edit="false"
|
|
|
|
+ @selected="moveQuestion"
|
|
|
|
+ ></question-folder-dialog>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import {
|
|
|
|
+ questionPageListApi,
|
|
|
|
+ deleteQuestionApi,
|
|
|
|
+ moveQuestionApi,
|
|
|
|
+ copyQuestionApi,
|
|
|
|
+} from "../api";
|
|
import QuestionFolder from "./QuestionFolder.vue";
|
|
import QuestionFolder from "./QuestionFolder.vue";
|
|
|
|
+import QuestionEditDialog from "./QuestionEditDialog.vue";
|
|
|
|
+import QuestionFolderDialog from "./QuestionFolderDialog.vue";
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
name: "FolderQuestionManageDialog",
|
|
name: "FolderQuestionManageDialog",
|
|
components: {
|
|
components: {
|
|
QuestionFolder,
|
|
QuestionFolder,
|
|
|
|
+ QuestionEditDialog,
|
|
|
|
+ QuestionFolderDialog,
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
modalIsShow: false,
|
|
modalIsShow: false,
|
|
|
|
+ filter: {
|
|
|
|
+ classifyId: null,
|
|
|
|
+ courseId: "",
|
|
|
|
+ quesStructType: "",
|
|
|
|
+ coursePropertyId: "",
|
|
|
|
+ firstPropertyId: "",
|
|
|
|
+ secondPropertyId: "",
|
|
|
|
+ },
|
|
|
|
+ questionList: [],
|
|
|
|
+ currentPage: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ total: 0,
|
|
|
|
+ loading: false,
|
|
|
|
+ curQuestion: {},
|
|
|
|
+ curMoveQids: [],
|
|
|
|
+ curFolder: {},
|
|
|
|
+ curMoveType: "",
|
|
|
|
+ selectedQuestionIds: [],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -36,6 +243,121 @@ export default {
|
|
open() {
|
|
open() {
|
|
this.modalIsShow = true;
|
|
this.modalIsShow = true;
|
|
},
|
|
},
|
|
|
|
+ toPage(page) {
|
|
|
|
+ this.currentPage = page;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ async getList() {
|
|
|
|
+ this.selectedQuestionIds = [];
|
|
|
|
+ this.loading = true;
|
|
|
|
+ const res = await questionPageListApi({
|
|
|
|
+ ...this.filter,
|
|
|
|
+ curPage: this.currentPage,
|
|
|
|
+ pageSize: this.pageSize,
|
|
|
|
+ }).catch(() => {});
|
|
|
|
+ this.loading = false;
|
|
|
|
+ if (!res) return;
|
|
|
|
+ this.questionList = res.data.content;
|
|
|
|
+ this.total = res.data.totalElements;
|
|
|
|
+ },
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ this.pageSize = val;
|
|
|
|
+ this.toPage(1);
|
|
|
|
+ },
|
|
|
|
+ tableSelectChange(selections) {
|
|
|
|
+ this.selectedQuestionIds = selections.map((item) => item.id);
|
|
|
|
+ },
|
|
|
|
+ folderFilterSelected(folder) {
|
|
|
|
+ this.filter.classifyId = folder && folder.id;
|
|
|
|
+ this.toPage(1);
|
|
|
|
+ },
|
|
|
|
+ toViewQuestion(row) {
|
|
|
|
+ console.log(row);
|
|
|
|
+ },
|
|
|
|
+ toEditQuestion(row) {
|
|
|
|
+ console.log(row);
|
|
|
|
+ // todo:编辑试题
|
|
|
|
+ this.curQuestion = row;
|
|
|
|
+ this.$refs.QuestionEditDialog.open();
|
|
|
|
+ },
|
|
|
|
+ toMoveQuestion(row) {
|
|
|
|
+ this.curQuestion = row;
|
|
|
|
+ this.curMoveQids = [row.id];
|
|
|
|
+ this.$refs.QuestionFolderDialog.open();
|
|
|
|
+ },
|
|
|
|
+ async moveQuestion(folder) {
|
|
|
|
+ let res = null;
|
|
|
|
+ res = await moveQuestionApi(this.curMoveQids, folder.id).catch(() => {});
|
|
|
|
+
|
|
|
|
+ if (!res) return;
|
|
|
|
+ this.$message.success("操作成功!");
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ async toCopyQuestion(ids) {
|
|
|
|
+ const res = await copyQuestionApi(ids).catch(() => {});
|
|
|
|
+ if (!res) return;
|
|
|
|
+ this.$message.success("操作成功!");
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ async toDeleteQuestion(row) {
|
|
|
|
+ const confirm = await this.$confirm("确认删除试题吗?", "提示", {
|
|
|
|
+ type: "warning",
|
|
|
|
+ }).catch(() => {});
|
|
|
|
+ if (confirm !== "confirm") return;
|
|
|
|
+
|
|
|
|
+ this.deleteQuestion([row.id]);
|
|
|
|
+ },
|
|
|
|
+ async deleteQuestion(ids) {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ const res = await deleteQuestionApi(ids).catch((error) => {
|
|
|
|
+ this.$notify({
|
|
|
|
+ message: error.response.data.desc,
|
|
|
|
+ type: "error",
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (!res) return;
|
|
|
|
+
|
|
|
|
+ this.$notify({
|
|
|
|
+ message: "删除成功",
|
|
|
|
+ type: "success",
|
|
|
|
+ });
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ toBatchMove() {
|
|
|
|
+ if (!this.selectedQuestionIds.length) {
|
|
|
|
+ this.$message.error("请选择试题!");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ this.curMoveQids = [...this.selectedQuestionIds];
|
|
|
|
+ },
|
|
|
|
+ toBatchCopy() {
|
|
|
|
+ if (!this.selectedQuestionIds.length) {
|
|
|
|
+ this.$message.error("请选择试题!");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ this.toCopyQuestion(this.selectedQuestionIds);
|
|
|
|
+ },
|
|
|
|
+ async toBatchDelete() {
|
|
|
|
+ if (!this.selectedQuestionIds.length) {
|
|
|
|
+ this.$message.error("请选择试题!");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ const confirm = await this.$confirm("确认删除选中试题吗?", "提示", {
|
|
|
|
+ type: "warning",
|
|
|
|
+ }).catch(() => {});
|
|
|
|
+ if (confirm !== "confirm") return;
|
|
|
|
+
|
|
|
|
+ this.deleteQuestion(this.selectedQuestionIds);
|
|
|
|
+ },
|
|
|
|
+ toLinkQuestion(row) {
|
|
|
|
+ console.log(row);
|
|
|
|
+ },
|
|
|
|
+ toAddFolder() {
|
|
|
|
+ this.curFolder = { parentId: this.filter.classifyId };
|
|
|
|
+ this.$refs.ModifyFolder.open();
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|