MyCsdnUser.vue 25.5 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 size="small" clearable v-model="formInline.userName" placeholder="请输入用户名" @keydown.enter.native="userPage"></el-input>
8 9
					</el-form-item>
					<el-form-item>
10
						<el-input size="small" clearable v-model="formInline.nickName" placeholder="请输入用户昵称" @keydown.enter.native="userPage"></el-input>
11
					</el-form-item>
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
					<el-form-item>
						<el-select size="small" v-model="formInline.userWeight" placeholder="请选择权重" @change="userPage">
							<el-option v-for="item in allOptions" :key="item.type" :label="item.name" :value="item.type"></el-option>
						</el-select>
					</el-form-item>

					<el-form-item>
						<el-select size="small" v-model="formInline.articleType" placeholder="请选择文章类型" @change="userPage">
							<el-option v-for="type in articleType" :key="type" :label="type" :value="type"></el-option>
						</el-select>
					</el-form-item>
					<el-form-item>
						<el-select size="small" v-model="formInline.likeStatus" placeholder="请选择点赞状态" @change="userPage">
							<el-option v-for="item in likeStatus" :key="item.type" :label="item.name" :value="item.type"></el-option>
						</el-select>
					</el-form-item>
					<el-form-item>
						<el-select size="small" v-model="formInline.collectStatus" placeholder="请选择收藏状态" @change="userPage">
							<el-option v-for="item in collectStatus" :key="item.type" :label="item.name" :value="item.type"></el-option>
						</el-select>
					</el-form-item>

					<el-form-item>
						<el-select size="small" v-model="formInline.commentStatus" placeholder="请选择评论状态" @change="userPage">
							<el-option v-for="item in commentStatus" :key="item.type" :label="item.name" :value="item.type"></el-option>
						</el-select>
					</el-form-item>

40
					<br />
41
					<el-form-item>
42
						<el-button size="small" type="primary" @click="userPage">查询</el-button>
43
					</el-form-item>
44
					<el-form-item>
45
						<el-button size="small" type="primary" @click="prepareAdd">新增用户</el-button>
46 47 48 49 50
						<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.userName" autocomplete="off" style="width: 100%"></el-input>
								</el-form-item>
51
								<br />
52 53 54
								<el-form-item label="用户昵称" :label-width="formLabelWidth" class="form-item">
									<el-input v-model="form.nickName" autocomplete="off" style="width: 100%"></el-input>
								</el-form-item>
55
								<br />
56 57 58 59 60 61 62 63 64 65 66 67 68
								<el-form-item label="用户权重" :label-width="formLabelWidth" class="form-item">
									<el-select v-model="form.userWeight" placeholder="请选择">
										<el-option v-for="item in allOptions" :key="item.type" :label="item.name" :value="item.type"></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>
					</el-form-item>
					<el-form-item>
69
						<el-button size="small" type="primary" @click="prepareMutiAdd">批量新增用户</el-button>
70 71 72 73 74 75 76 77 78 79 80 81 82
						<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.userName" 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>
					</el-form-item>
83 84

					<!-- <el-form-item>
85
						<el-button size="small" type="primary" @click="prepareResetUser">新的一天</el-button>
86
						<el-dialog title="提示" :visible.sync="resetUserDialogVisible" width="30%" :before-close="handleClose">
87 88 89 90 91 92
						<span>确认重置新一天用户状态吗?</span>
						<span slot="footer" class="dialog-footer">
							<el-button @click="resetUserDialogVisible = false">取 消</el-button>
							<el-button type="primary" @click.prevent="resetUser()">确 定</el-button>
						</span>
					</el-dialog>
93 94
					</el-form-item> -->

95
					<el-form-item>
96
						<el-button size="small" type="primary" @click="prepareAllTriplet">三连</el-button>
