MyRedPackage.vue 11.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<template>
	<div>
		<el-container>
			<el-main>
				<el-form :inline="true" :model="formInline" class="demo-form-inline">
					<el-form-item>
						<el-input size="small" clearable v-model="formInline.nickName" placeholder="请输入用户昵称" @keydown.enter.native="redPackagePage"></el-input>
					</el-form-item>

					<el-form-item>
11 12 13 14 15
						<el-input size="small" clearable v-model="formInline.myAmountStart" placeholder="请输入最小金额" @keydown.enter.native="redPackagePage"></el-input>
					</el-form-item>

					<el-form-item>
						<el-input size="small" clearable v-model="formInline.myAmountEnd" placeholder="请输入最大金额" @keydown.enter.native="redPackagePage"></el-input>
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
					</el-form-item>

					<el-form-item>
						<el-select size="small" v-model="formInline.itemType" placeholder="请选择红包类型" @change="redPackagePage">
							<el-option v-for="type in itemType" :key="type" :label="type" :value="type"></el-option>
						</el-select>
					</el-form-item>

					<el-form-item>
						<el-select size="small" v-model="formInline.msg" placeholder="请选择当前状态" @change="redPackagePage">
							<el-option v-for="type in msg" :key="type" :label="type" :value="type"></el-option>
						</el-select>
					</el-form-item>

					<el-form-item>
						<el-button size="small" type="primary" @click="redPackagePage">查询</el-button>
					</el-form-item>

					<el-form-item>
						<el-button size="small" type="primary" @click="prepareGetToday">今日所得</el-button>
						<el-dialog v-loading="loading" title="质量分查询" :visible.sync="getTodayDialogVisible" style="width: 100%">
							<el-form :model="form" class="custom-form">
								<el-row :gutter="20">
									<el-col :span="12">
										<el-input v-model="form.todayGet" placeholder="今日所得" autocomplete="off"></el-input>
										<el-input v-model="form.allGet" placeholder="累计所得" autocomplete="off"></el-input>
									</el-col>
								</el-row>
							</el-form>
							<div slot="footer" class="dialog-footer">
								<el-button @click="getTodayDialogVisible = false">取 消</el-button>
								<el-button type="primary" @click="getToday">查 询</el-button>
							</div>
						</el-dialog>
					</el-form-item>

					<el-form-item>
						<el-button size="small" type="primary" @click="prepareViewCountAll">浏览量</el-button>
						<el-dialog title="提示" :visible.sync="viewCountAllDialogVisible" width="30%" :before-close="handleClose">
							<span>确认处理浏览量吗?</span>
							<span slot="footer" class="dialog-footer">
								<el-button @click="viewCountAllDialogVisible = false">取 消</el-button>
								<el-button type="primary" @click.prevent="viewCountAll()">确 定</el-button>
							</span>
						</el-dialog>
					</el-form-item>
				</el-form>
				<el-table ref="multipleTable" v-loading="loading" :data="csdnRedPackageList" tooltip-effect="dark" style="width: 100%">
					<el-table-column prop="id" label="序号" width="100" sortable></el-table-column>
65
					<!-- <el-table-column prop="userName" label="用户名" show-overflow-tooltip></el-table-column> -->
66 67 68 69 70 71 72 73 74
					<el-table-column prop="nickName" label="用户昵称" show-overflow-tooltip>
						<template slot-scope="scope">
							<a :href="scope.row.shareUrl" target="_blank">{{ scope.row.nickName }}</a>
						</template>
					</el-table-column>

					<el-table-column prop="viewCount" label="浏览量" show-overflow-tooltip></el-table-column>
					<el-table-column prop="itemType" label="类型" show-overflow-tooltip></el-table-column>

75 76
					<el-table-column prop="orderNo" label="订单号" show-overflow-tooltip></el-table-column>

77 78 79 80 81 82
					<el-table-column prop="myAmount" label="我的金额" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="getTagType(scope.row.myAmount)">{{ scope.row.myAmount }}</el-tag>
						</template>
					</el-table-column>

83 84 85 86 87
					<el-table-column prop="msg" label="详情" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="getMsgType(scope.row.msg)">{{ scope.row.msg }}</el-tag>
						</template>
					</el-table-column>
88 89 90 91

					<el-table-column label="更新时间">
						<template slot-scope="props">{{ props.row.updateTime | dateFormat }}</template>
					</el-table-column>
92
					<el-table-column prop="操作" label="操作">
93
						<template slot-scope="props">
94
							<el-button type="success" @click="dealViewCount(props.row.id)" size="small">浏览量</el-button>
95
							<el-button size="small" type="primary" @click.prevent="preEdit(props.row.id, props.row.nickName, props.row.myAmount, props.row.msg)" width="200">编辑</el-button>
96 97 98
							<el-dialog title="编辑红包信息" :visible.sync="editVisible">
								<el-form :model="form">
									<el-form-item label="用户名称" class="form-item">
99
										<el-input v-model="form.nickName" autocomplete="off" style="width: 100%"></el-input>
100 101 102 103
									</el-form-item>
									<el-form-item label="我的金额" class="form-item">
										<el-input v-model="form.myAmount" autocomplete="off" style="width: 100%"></el-input>
									</el-form-item>
104 105 106
									<el-form-item label="详细信息" class="form-item">
										<el-input v-model="form.msg" autocomplete="off" style="width: 100%"></el-input>
									</el-form-item>
107 108 109 110 111 112
								</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>
