index.vue 16.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
<template>
	<div class="app-container">

		<el-row id="elRow">
			<el-col :span="4" :style="{'height':TreeColHeight+'px'}">
				<div style="margin-right: 10px;height: 100%;">
					<div class="TreeHeader">
						<label style="font-size: 18px;">题目分类</label>
					</div>
					<div :style="{'height':TableColHeight+'px'}" class="areadiv"
						style="margin:10px 0 0 0;padding: 5px 0 0 0;">
						<el-tree :data="treeData" :props="treeData" @node-click="handleNodeClick" class="eltree"
							:expand-on-click-node=false>
							<span class="custom-tree-node" slot-scope="{ node, data }">
								<span>{{ node.label }}</span>
								<span style="">
									<el-button type="text" size="mini" @click="showClassDialog(node)">
										添加下级
									</el-button>
									<el-button type="text" size="mini" @click="() => remove(node, data)">
										删除本级
									</el-button>
								</span>
							</span>
						</el-tree>
					</div>
				</div>
			</el-col>
			<el-col :span="20">
				<div class="grid-content bg-purple-light">
					<div class="seetingsDiv" style="">
						<el-button type="primary" @click="dialogsubjectlVisible=true">添加题目
						</el-button>
					</div>
					<div class="areadiv" :style="{'height':TableColHeight+'px'}">
						<el-table :data="QuestList" id="QuestionTable" border
							style="width: 100%;border-radius: 5px;box-shadow: 0 0 10px #efefef;margin-top: 10px;"
							:header-cell-class-name="headerStyle" :stripe=true>
							<el-table-column prop="date" label="ID" width="50">
								<template slot-scope="scope">
									<span>{{ scope.row.id }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="date" label="题目类型" width="100">
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.subjectName }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="QuestionClassName" label="分类" width="100">
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.QuestionClassName }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="name" label="分数" width="80">
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.fraction }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="name" label="单项分数" width="80">
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.singleFraction }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="name" label="正确答案" width="80">
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.answer }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="name" label="题目" :show-overflow-tooltip=true>
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.subject }}</span>
								</template>
							</el-table-column>
							<el-table-column prop="name" label="解析" :show-overflow-tooltip=true>
								<template slot-scope="scope">
									<span style="padding-left: 10px;">{{ scope.row.analysis }}</span>
								</template>
							</el-table-column>
							<el-table-column fixed="right" label="操作" width="150">
								<template slot-scope="scope">
									<el-dropdown @command="(e)=>{handleCommand(e,scope.row.id)}"
										style="padding-left: 10px;">
										<span class="el-dropdown-link">
											操作<i class="el-icon-arrow-down el-icon--right"></i>
										</span>
										<template #dropdown>
											<el-dropdown-menu>
												<el-dropdown-item command="update">编辑</el-dropdown-item>
												<!-- <el-dropdown-item command="b">锁定</el-dropdown-item> -->
												<el-dropdown-item command="del">删除</el-dropdown-item>
											</el-dropdown-menu>
										</template>
									</el-dropdown>
								</template>
							</el-table-column>
						</el-table>
						<el-pagination background @current-change="currentchange"
							style="position:static;bottom: 3px;text-align: center;margin-top: 5px;"
							:page-size="this.parameter.pageSize" layout="total,prev, pager, next" :total="Count">
						</el-pagination>
						<div style="clear: both;"></div>
					</div>
				</div>
			</el-col>
		</el-row>
		<el-dialog title="分类维护" :visible.sync="dialogClassIVIsible" @close="closeClassDialog" width="400px"
			:close-on-click-modal="false">
			<el-form ref="QuestionClassInfo" :model="QuestionClassInfo" label-width="70px">
				<el-form-item label="分类名称">
					<el-input v-model="QuestionClassInfo.ClassificationName" placeholder="请输入分类名称"></el-input>
				</el-form-item>
			</el-form>
			<el-button @click="CreateQuestionClassHealder" style="margin: 10px 0 0 0 ;float:right" type="primary">确定
			</el-button>
			<div style="clear: both;"></div>
		</el-dialog>
		<el-dialog title="编辑题目" :visible.sync="dialogsubjectlVisible" @close='closeDialog' width="800px"
			:close-on-click-modal="false">
			<el-form ref="Dataform" :model="Dataform" label-width="60px">
				<el-form-item label="题目">
					<el-input v-model="Dataform.subject" placeholder="请输入题目名称"></el-input>
				</el-form-item>
				<el-form-item label="分类" style="padding-top: 5px;">
					<el-cascader v-model="Dataform.QuestionClassId" style="width:400px" :props="{emitPath:false}"
						:clearable=true :options="QuestionClass">
					</el-cascader>
				</el-form-item>
				<el-form-item label="题型" style="padding-top: 5px;">
					<el-select v-model="Dataform.subjectType" value-key="Dataform.subjectType"
						@change="changeQuestionType" placeholder="请选择题型">
						<el-option label="单选题" :value="1"></el-option>
						<el-option label="多选题" :value="2"></el-option>
						<el-option label="主观题" :value="3"></el-option>
					</el-select>
				</el-form-item>
				<el-form-item label="选项" v-show="OptionVisible">
					<el-table :data="subjectContent" :show-header="false">
						<el-table-column>
							<template slot-scope="scope">
								<el-input placeholder="请输入答案" v-model="scope.row.optionContent" class="optionInput">
									<template slot="prepend">{{scope.row.option}}</template>
								</el-input>
								<i class="el-icon-circle-plus el-icon" @click="Addlist"></i>
								<i class="el-icon-remove el-icon" @click="RemoveList(scope)" v-if="scope.$index!=0"></i>
							</template>
						</el-table-column>
					</el-table>
				</el-form-item>
				<el-form-item label="答案" v-show="OptionVisible" class="subjectContentClass">
					<el-radio-group v-for="(item,i) in subjectContent" v-model="Dataform.answer" v-if="GroupVisible">
						<el-radio :label="item.option">{{item.option}}</el-radio>
					</el-radio-group>
					<el-checkbox-group v-for="(item,i) in subjectContent" v-model="Dataform.answer"
						v-if="!GroupVisible">
						<el-checkbox style="float: left;" :label="item.option">{{item.option}}</el-checkbox>
					</el-checkbox-group>
				</el-form-item>
				<el-form-item label="分数" v-show="OptionVisible">
					<el-input-number :step="1" style="float: left;" :min="0" v-model="Dataform.fraction">
					</el-input-number>
					<div style="float: left;margin-left: 20px;" v-if="!GroupVisible">
						<lable style="font-weight: bold;">单项分数:</lable>
						<el-input-number :step="0.5" :max="Dataform.fraction/2" :min="0"
							v-model="Dataform.singleFraction">
						</el-input-number>
					</div>
				</el-form-item>
				<el-form-item label="解析" style="margin-top: 10px;">
					<el-input v-model="Dataform.analysis" :rows="10" type="textarea" placeholder="请输入答案解析" />
				</el-form-item>
			</el-form>
			<el-button @click="EditQuestionHeadler" style="margin: 10px 0 0 0;float:right" type="primary">确定
			</el-button>
			<div style="clear: both;"></div>
		</el-dialog>
	</div>