97 98 99 100 101 102 103
						<el-dialog title="提示" :visible.sync="allTripletDialogVisible" width="30%" :before-close="handleClose">
							<span>确认三连吗?</span>
							<span slot="footer" class="dialog-footer">
								<el-button @click="allTripletDialogVisible = false">取 消</el-button>
								<el-button type="primary" @click.prevent="allTriplet()">确 定</el-button>
							</span>
						</el-dialog>
104
					</el-form-item>
105 106

					<!-- <el-form-item>
107
						<el-button size="small" type="warning" @click="prepareReset">重置状态</el-button>
108
						<el-dialog title="提示" :visible.sync="resetDialogVisible" width="30%" :before-close="handleClose">
109
						<span>确认重置状态吗?</span>
110 111 112 113 114
						<span slot="footer" class="dialog-footer">
							<el-button @click="resetDialogVisible = false">取 消</el-button>
							<el-button type="primary" @click.prevent="reset()">确 定</el-button>
						</span>
					</el-dialog>
115 116 117 118 119 120 121 122 123 124 125 126 127
					</el-form-item> -->

					<el-form-item>
						<el-button size="small" type="warning" @click="prepareResetLikesComment">核验状态</el-button>
						<el-dialog title="提示" :visible.sync="resetLikesCommentDialogVisible" width="30%" :before-close="handleClose">
							<span>确认核验状态吗?</span>
							<span slot="footer" class="dialog-footer">
								<el-button @click="resetLikesCommentDialogVisible = false">取 消</el-button>
								<el-button type="primary" @click.prevent="resetLikesComment()">确 定</el-button>
							</span>
						</el-dialog>
					</el-form-item>

128
					<el-form-item>
129
						<el-button size="small" type="success" @click="prepareAutoReply">自动评论</el-button>
130 131 132 133 134 135 136
						<el-dialog title="提示" :visible.sync="autoReplyDialogVisible" width="30%" :before-close="handleClose">
							<span>确认自动评论吗?</span>
							<span slot="footer" class="dialog-footer">
								<el-button @click="autoReplyDialogVisible = false">取 消</el-button>
								<el-button type="primary" @click.prevent="autoReply()">确 定</el-button>
							</span>
						</el-dialog>
137
					</el-form-item>
138
				</el-form>
139
				<el-table ref="multipleTable" v-loading="loading" :data="csdnUserList" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange">
140
					<el-table-column type="selection" width="55"></el-table-column>
141
					<el-table-column prop="userName" label="用户名称" show-overflow-tooltip></el-table-column>
142 143 144 145 146
					<el-table-column prop="nickName" label="用户昵称" show-overflow-tooltip>
						<template slot-scope="scope">
							<a :href="scope.row.userHomeUrl" target="_blank">{{ scope.row.nickName }}</a>
						</template>
					</el-table-column>
147

148 149 150 151 152 153 154 155 156 157 158 159
					<el-table-column prop="likeStatusName" label="点赞状态" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="getTagType(scope.row.likeStatusName)">{{ scope.row.likeStatusName }}</el-tag>
						</template>
					</el-table-column>

					<el-table-column prop="collectStatusName" label="收藏状态" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="getTagType(scope.row.collectStatusName)">{{ scope.row.collectStatusName }}</el-tag>
						</template>
					</el-table-column>

160
					<el-table-column prop="commentStatusName" label="评论状态" show-overflow-tooltip>
161 162 163 164 165
						<template slot-scope="scope">
							<el-tag :type="getTagType(scope.row.commentStatusName)">{{ scope.row.commentStatusName }}</el-tag>
						</template>
					</el-table-column>

166 167
					<el-table-column prop="userWeightName" label="用户权重" show-overflow-tooltip></el-table-column>

168 169
					<el-table-column prop="articleType" label="文章类型" show-overflow-tooltip></el-table-column>
					<el-table-column label="更新时间">
170 171 172 173
						<template slot-scope="props">
							{{ props.row.updateTime | dateFormat }}
						</template>
					</el-table-column>
174
					<el-table-column prop="操作" label="操作" width="380px">
175
						<template slot-scope="props">
