MyInterview.vue 12.0 KB
Newer Older
1 2 3 4 5 6
<template>
	<div>
		<el-container>
			<el-main>
				<el-form :inline="true" :model="formInline" class="demo-form-inline">
					<el-form-item>
7
						<el-input clearable v-model="formInline.question" placeholder="请输入问题" @keydown.enter.native="interviewPage"></el-input>
8
					</el-form-item>
9 10
					<el-select v-model="formInline.questionType" placeholder="请选择" @change="interviewPage">
						<el-option v-for="item in options" :key="item" :label="item" :value="item"></el-option>
11 12
					</el-select>
					<el-form-item>
13
						<el-button type="primary" @click="interviewPage">查询</el-button>
14 15
					</el-form-item>
					<el-form-item>
16
						<el-button type="primary" @click="prepareAdd">新增</el-button>
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
						<el-dialog title="新增面试问题" :visible.sync="dialogFormVisible" style="width: 100%">
							<el-form :model="form" class="custom-form">
								<el-form-item label="面试问题" :label-width="formLabelWidth" class="form-item">
									<el-input v-model="form.question" autocomplete="off" style="width: 100%"></el-input>
								</el-form-item>
								<br />
								<el-form-item label="问题类型" :label-width="formLabelWidth" class="form-item">
									<el-select v-model="form.questionType" placeholder="请选择问题类型">
										<el-option v-for="item in options" :key="item" :label="item" :value="item"></el-option>
									</el-select>
								</el-form-item>
							</el-form>
							<div slot="footer" class="dialog-footer">
								<el-button @click="dialogFormVisible = false">取 消</el-button>
								<el-button type="primary" @click="handleConfirm(0)">确 定</el-button>
							</div>
						</el-dialog>
34 35 36
					</el-form-item>
					<el-form-item>
						<el-button type="primary" @click="prepareMutiAdd">批量新增</el-button>
37 38 39 40 41 42 43 44 45 46 47 48
						<el-dialog class="red-title" :visible.sync="dialogMutiFormVisible">
							<div class="red-title" slot="title">批量新增面试问题(多个问题换行填写)</div>
							<el-form :model="form" class="custom-form">
								<el-form-item label="面试问题" :label-width="formLabelWidth" class="form-item">
									<el-input type="textarea" v-model="form.question" autocomplete="off" :rows="5" :cols="30" style="width: 100%"></el-input>
								</el-form-item>
							</el-form>
							<div slot="footer" class="dialog-footer">
								<el-button @click="dialogMutiFormVisible = false">取 消</el-button>
								<el-button type="primary" @click="handleConfirm(1)">确 定</el-button>
							</div>
						</el-dialog>
49 50 51 52
					</el-form-item>
				</el-form>
				<el-table border :data="userlist" v-loading="loading">
					<el-table-column prop="id" label="序号" width="100" sortable></el-table-column>
53
					<el-table-column prop="question" label="面试问题" show-overflow-tooltip></el-table-column>
54

55
					<el-table-column prop="questionType" label="问题类型" show-overflow-tooltip align="center">
56
						<template slot-scope="scope">
57
							<span :style="{ color: getColorForValue(scope.row.questionType) }" v-html="scope.row.questionType"></span>
58 59 60
						</template>
					</el-table-column>

61 62 63 64 65
					<el-table-column label="创建时间" width="170">
						<template slot-scope="props">
							{{ props.row.createTime | dateFormat }}
						</template>
					</el-table-column>
66
					<el-table-column prop="操作" label="操作" width="180">
67
						<template slot-scope="props">
68
							<el-button type="success" @click.prevent="preEdit(props.row.id, props.row.question, props.row.questionType)" width="200">编辑</el-button>
69 70 71
							<el-dialog title="编辑面试问题" :visible.sync="editVisible">
								<el-form :model="form">
									<el-form-item label="面试问题" :label-width="formLabelWidth">
72
										<el-input class="custom-textarea" type="textarea" v-model="form.question" autocomplete="off" :rows="5" :cols="30" style="text-align: left"></el-input>
73 74
									</el-form-item>
									<el-form-item label="问题类型" :label-width="formLabelWidth">
75
										<el-select v-model="form.questionType" placeholder="请选择问题类型" style="text-align: left">