</template>

<script lang="ts">
	import {
		getQuestionList,
		EditQuestion,
		getQuestionClassList,
		DelQuestionBankEvent,
		GetQuestionBankById,
		CreateQuestionClass
	} from '@/api/QuestionBank'
	import {
		parseTime
	} from '@/utils/index.js'
	export default {
		filters: {},
		data() {
			return {
				parameter: {
					pageIndex: 1,
					pageSize: 12,
					sort: "id",
					sortOrder: 1,
					keyword: "",
					QuestionClassId: 0,
					status: 1
				},
				Count: 0,
				QuestList: [],
				dialogsubjectlVisible: false,
				dialogClassIVIsible: false,
				OptionVisible: true,
				GroupVisible: true,
				Dataform: {
					subject: "",
					subjectType: 1,
					subjectContent: "",
					QuestionClassId: 0,
					answer: [],
					analysis: "",
					fraction: 0,
					singleFraction: 0,
					addTime: "2021-11-12",
					state: 1
				},
				subjectContent: [{
					option: "A",
					optionContent: ""
				}],
				QuestionClass: [],
				QuestionClassInfo: {
					ParentId: 0,
					ClassificationName: "",
					Addtime: ""
				},
				TreeColHeight: 0,
				TableColHeight: 0,
				treeData: [{
					value: 0,
					label: "全部"
				}],
				CreatClassId: 0
			}
		},
		created() {

		},
		mounted() {
			let ContentAreaHight = window.innerHeight - document.getElementById("elRow").offsetTop - 70;
			this.TableColHeight = ContentAreaHight - document.getElementById("QuestionTable").offsetTop;
			let lineNumber = this.TableColHeight - 50 - 20; //减去表头来计算
			this.TreeColHeight = ContentAreaHight;
			lineNumber = Math.floor(lineNumber / 49)
			this.parameter.pageSize = lineNumber;
			this.GetList();
			this.getQuestionClassListHeadler();
		},
		methods: {
			//表格右边的操作按钮
			handleCommand(value, val) {
				if (value == "update") {
					this.GetQuestionBankByIdHeadler(val);
				}
				if (value == "del") {
					this.DelQuestionBankEventHeadler(val);
				}
			},
			//添加分类
			CreateQuestionClassHealder() {
				this.QuestionClassInfo.Addtime = parseTime(new Date(), "");
				CreateQuestionClass(this.QuestionClassInfo).then(res => {
					alert(res.code)
				})
			},
			//获取选择的题目详细信息
			GetQuestionBankByIdHeadler(id) {
				GetQuestionBankById(id).then(res => {
					this.changeQuestionType(res.data.data.subjectType); //这里先初始化编辑显示内容
					this.Dataform = res.data.data; //内容赋值
					this.subjectContent = JSON.parse(res.data.data.subjectContent); //赋值选项
					if (res.data.data.subjectType == 1) {
						this.Dataform.answer = res.data.data.answer.split(',')[0]; //赋值答案
					} else {
						this.Dataform.answer = res.data.data.answer.split(','); //赋值答案
					}
					this.dialogsubjectlVisible = true;

				});
			},
			showClassDialog(node) {
				this.dialogClassIVIsible = true;
				console.log(node);
				this.QuestionClassInfo.ParentId = node.data.value;
				alert(this.QuestionClassInfo.ParentId);
			},
			//关闭弹框的事件
			closeDialog() {
				//初始化数据
				this.Dataform = this.$options.data().Dataform;
				this.subjectContent = this.$options.data().subjectContent;
				//所有文本框恢复到初始化状态
				this.Dataform.answer = [];
				this.OptionVisible = true;
				this.GroupVisible = true;
			},
			//选择题目类型来判断是否显示部分表单
			changeQuestionType(val) {
				if (val == 3) {
					this.OptionVisible = false;
				}
				if (val == 2) {
					this.OptionVisible = true;
					this.Dataform.answer = [];
					this.GroupVisible = false;
				}
				if (val == 1) {
					this.Dataform.answer = [];
					this.OptionVisible = true;
					this.GroupVisible = true;
				}
			},
			headerStyle({
				row,
				column,
				rowIndex,
				columnIndex
			}) {
				return 'tableStyle'
			},
			Addlist() {
				if (this.subjectContent.length < 4) {
					var alphabet = String.fromCharCode(64 + parseInt(this.subjectContent.length + 1));
					this.subjectContent.push({
						"option": alphabet,
						"title": ""
					});
				} else {
					this.$confirm('系统暂时只支持4个答案!', '消息')
				}
			},
			RemoveList(val) {
				this.subjectContent.splice(val.$index, 1);
				this.subjectContent.forEach((item, index) => {
					item.option = String.fromCharCode(64 + parseInt(index + 1));
				})
			},
			handleNodeClick(val) {
				this.parameter.QuestionClassId = val.value;
				this.parameter.pageIndex = 1;
				this.GetList();
			},
			DelQuestionBankEventHeadler(id) {
				this.$confirm('确定删除该试题?', '消息', {
					confirmButtonText: '确认',
					cancelButtonText: '取消',
					callback: (action) => {
						if (action == "confirm") {
							DelQuestionBankEvent(id).then(res => {
								if (res.data.code == 200) {
									this.$confirm(res.data.message, '消息')
									this.GetList();
								}
							});
						}
					},
				})
			},
			EditQuestionHeadler() {
				let reg = new RegExp('"', 'g');
				//this.Dataform.subjectContent = JSON.stringify(this.subjectContent).replace(reg, "\"");
				this.Dataform.subjectContent = this.subjectContent;
				if (typeof(this.Dataform.answer) != 'string') //判断是否为字符串
					this.Dataform.answer = this.Dataform.answer.join(',')
				var _this = this;
				EditQuestion(this.Dataform).then(res => {
					if (res.data.code == 200) {
						_this.GetList();
						this.$message(res.data.message);
						setTimeout(function() {
							_this.dialogsubjectlVisible = false;
						}, 10)
					}
				});
			},
			GetList() {
				let _this = this;
				getQuestionList(_this.parameter).then(res => {
					_this.QuestList = res.data.data.rows;
					_this.Count = res.data.data.total;
					_this.$forceUpdate();
				});
			},
			currentchange(page) {
				this.parameter.pageIndex = page;
				this.GetList();
			},
			getQuestionClassListHeadler() {
				let _this = this;
				getQuestionClassList().then(res => {
					var gettree = function(titem) {
						titem.children = []
						let childrenList = res.data.data.filter(u => u.ParentId == titem.value);
						if (childrenList.length == 0)
							titem.children = undefined;
						res.data.data.filter(u => u.ParentId == titem.value).forEach((item, i) => {
							var model = {
								value: item.id,
								label: item.ClassificationName
							};
							gettree(model);
							titem.children.push(model);
						})
					}
					res.data.data.filter(u => u.ParentId == 0).forEach((item, i) => {
						var model = {
							value: item.id,
							label: item.ClassificationName
						};
						gettree(model);
						_this.QuestionClass.push(model);
						_this.treeData.push(model)
					})
				});
			}
		}
	}