176
							<el-button type="primary" @click="prepareTriplet(props.row.userName)" size="small">三连</el-button>
177 178 179 180 181 182 183
							<el-dialog title="提示" :visible.sync="tripletVisible" width="30%" :before-close="handleClose">
								<span>确认三连?</span>
								<span slot="footer" class="dialog-footer">
									<el-button @click="tripletVisible = false">取 消</el-button>
									<el-button type="primary" @click.prevent="triplet(currentUserName)">确 定</el-button>
								</span>
							</el-dialog>
184
							<el-button type="warning" @click="prepareResetUserDayStatus(props.row.userName)" size="small">重置</el-button>
185 186 187 188 189 190 191
							<el-dialog title="提示" :visible.sync="resetUserDayStatusVisible" width="30%" :before-close="handleClose">
								<span>确认重置?</span>
								<span slot="footer" class="dialog-footer">
									<el-button @click="resetUserDayStatusVisible = false">取 消</el-button>
									<el-button type="primary" @click.prevent="resetUserDayStatus(currentUserName)">确 定</el-button>
								</span>
							</el-dialog>
192
							<el-button type="success" @click.prevent="preEdit(props.row.id, props.row.userName, props.row.nickName, props.row.userHomeUrl, props.row.userWeight)" width="200" size="small">编辑</el-button>
193 194 195 196 197 198 199 200
							<el-dialog title="编辑用户信息" :visible.sync="editVisible">
								<el-form :model="form">
									<el-form-item label="用户名称" :label-width="formLabelWidth" class="form-item">
										<el-input v-model="form.userName" autocomplete="off" style="width: 100%"></el-input>
									</el-form-item>
									<el-form-item label="用户昵称" :label-width="formLabelWidth" class="form-item">
										<el-input v-model="form.nickName" autocomplete="off" style="width: 100%"></el-input>
									</el-form-item>
201 202 203
									<el-form-item label="用户主页" :label-width="formLabelWidth" class="form-item">
										<el-input v-model="form.userHomeUrl" autocomplete="off" style="width: 100%"></el-input>
									</el-form-item>
204
									<el-form-item label="用户权重" :label-width="formLabelWidth" class="form-item">
205 206 207
										<el-select v-model="form.userWeight" placeholder="请选择">
											<el-option v-for="item in allOptions" :key="item.type" :label="item.name" :value="item.type"></el-option>
										</el-select>
208 209 210 211 212 213 214
									</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>
215
							<el-button type="danger" @click="prepareBlog10(props.row.userName)" size="small">十篇</el-button>
216 217 218 219 220 221 222
							<el-dialog title="提示" :visible.sync="blog10DialogVisible" width="30%" :before-close="handleClose">
								<span>确认此用户添加10篇三连文章吗?</span>
								<span slot="footer" class="dialog-footer">
									<el-button @click="blog10DialogVisible = false">取 消</el-button>
									<el-button type="primary" @click.prevent="onBlog10(currentUserName)">确 定</el-button>
								</span>
							</el-dialog>
223
							<el-button type="danger" @click="prepareDelete(props.row.id)" size="small">删除</el-button>
224 225 226 227 228 229 230 231 232 233
							<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>
						</template>
					</el-table-column>
				</el-table>
234
				<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage" :page-sizes="[8, 50, 100, 200, 400]" :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper" :total="total"></el-pagination>
235 236 237 238 239 240 241 242 243
			</el-main>
			<el-backtop class="backtop"></el-backtop>
		</el-container>
	</div>
</template>

