MyInterview.vue 6.3 KB
Newer Older
1 2 3
<template>
	<div>
		<el-container>
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
			<el-dialog title="新增面试问题" :visible.sync="dialogFormVisible">
				<el-form :model="form">
					<el-form-item label="面试问题" :label-width="formLabelWidth">
						<el-input v-model="form.question" autocomplete="off"></el-input>
					</el-form-item>
					<el-form-item label="问题类型" :label-width="formLabelWidth">
						<el-select v-model="form.questionType" placeholder="请选择活动区域">
							<el-option v-for="item in options" :key="item.questionType" :label="item.name" :value="item.questionType"></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">确 定</el-button>
				</div>
			</el-dialog>
20 21 22 23 24
			<el-main>
				<el-form :inline="true" :model="formInline" class="demo-form-inline">
					<el-form-item>
						<el-input clearable v-model="formInline.question" placeholder="请输入问题" @keydown.enter.native="initCartList"></el-input>
					</el-form-item>
25 26
					<el-select v-model="questionType" placeholder="请选择" @change="initCartList">
						<el-option v-for="item in options" :key="item.questionType" :label="item.name" :value="item.questionType"></el-option>
27 28 29 30 31
					</el-select>
					<el-form-item>
						<el-button type="primary" @click="initCartList">查询</el-button>
					</el-form-item>
					<el-form-item>
32
						<el-button type="primary" @click="dialogFormVisible = true">新增</el-button>
33 34 35 36
					</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>
37 38
					<el-table-column prop="question" label="面试问题" show-overflow-tooltip></el-table-column>
					<el-table-column prop="questionTypeName" label="问题类型" show-overflow-tooltip align="center"></el-table-column>
39 40 41 42 43
					<el-table-column label="创建时间" width="170">
						<template slot-scope="props">
							{{ props.row.createTime | dateFormat }}
						</template>
					</el-table-column>
44
					<!-- <el-table-column prop="详情" label="详情" width="180" align="center">
45
						<template slot-scope="props">
46
							<el-button type="success" @click.prevent="gotoDetail(props.row.id)" width="200">详情</el-button>
47 48
							<el-button type="danger" @click="onDelete(props.row.id)">删除</el-button>
						</template>
49
					</el-table-column> -->
50 51 52 53 54 55 56 57 58 59 60
				</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 {
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
	name: 'MyInterview',

	data() {
		return {
			// 用户列表数据
			userlist: [],
			loading: false,
			elementui_page_component_key: 0,
			currentPage: Number(localStorage.getItem('lastPage')) || 1,
			pageSize: 9,
			total: 0,
			formInline: {
				question: '',
			},
			options: [],
			questionType: 0,
			// 新增的内容
			dialogFormVisible: false,
			form: {
				question: '',
				questionType: 0,
			},
			formLabelWidth: '120px',
		}
	},
	watch: {
		'formInline.question'(newVal) {
			if (newVal === '') {
				this.currentPage = 1
				localStorage.setItem('lastPage', this.currentPage)
				this.initCartList()
			}
		},
	},
	created() {
		this.initCartList()
		this.getQuestionType()
	},
	mounted() {},
	methods: {
		handleConfirm() {
			this.dialogFormVisible = false // 关闭对话框
			this.addQuestion() // 发送请求
		},

		async addQuestion() {
			try {
				this.loading = true

				const { data: res } = await axios.post('http://localhost:8080/interviewQuestion/add', {
					question: this.form.question,
					questionType: this.form.questionType,
				})
				if (res.code === 200) {
					this.initCartList() // 确保这个方法是有效的
				} 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
			}
		},
126

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
		async onDelete(id) {
			this.loading = true
			const { data: res } = await axios.get('http://localhost:8080/interviewQuestion/delete', {
				params: {
					id: id,
				},
			})
			this.initCartList()
			this.loading = false
		},
		refreshPage() {
			location.reload()
		},
		gotoDetail(id) {
			this.$router.push('/home/chatinfo/' + id)
		},
		addChat() {
			this.$router.push('/home/addChat/')
		},
146

147 148 149 150 151 152 153 154
		async getQuestionType() {
			this.loading = true
			const { data: res } = await axios.get('http://localhost:8080/interviewQuestion/questionType', { params: {} })
			if (res.code === 200) {
				this.options = res.result
			}
			this.loading = false
		},
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
		async initCartList() {
			this.loading = true
			const { data: res } = await axios.get('http://localhost:8080/interviewQuestion/page', {
				params: {
					page: this.currentPage,
					pageSize: this.pageSize,
					question: this.formInline.question,
					questionType: this.questionType,
				},
			})
			if (res.code === 200) {
				this.userlist = res.result.content
				this.total = res.result.totalElements
				// 定义一个映射(map)来存储 questionType 到 name 的转换
				const questionTypeToNameMap = {}
				this.options.forEach((option) => {
					questionTypeToNameMap[option.questionType] = option.name
				})
				// 修改 userlist 中的每一个元素,将 questionType 转换为 name
				this.userlist.forEach((user) => {
					user.questionTypeName = questionTypeToNameMap[user.questionType] || 'Unknown'
				})
			}
			this.loading = false
		},
		handleCurrentChange(currentPage) {
			this.currentPage = currentPage
			this.initCartList()
		},
	},
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
}
</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;
}

.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;
}

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