MyAccountManagement.vue 12.2 KB
Newer Older
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
<template>
	<div>
		<el-container>
			<el-main>
				<el-form :inline="true" :model="formInline" class="demo-form-inline">
					<el-form-item>
						<el-date-picker v-model="formInline.accountDate" type="daterange" align="right" unlink-panels range-separator="~" start-placeholder="开始日期" end-placeholder="结束日期" :value-format="'yyyy-MM-dd'" :picker-options="pickerOptions"></el-date-picker>
					</el-form-item>
					<el-form-item>
						<el-select v-model="formInline.operateType" placeholder="请选择类型" @change="accountManagementPage">
							<el-option v-for="item in operateTypeArray" :key="item.type" :label="item.name" :value="item.type"></el-option>
						</el-select>
					</el-form-item>
					<el-form-item>
						<el-select v-model="formInline.productName" placeholder="请选择业务" @change="accountManagementPage">
							<el-option v-for="type in productName" :key="type" :label="type" :value="type"></el-option>
						</el-select>
					</el-form-item>
					<el-form-item>
						<el-select v-model="formInline.code" placeholder="请选择code" @change="accountManagementPage">
							<el-option v-for="type in code" :key="type" :label="type" :value="type"></el-option>
						</el-select>
					</el-form-item>
					<el-form-item>
						<el-button type="primary" @click="accountManagementPage">查询</el-button>
					</el-form-item>

					<el-form-item>
						<el-button type="primary" @click="add5AccountInfo">同步5页</el-button>
					</el-form-item>
					<el-form-item>
						<el-button type="primary" @click="addAccountInfo">同步全部</el-button>
					</el-form-item>
					<el-form-item>
						<el-button type="primary" @click="mall">商城</el-button>
					</el-form-item>
					<br />
					<el-form-item label="当前余额:" class="form-item">
						<el-tag style="width: 55px">{{ form.currentAmount }}</el-tag>
					</el-form-item>
					<el-form-item label="永久有效:" class="form-item">
						<el-tag style="width: 55px">{{ form.normalAmount }}</el-tag>
					</el-form-item>
					<el-form-item label="可过期:" class="form-item">
						<el-tag style="width: 55px">{{ form.expireAmount }}</el-tag>
					</el-form-item>
					<el-form-item label="总收入:" class="form-item">
						<el-tag type="success" style="width: 55px">{{ form.totalGetAmount }}</el-tag>
					</el-form-item>
					<el-form-item label="总支出:" class="form-item">
						<el-tag type="warning" style="width: 55px">{{ form.totalPayAmount }}</el-tag>
					</el-form-item>
					<el-form-item label="当页累计:" class="form-item">
						<el-tag style="width: 55px">{{ form.currentTotal }}</el-tag>
					</el-form-item>
				</el-form>
				<el-table border :data="accountManagementList" v-loading="loading">
					<el-table-column sortable align="center" prop="id" label="序号" width="100"></el-table-column>

					<el-table-column sortable align="center" prop="amount" label="金额" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="isMaxValue(scope.row.amount, 'amount')">{{ scope.row.amount }}</el-tag>
						</template>
					</el-table-column>

					<el-table-column prop="product" label="业务类型" show-overflow-tooltip></el-table-column>
					<el-table-column prop="productName" label="业务名称" show-overflow-tooltip></el-table-column>
					<el-table-column prop="code" label="业务code" show-overflow-tooltip></el-table-column>
					<el-table-column prop="orderNo" label="订单号" show-overflow-tooltip></el-table-column>
					<el-table-column sortable prop="expireTime" label="过期时间" show-overflow-tooltip></el-table-column>

					<el-table-column align="center" prop="operateType" label="收入支出" show-overflow-tooltip>
						<template slot-scope="scope">
							<el-tag :type="getTagType(scope.row.operateTypeName)">{{ scope.row.operateTypeName }}</el-tag>
						</template>
					</el-table-column>

					<el-table-column prop="description" label="详情" show-overflow-tooltip></el-table-column>

					<el-table-column label="业务时间">
						<template slot-scope="props">{{ props.row.time | dateFormat }}</template>
					</el-table-column>
				</el-table>
				<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage" :page-sizes="[10, 20, 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'
import ApiService from '../../api/ApiService'
export default {
    name: 'MyAccountManagement',

    data() {
        return {
            pickerOptions: {
                disabledDate(time) {
                    return time.getTime() > Date.now()
                },

                shortcuts: [
                    {
                        text: '最近一周',
                        onClick(picker) {
                            const end = new Date()
                            const start = new Date()
                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
                            picker.$emit('pick', [start, end])
                        },
                    },
                    {
                        text: '最近一个月',
                        onClick(picker) {
                            const end = new Date()
                            const start = new Date()
                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
                            picker.$emit('pick', [start, end])
                        },
                    },
                    {
                        text: '最近三个月',
                        onClick(picker) {
                            const end = new Date()
                            const start = new Date()
                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
                            picker.$emit('pick', [start, end])
                        },
                    },
                ],
            },
            productName: ['全部', '红包', '盲盒', '商城iOS支付', 'proceeds_balance', 'VIP'],
            code: [7000, 7002],
            formInline: {
                accountDate: null,
                operateType: null,
                productName: null,
                code: null,
            },
            form: {
                currentAmount: '',
                totalGetAmount: '',
                totalPayAmount: '',
                expireAmount: '',
                normalAmount: '',
                currentTotal: '',
            },
            operateTypeArray: [
                {
                    type: -1,
                    name: '全部',
                },
                {
                    type: 1,
                    name: '收入',
                },
                { type: 2, name: '支出' },
            ],

            accountManagementList: [],
            loading: false,
            elementui_page_component_key: 0,
            currentPage: Number(localStorage.getItem('accountManagementPage')) || 1,
            pageSize: 10,
            total: 0,
        }
    },
    watch: {
        formInline: {
            handler(newVal, oldVal) {
                this.currentPage = 1
                localStorage.setItem('accountManagementPage', this.currentPage)
                this.accountManagementPage()
            },
            deep: true,
        },
        // 监听currentPage的变化,将新值保存到localStorage中
        currentPage(newPage) {
            localStorage.setItem('accountManagementPage', newPage.toString())
        },
    },
    created() {
        //获取问题类型的枚举
        this.accountManagementPage()
    },
    mounted() {
        this.currentPage = 1
    },
    activated() {
        this.accountManagementPage()
    },
    methods: {
        async accountManagementPage() {
            this.loading = true
            const { data: res } = await ApiService.accountManagementPage(this.currentPage, this.pageSize, this.formInline)
            if (res.code === 200) {
                this.total = res.result.from.totalElements
                const userWeightMap = {}
                this.operateTypeArray.forEach((option) => {
                    userWeightMap[option.type] = option.name
                })
                res.result.from.content.forEach((item) => {
                    item.operateTypeName = userWeightMap[item.operateType]
                })
                this.accountManagementList = res.result.from.content
                this.form.currentAmount = res.result.currentAmount
                this.form.totalGetAmount = res.result.totalGetAmount
                this.form.totalPayAmount = res.result.totalPayAmount
                this.form.expireAmount = res.result.expireAmount
                this.form.normalAmount = res.result.normalAmount
                this.form.currentTotal = res.result.currentTotal
            }
            this.loading = false
        },

        async addAccountInfo() {
            this.loading = true
            const { data: res } = await ApiService.addAccountInfo()
            if (res.code === 200) {
                this.accountManagementPage()
            }
            this.loading = false
        },
        async add5AccountInfo() {
            this.loading = true
            const { data: res } = await ApiService.add5AccountInfo()
            if (res.code === 200) {
                this.accountManagementPage()
            }
            this.loading = false
        },

        handleCurrentChange(currentPage) {
            this.currentPage = currentPage
            this.accountManagementPage()
        },
        handleSizeChange(currentSize) {
            this.pageSize = currentSize
            this.accountManagementPage()
        },
        isMaxValue(value, tag) {
            const maxValue = this.getMaxValue(tag)[tag]
            if (value === maxValue) {
                if (tag === 'loseRedPackageCount') {
                    return 'danger'
                } else {
                    return 'success'
                }
            }
            const minValue = this.getMinValue(tag)[tag]
            if (value === minValue) {
                if (tag === 'loseRedPackageCount') {
                    return 'success'
                } else {
                    return 'danger'
                }
            }
            return 'primary'
        },
        getMaxValue(_tag) {
            return this.accountManagementList.reduce((maxObj, currentObj) => {
                const tagValue = currentObj[_tag]

                if (tagValue !== undefined && tagValue > maxObj[_tag]) {
                    return currentObj
                } else {
                    return maxObj
                }
            }, this.accountManagementList[0])
        },
        getMinValue(_tag) {
            return this.accountManagementList.reduce((maxObj, currentObj) => {
                const tagValue = currentObj[_tag]

                if (tagValue !== undefined && tagValue < maxObj[_tag]) {
                    return currentObj
                } else {
                    return maxObj
                }
            }, this.accountManagementList[0])
        },
        refreshPage() {
            //获取问题类型的枚举
            this.accountManagementPage()
            location.reload()
        },
        getTagType(operateTypeName) {
            if (operateTypeName == '收入') {
                return 'success'
            } else {
                return 'danger'
            }
        },
        mall() {
            // 新页面打开
            window.open('https://mall.csdn.net/search?cat1=379&cat2=385&cat3=431&sort=salesVolume&asc=desc&page=1')
        },
    },
}
</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>