<script>
import axios from 'axios'
export default {
244
	name: 'MyCsdnUser',
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
	data() {
		return {
			form: {
				userName: '',
				nickName: '',
				userHomeUrl: '',
				userWeight: null,
			},
			formInline: {
				userName: '',
				nickName: '',
				articleType: 'blog',
				likeStatus: null,
				collectStatus: null,
				commentStatus: null,
			},
			allOptions: [
				{
					// type: -1,
					name: '全部',
				},
				{
					type: 9,
					name: '铁子',
				},
				{ type: 8, name: '闺蜜' },
				{ type: 7, name: '基友' },
				{ type: 0, name: '默认' },
			],
			articleType: ['全部', 'blog', 'blink', 'download', 'ask'],
			likeStatus: [
				{
					type: -1,
					name: '全部',
				},
				{
					type: 0,
					name: '未处理',
				},
				{ type: 1, name: '已经点过赞' },
				{ type: 2, name: '点赞已满' },
				{ type: 3, name: '取消点赞' },
				{ type: 4, name: '文章状态不能点赞' },
				{ type: 9, name: '点赞成功' },
			],
			collectStatus: [
				{
					type: -1,
					name: '全部',
				},
				{
					type: 0,
					name: '未处理',
				},
				{ type: 1, name: '已经收藏过' },
				{ type: 2, name: '收藏已满' },
				{ type: 3, name: '参数缺失' },
				{ type: 9, name: '收藏成功' },
			],
			commentStatus: [
				{
					type: -1,
					name: '全部',
				},
				{
					type: 0,
					name: '未处理',
				},
				{ type: 1, name: '已经评论过' },
				{ type: 2, name: '评论已满' },
				{ type: 3, name: '禁言' },
				{ type: 4, name: '评论太快' },
				{ type: 5, name: '评论已经到了49条' },
				{ type: 8, name: '其他错误' },
				{ type: 9, name: '评论成功' },
			],
			dialogFormVisible: false,
			dialogMutiFormVisible: false,
			dialogVisible: false,
			editVisible: false,
			tripletVisible: false,
			allTripletDialogVisible: false,
			resetDialogVisible: false,
			autoReplyDialogVisible: false,
			resetUserDialogVisible: false,
			resetUserDayStatusVisible: false,
			blog10DialogVisible: false,
333
			resetLikesCommentDialogVisible: false,
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
			// 用户列表数据
			csdnUserList: [],
			loading: false,
			elementui_page_component_key: 0,
			currentPage: Number(localStorage.getItem('csdnUserPage')) || 1,
			pageSize: 10,
			total: 0,
			// 新增的内容
			formLabelWidth: '120px',
			currentRowId: null,
			currentUserName: null,
			multipleSelection: [],
		}
	},
	watch: {
		'formInline.userName'(newVal, oldVal) {
			if (newVal !== oldVal) {
				this.currentPage = 1
				localStorage.setItem('csdnUserPage', this.currentPage)
				this.userPage()
			}
		},
		'formInline.nickName'(newVal, oldVal) {
			if (newVal !== oldVal) {
				this.currentPage = 1
				localStorage.setItem('csdnUserPage', this.currentPage)
				this.userPage()
			}
		},
		// 监听currentPage的变化,将新值保存到localStorage中
		currentPage(newPage) {
			localStorage.setItem('csdnUserPage', newPage.toString())
		},
	},
	created() {
		//获取问题类型的枚举
		this.userPage()
	},
	mounted() {
		this.currentPage = 1
	},
	methods: {
		prepareAdd() {
			this.form.userName = ''
			this.form.nickName = ''
			this.dialogFormVisible = true
		},
		prepareAllTriplet() {
			this.allTripletDialogVisible = true
		},
		prepareResetUserDayStatus(userName) {
			this.resetUserDayStatusVisible = true
			this.currentUserName = userName
		},
		prepareBlog10(userName) {
			this.blog10DialogVisible = true
			this.currentUserName = userName
		},
		prepareReset() {
			this.resetDialogVisible = true
		},
395 396 397
		prepareResetLikesComment() {
			this.resetLikesCommentDialogVisible = true
		},
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
		prepareAutoReply() {
			this.autoReplyDialogVisible = true
		},
		prepareResetUser() {
			this.resetUserDialogVisible = true
		},
		prepareMutiAdd() {
			this.form.userName = ''
			this.dialogMutiFormVisible = true
		},
		prepareDelete(id) {
			this.currentRowId = id
			this.dialogVisible = true
		},
		prepareTriplet(userName) {
			this.currentUserName = userName
			this.tripletVisible = true
		},
		preEdit(id, userName, nickName, userHomeUrl, userWeight) {
			this.form.userName = userName
			this.form.nickName = nickName
			this.form.userHomeUrl = userHomeUrl
			this.form.userWeight = userWeight
			this.currentRowId = id
			this.editVisible = true
		},
		handleClose(done) {
			this.$confirm('确认关闭?')
				.then((_) => {
					done()
				})
				.catch((_) => {})
		},
		handleConfirm(addType) {
			this.dialogFormVisible = false // 关闭对话框
			this.dialogMutiFormVisible = false
			this.addUser(addType) // 发送请求
		},
		handleSelectionChange(val) {
			this.multipleSelection = val
		},
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
		async addUser(addType) {
			try {
				this.loading = true
				const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/user/add', {
					addType: addType,
					userName: this.form.userName,
					nickName: this.form.nickName,
					userWeight: this.form.userWeight,
				})
				if (res.code === 200) {
					this.currentPage = 1
					this.form.userName = ''
					this.form.nickName = ''
					this.form.userWeight = null
					this.userPage()
				} else {
					this.errorMsg(res.message)
					console.error('Received non-200 status code', res)
				}
			} catch (error) {
				console.error('An error occurred while adding the questionName:', error)
				// 异常处理逻辑
			} finally {
				this.loading = false
			}
		},
		errorMsg(msg) {
			this.$message({
				showClose: true,
				message: msg,
				type: 'error',
			})
		},
		async editConfirm() {
			try {
				this.loading = true
				const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/user/update', {
					id: this.currentRowId,
					userName: this.form.userName,
					nickName: this.form.nickName,
					userWeight: this.form.userWeight,
					userHomeUrl: this.form.userHomeUrl,
				})
				if (res.code === 200) {
					this.form.userName = ''
					this.form.nickName = ''
					this.form.userHomeUrl = ''
					this.form.userWeight = null
					this.editVisible = false
					currentRowId: null
					this.userPage()
				} else {
					console.error('Received non-200 status code', res)
				}
			} catch (error) {
				console.error('An error occurred while adding the questionName:', error)
				// 异常处理逻辑
			} finally {
				this.loading = false
			}
		},
		async autoReply() {
			this.loading = true
			this.autoReplyDialogVisible = false
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/autoReply')
			if (res.code === 200) {
				this.userPage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
		async allTriplet() {
			this.loading = true
			this.allTripletDialogVisible = false
			if (this.multipleSelection && this.multipleSelection.length === 0) {
				console.error('请选择需要处理的项')
			} else {
				let userNames = this.multipleSelection.map((item) => item.userName)
				const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/multiTriplet', userNames)
				if (res.code === 200) {
					this.multipleSelection = []
					this.userPage()
				} else {
					console.error('Received non-200 status code', res)
				}
			}
			this.loading = false
		},
		async triplet(userName) {
			this.loading = true
			this.tripletVisible = false
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/singleTriplet?username=' + userName)
			if (res.code === 200) {
				this.currentUserName = null
				this.userPage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
541 542 543 544 545 546 547 548 549 550 551
		async resetLikesComment() {
			this.loading = true
			this.resetLikesCommentDialogVisible = false
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/fixLikesStatus')
			if (res.code === 200) {
				this.userPage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
		async onBlog10(userName) {
			this.loading = true
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/add10Blog?username=' + userName)
			if (res.code === 200) {
				this.currentUserName = null
				this.blog10DialogVisible = false
				this.userPage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
		async resetUserDayStatus(userName) {
			this.loading = true
			this.resetUserDayStatusVisible = false
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/resetCsdnUserInfo?username=' + userName)
			if (res.code === 200) {
				this.currentUserName = null
				this.userPage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
		async onDelete(id) {
			this.loading = true
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/user/delete', {
				params: {
					id: id,
				},
			})
			this.dialogVisible = false
			this.userPage()
			this.loading = false
		},
		async reset() {
			this.loading = true
			this.resetDialogVisible = false
			if (this.multipleSelection && this.multipleSelection.length === 0) {
				console.error('请选择需要处理的项')
			} else {
				let userNames = this.multipleSelection.map((item) => item.userName)
				console.log(userNames)
				const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/resetCsdnUserInfo', userNames)
				if (res.code === 200) {
					this.multipleSelection = []
					this.userPage()
				} else {
					console.error('Received non-200 status code', res)
				}
			}
			this.loading = false
		},
		async resetUser() {
			this.loading = true
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/resetUserDayStatus')
			this.resetUserDialogVisible = false
			this.userPage()
			this.loading = false
		},
		refreshPage() {
			//获取问题类型的枚举
			this.userPage()
			location.reload()
		},
		async userPage() {
			this.loading = true
			const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/user/page', {
				page: this.currentPage,
				pageSize: this.pageSize,
				userName: this.formInline.userName,
				nickName: this.formInline.nickName,
				articleType: this.formInline.articleType == '全部' ? '' : this.formInline.articleType,
				userWeight: this.formInline.userWeight == -1 ? null : this.formInline.userWeight,
				likeStatus: this.formInline.likeStatus == -1 ? null : this.formInline.likeStatus,
				collectStatus: this.formInline.collectStatus == -1 ? null : this.formInline.collectStatus,
				commentStatus: this.formInline.commentStatus == -1 ? null : this.formInline.commentStatus,
			})
			if (res.code === 200) {
				this.total = res.result.totalElements
632

633 634 635 636 637 638 639
				const userWeightMap = {}
				this.allOptions.forEach((option) => {
					userWeightMap[option.type] = option.name
				})
				res.result.content.forEach((item) => {
					item.userWeightName = userWeightMap[item.userWeight]
				})
640

641 642 643 644 645 646 647
				const likeStatusMap = {}
				this.likeStatus.forEach((option) => {
					likeStatusMap[option.type] = option.name
				})
				res.result.content.forEach((item) => {
					item.likeStatusName = likeStatusMap[item.likeStatus]
				})
648

649 650 651 652 653 654 655
				const collectStatusMap = {}
				this.collectStatus.forEach((option) => {
					collectStatusMap[option.type] = option.name
				})
				res.result.content.forEach((item) => {
					item.collectStatusName = collectStatusMap[item.collectStatus]
				})
656

657 658 659 660 661 662 663
				const commentStatusMap = {}
				this.commentStatus.forEach((option) => {
					commentStatusMap[option.type] = option.name
				})
				res.result.content.forEach((item) => {
					item.commentStatusName = commentStatusMap[item.commentStatus]
				})
664

665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
				this.csdnUserList = res.result.content
			}
			this.loading = false
		},
		handleCurrentChange(currentPage) {
			this.currentPage = currentPage
			this.userPage()
		},
		handleSizeChange(currentSize) {
			this.pageSize = currentSize
			this.userPage()
		},
		getTagType(statusName) {
			if (statusName == '未处理') {
				return 'info'
			} else if (statusName == '已经点过赞' || statusName == '已经收藏过' || statusName == '已经评论过') {
				return 'success'
			} else if (statusName == '点赞已满' || statusName == '收藏已满' || statusName == '评论已满' || statusName == '禁言' || statusName == '评论已经到了49条') {
				return 'danger'
			} else if (statusName == '点赞成功' || statusName == '收藏成功' || statusName == '评论成功') {
				return 'success'
			} else if (statusName == '参数缺失' || statusName == '其他错误' || statusName == '取消点赞' || statusName == '评论太快') {
				return 'warning'
			}
		},
	},
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
}
</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;
}

.red-title {
	line-height: 24px;
	font-size: 18px;
	color: red;
}

.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;
}
.custom-textarea {
	width: 100%;
	text-align: left;
}
.backtop:hover {
	background-color: #0050a0;
}
</style>