76
											<el-option v-for="item in options" :key="item" :label="item" :value="item"></el-option>
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
										</el-select>
									</el-form-item>
								</el-form>
								<div slot="footer" class="dialog-footer">
									<el-button @click="editVisible = false">取 消</el-button>
									<el-button type="primary" @click="editConfirm">确 定</el-button>
								</div>
							</el-dialog>

							<el-button type="danger" @click="prepareDelete(props.row.id)">删除</el-button>
							<el-dialog title="提示" :visible.sync="dialogVisible" width="30%" :before-close="handleClose">
								<span>确认删除吗</span>
								<span slot="footer" class="dialog-footer">
									<el-button @click="dialogVisible = false">取 消</el-button>
									<el-button type="primary" @click.prevent="onDelete(currentRowId)">确 定</el-button>
								</span>
							</el-dialog>
94
						</template>
95
					</el-table-column>
96 97 98 99 100 101 102 103 104 105 106
				</el-table>
				<el-pagination class="pagination" background :key="elementui_page_component_key" :current-page.sync="currentPage" :page-size="pageSize" :total="total" @current-change="handleCurrentChange"></el-pagination>
			</el-main>
			<el-backtop class="backtop"></el-backtop>
		</el-container>
	</div>
</template>

<script>
import axios from 'axios'
export default {
107
	name: 'MyInterview',
108

109 110 111 112 113 114 115 116 117 118 119
	data() {
		return {
			// 用户列表数据
			userlist: [],
			loading: false,
			elementui_page_component_key: 0,
			currentPage: Number(localStorage.getItem('interviewLastPage')) || 1,
			pageSize: 9,
			total: 0,
			formInline: {
				question: '',
120
				questionType: '',
121
			},
122
			options: ['MySQL', 'JVM', '并发编程', '微服务'],
123 124 125 126 127
			// 新增的内容
			dialogFormVisible: false,
			dialogMutiFormVisible: false,
			form: {
				question: '',
128
				questionType: '',
129 130 131 132 133 134 135 136 137 138 139 140 141
			},
			formLabelWidth: '120px',
			dialogVisible: false,
			editVisible: false,
			currentRowId: null,
			colorMap: {}, // 创建一个空的颜色映射关系对象
		}
	},
	watch: {
		'formInline.question'(newVal, oldVal) {
			if (newVal !== oldVal) {
				this.currentPage = 1
				localStorage.setItem('interviewLastPage', this.currentPage)
142
				this.interviewPage()
143 144 145 146 147 148 149 150 151
			}
		},
		// 监听currentPage的变化,将新值保存到localStorage中
		currentPage(newPage) {
			localStorage.setItem('interviewLastPage', newPage.toString())
		},
	},
	created() {
		//获取问题列表
152
		this.interviewPage()
153 154 155 156 157 158 159
	},
	mounted() {
		this.currentPage = 1
	},
	methods: {
		prepareAdd() {
			this.form.question = ''
160
			this.form.questionType = ''
161 162 163 164
			this.dialogFormVisible = true
		},
		prepareMutiAdd() {
			this.form.question = ''
165
			this.form.questionType = ''
166 167
			this.dialogMutiFormVisible = true
		},
168

169 170 171 172
		prepareDelete(id) {
			this.currentRowId = id
			this.dialogVisible = true
		},
173
		preEdit(id, question, questionType) {
174
			this.form.question = question
175
			this.form.questionType = questionType
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
			this.currentRowId = id
			this.editVisible = true
		},
		handleClose(done) {
			this.$confirm('确认关闭?')
				.then((_) => {
					done()
				})
				.catch((_) => {})
		},
		handleConfirm(addType) {
			this.dialogFormVisible = false // 关闭对话框
			this.dialogMutiFormVisible = false
			this.addQuestion(addType) // 发送请求
		},
191

192 193 194
		async addQuestion(addType) {
			try {
				this.loading = true
195

196
				const { data: res } = await axios.post('http://localhost:80/interviewQuestion/add', {
197 198 199 200 201 202 203
					addType: addType,
					question: this.form.question,
					questionType: this.form.questionType,
				})
				if (res.code === 200) {
					this.currentPage = 1
					this.form.question = ''
204 205
					this.form.questionType = ''
					this.interviewPage() // 确保这个方法是有效的
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
				} else {
					console.error('Received non-200 status code', res)
					this.errorMsg(res.message)
				}
			} catch (error) {
				console.error('An error occurred while adding the question:', error)
				// 异常处理逻辑
			} finally {
				this.loading = false
			}
		},
		errorMsg(msg) {
			this.$message({
				showClose: true,
				message: msg,
				type: 'error',
			})
		},
		async editConfirm() {
			try {
				this.loading = true
227

228
				const { data: res } = await axios.post('http://localhost:80/interviewQuestion/update', {
229 230 231 232 233 234 235 236 237
					id: this.currentRowId,
					question: this.form.question,
					questionType: this.form.questionType,
				})
				if (res.code === 200) {
					this.form.question = ''
					this.form.questionType = 0
					this.editVisible = false
					currentRowId: null
238
					this.interviewPage() // 确保这个方法是有效的
239 240 241 242 243 244 245 246 247 248
				} else {
					console.error('Received non-200 status code', res)
				}
			} catch (error) {
				console.error('An error occurred while adding the question:', error)
				// 异常处理逻辑
			} finally {
				this.loading = false
			}
		},
249

250 251 252
		async onDelete(id) {
			this.dialogVisible = false
			this.loading = true
253
			const { data: res } = await axios.get('http://localhost:80/interviewQuestion/delete', {
254 255 256 257
				params: {
					id: id,
				},
			})
258
			this.interviewPage()
259 260
			this.loading = false
		},
261

262 263
		refreshPage() {
			//获取问题类型的枚举
264
			this.interviewPage()
265 266 267 268
			location.reload()
		},
		async interviewPage() {
			this.loading = true
269
			const { data: res } = await axios.get('http://localhost:80/interviewQuestion/page', {
270 271 272 273
				params: {
					page: this.currentPage,
					pageSize: this.pageSize,
					question: this.formInline.question,
274
					questionType: this.formInline.questionType,
275 276 277 278 279 280 281 282 283 284
				},
			})
			if (res.code === 200) {
				this.total = res.result.totalElements
				this.userlist = res.result.content
			}
			this.loading = false
		},
		handleCurrentChange(currentPage) {
			this.currentPage = currentPage
285
			this.interviewPage()
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
		},
		getColorForValue(value) {
			// 检查颜色映射关系中是否已经有该值对应的颜色
			if (!this.colorMap[value]) {
				// 如果没有,随机生成一个颜色并将其关联到该值
				this.colorMap[value] = this.getRandomColor()
			}
			// 返回值对应的颜色
			return this.colorMap[value]
		},
		getRandomColor() {
			// 从颜色数组中随机选取一个颜色
			const colorArray = [
				'red',
				'blue',
				'green',
				'purple',
				'orange',
				'pink',
				'brown',
				'magenta',
				'maroon',
				'navy',
				'olive',
				'teal',
				'silver',
				'gray',
				'indigo',
				'violet',
				'coral',
				'salmon',
				'orchid',
				'slategray',
				'thistle',
				'burlywood',
				'cadetblue',
				'chocolate',
				'crimson',
				'darkblue',
				'darkcyan',
				'darkgoldenrod',
				'darkgray',
				'darkgreen',
				'darkkhaki',
				'darkmagenta',
				'darkolivegreen',
				'darkorange',
				'darkorchid',
				'darkred',
				'darksalmon',
				'darkseagreen',
				'darkslateblue',
				'darkslategray',
				'darkturquoise',
				'darkviolet',
				'deeppink',
				'deepskyblue',
				'dodgerblue',
				'firebrick',
				'forestgreen',
				'fuchsia',
				'hotpink',
				'indianred',
				'lightcoral',
				'lightpink',
				'lightsalmon',
				'lightseagreen',
				'lightskyblue',
				'lightslategray',
				'lightsteelblue',
				'mediumaquamarine',
				'mediumblue',
				'mediumorchid',
				'mediumpurple',
				'mediumslateblue',
				'mediumturquoise',
				'mediumvioletred',
				'midnightblue',
				'orangered',
				'palevioletred',
				'peru',
				'rosybrown',
				'saddlebrown',
				'seagreen',
				'sienna',
				'skyblue',
				'slateblue',
				'tan',
				'thistle',
				'tomato',
				'violet',
			]
			const randomIndex = Math.floor(Math.random() * colorArray.length)
			return colorArray[randomIndex]
		},
	},
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
}
</script>

<style lang="less" scoped>
.el-header {
	background-color: #b3c0d1;
	color: #333;
	line-height: 60px;
}

.el-aside {
	color: #333;
}

.pagination {
	margin-top: 16px;
	text-align: right;
}
.header-button-item {
	margin-right: 15px;
	font-size: 20px;
}

405 406 407 408 409 410
.red-title {
	line-height: 24px;
	font-size: 18px;
	color: red;
}

411 412 413 414 415 416 417 418 419 420 421 422 423 424
.backtop {
	position: fixed;
	bottom: 50px;
	right: 50px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 20px;
	background-color: #007aff;
	color: #fff;
	cursor: pointer;
	z-index: 999;
}
425 426 427 428
.custom-textarea {
	width: 100%;
	text-align: left;
}
429 430 431 432 433

.backtop:hover {
	background-color: #0050a0;
}
</style>