113 114 115 116 117 118 119 120 121 122 123 124 125
						</template>
					</el-table-column>
				</el-table>
				<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>
			</el-main>
			<el-backtop class="backtop"></el-backtop>
		</el-container>
	</div>
</template>

<script>
import axios from 'axios'
export default {
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
	name: 'MyRedPackage',

	data() {
		return {
			form: {
				todayGet: '',
				allGet: '',
				myAmount: '',
				nickName: '',
				msg: '',
			},
			formInline: {
				nickName: '',
				itemType: '',
				myAmount: '',
				msg: '',
				myAmountStart: '',
				myAmountEnd: '',
			},
			itemType: ['全部', 'article', 'blink', 'topic'],
			msg: ['全部', 'received', 'completed', '其它'],
			deleteDialogVisible: false,
			editVisible: false,
			viewCountAllDialogVisible: false,
			getTodayDialogVisible: false,
			// 用户列表数据
			csdnRedPackageList: [],
			loading: false,
			elementui_page_component_key: 0,
			currentPage: Number(localStorage.getItem('redPackagePage')) || 1,
			pageSize: 10,
			total: 0,
			currentRowId: null,
			currentUserName: null,
		}
	},
	watch: {
		formInline: {
			handler(newVal, oldVal) {
				this.currentPage = 1
				localStorage.setItem('redPackagePage', this.currentPage)
				this.redPackagePage()
			},
			deep: true,
		},
		// 监听currentPage的变化,将新值保存到localStorage中
		currentPage(newPage) {
			localStorage.setItem('redPackagePage', newPage.toString())
		},
	},
	created() {
		//获取问题类型的枚举
		this.redPackagePage()
	},
	mounted() {
		this.currentPage = 1
	},
	methods: {
		prepareViewCountAll() {
			this.viewCountAllDialogVisible = true
		},
		prepareGetToday() {
			this.form.todayGet = ''
			this.form.allGet = ''
			this.getTodayDialogVisible = true
		},
		prepareDelete(id) {
			this.currentRowId = id
			this.deleteDialogVisible = true
		},
196

197 198 199 200 201 202 203
		preEdit(id, nickName, myAmount, msg) {
			this.form.nickName = nickName
			this.form.myAmount = myAmount
			this.form.msg = msg
			this.currentRowId = id
			this.editVisible = true
		},
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
		handleClose(done) {
			this.$confirm('确认关闭?')
				.then((_) => {
					done()
				})
				.catch((_) => {})
		},
		handleConfirm(addType) {
			this.dialogFormVisible = false // 关闭对话框
			this.dialogMutiFormVisible = false
			this.addUser(addType) // 发送请求
		},
		async redPackagePage() {
			this.loading = true
			const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/redPackage/page', {
				page: this.currentPage,
				pageSize: this.pageSize,
				nickName: this.formInline.nickName,
				myAmountStart: this.formInline.myAmountStart,
				myAmountEnd: this.formInline.myAmountEnd,
				itemType: this.formInline.itemType == '全部' ? null : this.formInline.itemType,
				msg: this.formInline.msg == '全部' ? null : this.formInline.msg,
			})
			if (res.code === 200) {
				this.total = res.result.totalElements
				this.csdnRedPackageList = res.result.content
			}
			this.loading = false
		},
234

235 236 237 238 239 240 241 242 243 244
		async dealViewCount(id) {
			this.loading = true
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/redPackage/getViewCountById?id=' + id)
			if (res.code === 200) {
				this.redPackagePage()
			} else {
				console.error('Received non-200 status code', res)
			}
			this.loading = false
		},
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
		async editConfirm() {
			try {
				this.loading = true
				const { data: res } = await axios.post('http://43.139.90.182:8888/csdn/redPackage/update', {
					id: this.currentRowId,
					nickName: this.form.nickName,
					myAmount: this.form.myAmount,
					msg: this.form.msg,
				})
				if (res.code === 200) {
					this.form.nickName = ''
					this.form.myAmount = ''
					this.form.msg = ''
					this.editVisible = false
					currentRowId: null
					this.redPackagePage()
				} 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
			}
		},
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
		async viewCountAll() {
			this.loading = true
			this.viewCountAllDialogVisible = false
			const { data: res1 } = await axios.get('http://43.139.90.182:8888/csdn/redPackage/getViewCountAll')
			if (res1.code === 200) {
				this.redPackagePage()
			} else {
				console.error('Received non-200 status code', res1)
			}
			this.loading = false
		},
		async getToday() {
			const { data: res } = await axios.get('http://43.139.90.182:8888/csdn/redPackage/getMyAmount')
			if (res.code === 200) {
				this.form.todayGet = res.result.todayGet
				this.form.allGet = res.result.allGet
			} else {
				console.error('Received non-200 status code', res)
			}
		},
		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.deleteDialogVisible = false
			this.redPackagePage()
			this.loading = false
		},
		refreshPage() {
			//获取问题类型的枚举
			this.redPackagePage()
			location.reload()
		},
		handleCurrentChange(currentPage) {
			this.currentPage = currentPage
			this.redPackagePage()
		},
		handleSizeChange(currentSize) {
			this.pageSize = currentSize
			this.redPackagePage()
		},
		getTagType(myAmount) {
			if (myAmount >= 0.3) {
				return 'success'
			} else if (myAmount >= 0.2) {
				return 'primary'
			} else if (myAmount >= 0.1) {
				return 'warning'
			} else {
				return 'danger'
			}
		},
		getMsgType(msg) {
			if (msg == 'received' || msg == 'completed') {
				return 'success'
			} else {
				return 'danger'
			}
		},
	},
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
}
</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>