</script>
<style scoped="scoped">
	/deep/.cell {
		padding-left: 0px;
	}
	/deep/.el-form-item {
		margin-bottom: 5px;
	}
	/deep/.el-radio {
		margin-right: 10px;
	}
	/deep/.el-radio__input.is-checked .el-radio__inner {
		border-color: #409EFF;
		background-color: #409EFF;
	}
	/deep/.el-radio__input.is-checked+.el-radio__label {
		color: #409EFF;
		font-weight: bold;
	}
	/deep/.tableStyle {
		background-color: #304156 !important;
		color: #fff;
		font-weight: 400;
	}
	.QuestDiv {
		width: 24%;
		float: left;
		min-height: 50px;
		border: 1px solid #CDCDCD;
		margin-right: 10px;
		box-shadow: 0 0 10px #808080;
		border-radius: 8px;
		min-height: 100px;
		background-color: #FFF;
		opacity: 0.8;
		margin-bottom: 10px;
		height: 313px;
	}
	.clear {
		clear: both;
		margin-bottom: 10px;
	}
	.font-color {
		background-color: #AE1E15 !important;
		color: #FFF;
		box-shadow: 0 0 5px #AE1E15;
	}
	/deep/.el-input-group__prepend {
		font-weight: bold;
		width: 30px;
		text-align: center;
		background: #409EFF;
		color: #FFF;
	}
	.optionInput {
		float: left;
		width: 620px !important;
	}
	.el-icon {
		font-size: 20px;
		line-height: 40px;
		margin: 0 5px;
		cursor: pointer;
		color: #409EFF !important;
	}
	>>>.subjectContentClass .el-checkbox__label {
		padding-right: 10px !important;
	}
	.seetingsDiv {
		width: 100%;
		height: 60px;
		background: #efefef;
		line-height: 60px;
		border-radius: 5px;
		box-shadow: 0 0 5px #cdcdcd;
	}
	.seetingsDiv button {
		background-color: #304156;
		border: 0px;
		margin-left: 10px;
		box-shadow: 0 0 5px #cdcdcd;
		float: right;
		margin-top: 12px;
		margin-right: 10px;
	}
	.areadiv {
		background-color: #efefef;
		border-radius: 5px;
		box-shadow: 0 0 5px #efefef;
	}
	.TreeHeader {
		background-color: #304156;
		height: 60px;
		border-radius: 5px;
		box-shadow: 0 0 10px #efefef;
		line-height: 60px;
		color: #FFF;
		padding-left: 10px;
	}
	.classbtn {
		float: right;
		margin: 11px 10px 0 0;
		height: 35px;
		line-height: 12px;
	}
	.eltree {
		background-color: #efefef;
	}
	/deep/.el-tree-node__content {
		min-height: 40px;
	}
	.custom-tree-node {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 14px;
		padding-right: 8px;
	}
</style>