|
|
@ -7,246 +7,48 @@ import axios from 'axios' |
|
|
|
import request from '@/util/http' |
|
|
|
import moment from 'moment' |
|
|
|
|
|
|
|
// 变量 |
|
|
|
// 这是动态表头, |
|
|
|
const columnOptions = ref([ |
|
|
|
{ prop: 'username', label: '姓名', width: 125 }, |
|
|
|
{ prop: 'jwcode', label: '精网号', width: 125 }, |
|
|
|
{ prop: 'area', label: '所属地区', width: 125 }, |
|
|
|
{ prop: 'activityName', label: '活动名称', width: 150 }, |
|
|
|
{ prop: 'rechargeGold', label: '充值金额', width: 125, sortable: true }, |
|
|
|
{ prop: 'rechargeWay', label: '充值方式', width: 125 }, |
|
|
|
{ prop: 'paidGold', label: '永久金币', width: 125, sortable: true }, |
|
|
|
{ prop: 'freeGold', label: '免费金币', width: 125, sortable: true }, |
|
|
|
{ prop: 'remark', label: '备注', width: 200, showOverflowTooltip: true }, |
|
|
|
{ prop: 'payWay', label: '支付方式', width: 125 }, |
|
|
|
{ prop: 'rechargeVoucher', label: '支付凭证', width: 125 }, |
|
|
|
{ prop: 'name', label: '提交人', width: 125 }, |
|
|
|
{ prop: 'status', label: '审核状态', width: 125 }, |
|
|
|
{ prop: 'reson', label: '驳回理由', width: 200 }, |
|
|
|
{ prop: 'rechargeTime', label: '交款时间', width: 200, sortable: true }, |
|
|
|
{ prop: 'createTime', label: '提交时间', width: 200, sortable: true }, |
|
|
|
{ prop: 'auditTime', label:'审核时间', width:200, sortable:true} |
|
|
|
]) |
|
|
|
|
|
|
|
// 默认显示 |
|
|
|
const defaultColumns = ['username', 'jwcode', 'area', 'activityName', 'rechargeGold', 'rechargeWay', 'paidGold', 'freeGold', |
|
|
|
'remark', 'payWay', 'rechargeVoucher', 'name', 'status', 'reson', 'rechargeTime', 'createTime', 'auditTime'] |
|
|
|
const selectedColumns = ref([...defaultColumns]) |
|
|
|
//这是获取用户信息的接口 |
|
|
|
const adminData = ref({}) |
|
|
|
const Ref = ref(null) |
|
|
|
const getAdminData = async function () { |
|
|
|
try { |
|
|
|
const result = await request({ |
|
|
|
url: '/admin/userinfo', |
|
|
|
url: '', |
|
|
|
data: {} |
|
|
|
}) |
|
|
|
adminData.value = result |
|
|
|
console.log('请求成功', result) |
|
|
|
console.log('用户信息', adminData.value) |
|
|
|
} catch (error) { |
|
|
|
console.log('请求失败', error) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 充值明细表格 |
|
|
|
const tableData = ref([]) |
|
|
|
// 搜索====================================== |
|
|
|
// 搜索rechargeVo |
|
|
|
const rechargeVo = ref({ |
|
|
|
rechargeWay: '客服充值' |
|
|
|
}) |
|
|
|
// 搜索对象 |
|
|
|
const getObj = ref({ |
|
|
|
pageNum: 1, |
|
|
|
pageSize: 50 |
|
|
|
}) |
|
|
|
//分页总条目 |
|
|
|
const total = ref(100) |
|
|
|
// 搜索对象时间 |
|
|
|
const getTime = ref([]) |
|
|
|
// 搜索活动列表 |
|
|
|
const activity = ref([]) |
|
|
|
// 所有信息 |
|
|
|
const allData = ref([]) |
|
|
|
// 搜索地区列表 |
|
|
|
const area = ref([]) |
|
|
|
|
|
|
|
// 编辑====================================== |
|
|
|
// 驳回弹出框 |
|
|
|
const rejectVisible = ref(false) |
|
|
|
// 驳回对象 |
|
|
|
const rejectObj = ref({}) |
|
|
|
// 通过对象 |
|
|
|
const passObj = ref({}) |
|
|
|
|
|
|
|
//标签页默认高亮选项 |
|
|
|
const activeName = ref('all') |
|
|
|
|
|
|
|
const activeName = ref('wait') |
|
|
|
// 支付方式选项 |
|
|
|
const payWay = [ |
|
|
|
{ |
|
|
|
value: '微信', |
|
|
|
label: '微信' |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '支付宝', |
|
|
|
label: '支付宝' |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '银联', |
|
|
|
label: '银联' |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '信用卡', |
|
|
|
label: '信用卡' |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '借记卡', |
|
|
|
label: '借记卡' |
|
|
|
},{ |
|
|
|
value:'.....................................'// 待补充 |
|
|
|
} |
|
|
|
] |
|
|
|
|
|
|
|
// //表格高度 |
|
|
|
// const tableHeight = computed(function () { |
|
|
|
// return (getObj.value.pageSize + 2) * 60 + "px"; |
|
|
|
// }); |
|
|
|
|
|
|
|
// 表单验证ref |
|
|
|
const Ref = ref(null) |
|
|
|
|
|
|
|
// 方法 |
|
|
|
// 合计数存储 |
|
|
|
// 统计合计数 |
|
|
|
const trueGold = ref(0) |
|
|
|
const trueCount = ref(0) |
|
|
|
const trueRGold = ref(0) |
|
|
|
const trueFGold = ref(0) |
|
|
|
// 转化一下,保留两位小数,展示时填充转化后的变量名 |
|
|
|
const formattedTrueGold = computed(() => trueGold.value.toFixed(2)) |
|
|
|
const formattedTrueRGold = computed(() => trueRGold.value.toFixed(2)) |
|
|
|
const formattedTrueFGold = computed(() => trueFGold.value.toFixed(2)) |
|
|
|
// 待审核条数 |
|
|
|
const pendingCount = ref(0) |
|
|
|
// 待审核金币数 |
|
|
|
const pendingGold = ref(0) |
|
|
|
const pendingRGold = ref(0) |
|
|
|
const pendingFGold = ref(0) |
|
|
|
// 已通过条数 |
|
|
|
const approvedCount = ref(0) |
|
|
|
// 已通过金币数 |
|
|
|
const approvedGold = ref(0) |
|
|
|
const approvedRGold = ref(0) |
|
|
|
const approvedFGold = ref(0) |
|
|
|
// 已驳回条数 |
|
|
|
const rejectedCount = ref(0) |
|
|
|
// 已驳回金币数 |
|
|
|
const rejectedGold = ref(0) |
|
|
|
const rejectedRGold = ref(0) |
|
|
|
const rejectedFGold = ref(0) |
|
|
|
// 搜索============================================================== |
|
|
|
// 搜索方法 |
|
|
|
const get = async function (val) { |
|
|
|
try { |
|
|
|
// 地区赋值 |
|
|
|
if (adminData.value.area === '泰国') { |
|
|
|
rechargeVo.value.areas = ['泰国', '越南'] |
|
|
|
} else if (adminData.value.area !== '总部') { |
|
|
|
rechargeVo.value.area = adminData.value.area |
|
|
|
} |
|
|
|
// 搜索参数页码赋值 |
|
|
|
if (typeof val === 'number') { |
|
|
|
getObj.value.pageNum = val |
|
|
|
} |
|
|
|
// 搜索参数时间赋值 |
|
|
|
if (getTime.value != null) { |
|
|
|
if (getTime.value.startDate != '' && getTime.value.endDate != '') { |
|
|
|
rechargeVo.value.startDate = getTime.value[0] |
|
|
|
rechargeVo.value.endDate = getTime.value[1] |
|
|
|
} |
|
|
|
} else { |
|
|
|
rechargeVo.value.startDate = '' |
|
|
|
rechargeVo.value.endDate = '' |
|
|
|
} |
|
|
|
rechargeVo.value.sortField = sortField.value |
|
|
|
rechargeVo.value.sortOrder = sortOrder.value |
|
|
|
console.log('搜索参数', getObj.value) |
|
|
|
// 发送POST请求 |
|
|
|
const result = await request({ |
|
|
|
url: '/recharge/recharge', |
|
|
|
data: { |
|
|
|
pageNum: getObj.value.pageNum, |
|
|
|
pageSize: getObj.value.pageSize, |
|
|
|
rechargeVo: { ...rechargeVo.value } |
|
|
|
} |
|
|
|
}) |
|
|
|
// 合计数的接口 |
|
|
|
// 复制一份 rechargeVo.value 并移除排序字段和排序方式 |
|
|
|
const detailWithoutSort = { ...rechargeVo.value } |
|
|
|
delete detailWithoutSort.sortField |
|
|
|
delete detailWithoutSort.sortOrder |
|
|
|
delete detailWithoutSort.status |
|
|
|
const result2 = await request({ |
|
|
|
url: '/recharge/recharge/RechargeA', |
|
|
|
data: detailWithoutSort |
|
|
|
}) |
|
|
|
// 做一个判断,如果result2.data[i].flag="待审核",那么 totalData.value = result2.data[i],否则就赋值为0 |
|
|
|
// 统计合计数 |
|
|
|
if (result2.data) { |
|
|
|
result2.data.forEach((item) => { |
|
|
|
switch (item.auditStatus) { |
|
|
|
case '待审核': |
|
|
|
// 若 item.raudit 为空则赋值为 0 |
|
|
|
pendingCount.value = item.raudit || 0 |
|
|
|
// 若 item.sumRaudit 为空则赋值为 0 |
|
|
|
pendingGold.value = item.sumRaudit || 0 |
|
|
|
pendingRGold.value = item.sumRaudit1 || 0 |
|
|
|
pendingFGold.value = item.sumRaudit2 || 0 |
|
|
|
break |
|
|
|
case '已通过': |
|
|
|
approvedCount.value = item.raudit || 0 |
|
|
|
approvedGold.value = item.sumRaudit || 0 |
|
|
|
approvedRGold.value = item.sumRaudit1 || 0 |
|
|
|
approvedFGold.value = item.sumRaudit2 || 0 |
|
|
|
break |
|
|
|
case '已驳回': |
|
|
|
rejectedCount.value = item.raudit || 0 |
|
|
|
rejectedGold.value = item.sumRaudit || 0 |
|
|
|
rejectedRGold.value = item.sumRaudit1 || 0 |
|
|
|
rejectedFGold.value = item.sumRaudit2 || 0 |
|
|
|
break |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
trueGold.value = pendingGold.value + approvedGold.value + rejectedGold.value |
|
|
|
trueCount.value = |
|
|
|
pendingCount.value + approvedCount.value + rejectedCount.value |
|
|
|
trueRGold.value = |
|
|
|
pendingRGold.value + approvedRGold.value + rejectedRGold.value |
|
|
|
trueFGold.value = |
|
|
|
pendingFGold.value + approvedFGold.value + rejectedFGold.value |
|
|
|
|
|
|
|
// 将响应结果存储到响应式数据中 |
|
|
|
console.log('请求成功', result) |
|
|
|
console.log('这是分页', getObj.value) |
|
|
|
// 存储表格数据 |
|
|
|
tableData.value = result.data.list |
|
|
|
console.log('tableData', tableData.value) |
|
|
|
// 存储分页总数 |
|
|
|
total.value = result.data.total |
|
|
|
console.log('total', total.value) |
|
|
|
} catch (error) { |
|
|
|
console.log('请求失败', error) |
|
|
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
|
|
} |
|
|
|
} |
|
|
|
// 搜索 |
|
|
|
const search = function () { |
|
|
|
trimJwCode(); |
|
|
|
getObj.value.pageNum = 1 |
|
|
|
get() |
|
|
|
} |
|
|
|
// 重置 |
|
|
|
const reset = function () { |
|
|
|
delete rechargeVo.value.activityId |
|
|
@ -309,51 +111,9 @@ const get7Days = function () { |
|
|
|
console.log('getTime', getTime.value) |
|
|
|
get() |
|
|
|
} |
|
|
|
//全部充值明细 |
|
|
|
const adminAll = function () { |
|
|
|
console.log('adminAll') |
|
|
|
rechargeVo.value.status = '' |
|
|
|
getObj.value.pageNum = 1 |
|
|
|
get() |
|
|
|
} |
|
|
|
//待审核充值明细 |
|
|
|
const adminWait = async function () { |
|
|
|
rechargeVo.value.status = 0 |
|
|
|
getObj.value.pageNum = 1 |
|
|
|
await get() |
|
|
|
console.log('adminWait') |
|
|
|
trueCount.value = pendingCount.value |
|
|
|
trueGold.value = pendingGold.value |
|
|
|
trueRGold.value = pendingRGold.value |
|
|
|
trueFGold.value = pendingFGold.value |
|
|
|
} |
|
|
|
//已通过充值明细 |
|
|
|
const adminPass = async function () { |
|
|
|
rechargeVo.value.status = 1 |
|
|
|
getObj.value.pageNum = 1 |
|
|
|
await get() |
|
|
|
console.log('adminPass') |
|
|
|
trueCount.value = approvedCount.value |
|
|
|
trueGold.value = approvedGold.value |
|
|
|
trueRGold.value = approvedRGold.value |
|
|
|
trueFGold.value = approvedFGold.value |
|
|
|
} |
|
|
|
//已驳回充值明细 |
|
|
|
const adminReject = async function () { |
|
|
|
rechargeVo.value.status = 2 |
|
|
|
getObj.value.pageNum = 1 |
|
|
|
await get() |
|
|
|
console.log('adminReject') |
|
|
|
trueCount.value = rejectedCount.value |
|
|
|
trueGold.value = rejectedGold.value |
|
|
|
trueRGold.value = rejectedRGold.value |
|
|
|
trueFGold.value = rejectedFGold.value |
|
|
|
} |
|
|
|
//点击标签页 |
|
|
|
const handleClick = function (tab, event) { |
|
|
|
if (tab.props.name === 'all') { |
|
|
|
adminAll() |
|
|
|
} else if (tab.props.name === 'wait') { |
|
|
|
|
|
|
|
const handleClick = function (tab) { |
|
|
|
if (tab.props.name === 'wait') { |
|
|
|
adminWait() |
|
|
|
} else if (tab.props.name === 'pass') { |
|
|
|
adminPass() |
|
|
@ -361,67 +121,30 @@ const handleClick = function (tab, event) { |
|
|
|
adminReject() |
|
|
|
} |
|
|
|
} |
|
|
|
// 获取活动名称 |
|
|
|
|
|
|
|
const getActivity = async function () { |
|
|
|
try { |
|
|
|
// 发送POST请求 |
|
|
|
const result = await request({ |
|
|
|
url: '/recharge/activity/select', |
|
|
|
url: '', |
|
|
|
data: {} |
|
|
|
}) |
|
|
|
|
|
|
|
// 将响应结果存储到响应式数据中 |
|
|
|
console.log('请求成功', result) |
|
|
|
// 存储表格数据 |
|
|
|
activity.value = result.data |
|
|
|
console.log('activity', activity.value) |
|
|
|
} catch (error) { |
|
|
|
console.log('请求失败', error) |
|
|
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
|
|
} |
|
|
|
} |
|
|
|
// 获取地区 |
|
|
|
// 地区下拉框 |
|
|
|
const getArea = async function () { |
|
|
|
try { |
|
|
|
// 发送POST请求 |
|
|
|
const result = await request({ |
|
|
|
url: '/recharge/user/search', |
|
|
|
url: '', |
|
|
|
data: {} |
|
|
|
}) |
|
|
|
// 将响应结果存储到响应式数据中 |
|
|
|
console.log('请求成功', result) |
|
|
|
// 存储地区信息 |
|
|
|
area.value = result.data |
|
|
|
console.log('地区', area.value) |
|
|
|
} catch (error) { |
|
|
|
console.log('请求失败', error) |
|
|
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
|
|
} |
|
|
|
} |
|
|
|
// 验证跳转输入框的数字是否合法 |
|
|
|
const checkNumber = function () { |
|
|
|
if (typeof parseInt(getObj.value.pageNum) === 'number') { |
|
|
|
console.log('总共有多少页' + Math.ceil(total.value / getObj.value.pageSize)) |
|
|
|
if ( |
|
|
|
getObj.value.pageNum > 0 && |
|
|
|
getObj.value.pageNum <= Math.ceil(total.value / getObj.value.pageSize) |
|
|
|
) { |
|
|
|
console.log('输入的数字合法') |
|
|
|
getObj.value.pageNum = parseInt(getObj.value.pageNum) |
|
|
|
get() |
|
|
|
} else { |
|
|
|
//提示 |
|
|
|
ElMessage({ |
|
|
|
type: 'error', |
|
|
|
message: '请检查输入内容' |
|
|
|
}) |
|
|
|
} |
|
|
|
} else { |
|
|
|
//提示 |
|
|
|
ElMessage({ |
|
|
|
type: 'error', |
|
|
|
message: '请检查输入内容' |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
const handlePageSizeChange = function (val) { |
|
|
@ -432,117 +155,16 @@ const handleCurrentChange = function (val) { |
|
|
|
getObj.value.pageNum = val |
|
|
|
get() |
|
|
|
} |
|
|
|
// 编辑==================================== |
|
|
|
// 通过按钮 |
|
|
|
const pass = function (row) { |
|
|
|
// 通过初始化 |
|
|
|
passObj.value = row |
|
|
|
passObj.value.adminId = adminData.value.adminId |
|
|
|
passObj.value.auditId = row.auditId |
|
|
|
// passObj.value.status = 1 |
|
|
|
passObj.value.rechargeId = row.rechargeId |
|
|
|
passObj.value.detailId = row.detailId |
|
|
|
passObj.value.jwcode = row.jwcode |
|
|
|
passObj.value.paidGold = row.paidGold |
|
|
|
passObj.value.freeGold = row.freeGold |
|
|
|
passObj.value.adminName = adminData.value.adminName |
|
|
|
|
|
|
|
console.log('通过对象', passObj.value) |
|
|
|
} |
|
|
|
|
|
|
|
// 通过确认 |
|
|
|
const passConfirm = async function () { |
|
|
|
try { |
|
|
|
// 也许大概应该在点击确认时改变状态 |
|
|
|
passObj.value.status = 1 |
|
|
|
console.log('通过对象', passObj.value) |
|
|
|
// 发送POST请求 |
|
|
|
// passObj.value.flag = 0; |
|
|
|
const result = await request({ |
|
|
|
url: '/audit/audit/goldedit', |
|
|
|
data: passObj.value |
|
|
|
}) |
|
|
|
|
|
|
|
// 将响应结果存储到响应式数据中 |
|
|
|
console.log('请求成功', result) |
|
|
|
// 刷新表格数据 |
|
|
|
get() |
|
|
|
//提示 |
|
|
|
ElMessage({ |
|
|
|
type: 'success', |
|
|
|
message: '通过成功!' |
|
|
|
}) |
|
|
|
} catch (error) { |
|
|
|
console.error('请求失败', error); |
|
|
|
ElMessage({ |
|
|
|
type: 'error', |
|
|
|
message: '出错了,不知道咋回事' |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 打开驳回弹出框 |
|
|
|
const openRejectVisible = function () { |
|
|
|
const openRej = function () { |
|
|
|
rejectVisible.value = true |
|
|
|
} |
|
|
|
// 关闭驳回弹出框 |
|
|
|
const closeRejectVisible = function () { |
|
|
|
const closeRej = function () { |
|
|
|
rejectVisible.value = false |
|
|
|
} |
|
|
|
// 驳回按钮 |
|
|
|
const reject = function (row) { |
|
|
|
// 驳回初始化 |
|
|
|
rejectObj.value.adminId = adminData.value.adminId |
|
|
|
rejectObj.value.auditId = row.auditId |
|
|
|
rejectObj.value.status = 2 |
|
|
|
rejectObj.value.reson = '' |
|
|
|
rejectObj.value.rechargeId = row.rechargeId |
|
|
|
rejectObj.value.detailId = row.detailId |
|
|
|
console.log('驳回对象', rejectObj.value) |
|
|
|
openRejectVisible() |
|
|
|
} |
|
|
|
// 驳回确认 |
|
|
|
const rejectConfirm = async function () { |
|
|
|
Ref.value.validate(async (valid) => { |
|
|
|
if (valid) { |
|
|
|
try { |
|
|
|
console.log('驳回对象', rejectObj.value) |
|
|
|
// 发送POST请求 |
|
|
|
const result = await request({ |
|
|
|
url: '/audit/audit/goldedit', |
|
|
|
data: rejectObj.value |
|
|
|
}) |
|
|
|
|
|
|
|
// 将响应结果存储到响应式数据中 |
|
|
|
console.log('请求成功', result) |
|
|
|
// 刷新表格数据 |
|
|
|
get() |
|
|
|
// 关闭弹出框 |
|
|
|
closeRejectVisible() |
|
|
|
//提示 |
|
|
|
ElMessage({ |
|
|
|
type: 'success', |
|
|
|
message: '驳回成功!' |
|
|
|
}) |
|
|
|
} catch (error) { |
|
|
|
console.log('请求失败', error) |
|
|
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
|
|
} |
|
|
|
} else { |
|
|
|
//提示 |
|
|
|
ElMessage({ |
|
|
|
type: 'error', |
|
|
|
message: '请检查输入内容' |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
// 表单验证 |
|
|
|
|
|
|
|
const rules = reactive({ |
|
|
|
reson: [{ required: true, message: '请输入驳回理由', trigger: 'blur' }] |
|
|
|
}) |
|
|
|
|
|
|
|
// 挂载 |
|
|
|
onMounted(async function () { |
|
|
@ -558,18 +180,8 @@ const sortOrder = ref('') |
|
|
|
const handleSortChange = (column) => { |
|
|
|
console.log('排序字段:', column.prop) |
|
|
|
console.log('排序方式:', column.order) |
|
|
|
if (column.prop === 'rechargeGold') { |
|
|
|
sortField.value = 'recharge_gold' |
|
|
|
} else if (column.prop === 'freeGold') { |
|
|
|
sortField.value = 'free_gold' |
|
|
|
} else if (column.prop === 'rechargeTime') { |
|
|
|
sortField.value = 'recharge_time' |
|
|
|
} else if (column.prop === 'createTime') { |
|
|
|
sortField.value = 'create_time' |
|
|
|
} else if (column.prop === 'paidGold') { |
|
|
|
sortField.value = 'paid_gold' |
|
|
|
}else if (column.prop === 'auditTime') { |
|
|
|
sortField.value = 'audit_time' |
|
|
|
if (column.prop === '待补充') { |
|
|
|
sortField.value = '' |
|
|
|
} |
|
|
|
sortOrder.value = column.order === 'ascending' ? 'ASC' : 'DESC' |
|
|
|
get() |
|
|
@ -586,35 +198,27 @@ const trimJwCode = () => { |
|
|
|
<template> |
|
|
|
<el-row> |
|
|
|
<el-col> |
|
|
|
<el-card style="margin-bottom: 20px"> |
|
|
|
<el-row style="margin-bottom: 10px"> |
|
|
|
<el-card style="margin-bottom: 5px"> |
|
|
|
<el-row style="margin-bottom: 5px"> |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="head-card-element"> |
|
|
|
<el-text class="mx-1" size="large">精网号:</el-text> |
|
|
|
<el-text size="large">精网号:</el-text> |
|
|
|
<el-input v-model="rechargeVo.jwcode" placeholder="请输入精网号" style="width: 240px" clearable /> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="head-card-element"> |
|
|
|
<el-text class="mx-1" size="large">活动名称:</el-text> |
|
|
|
<el-select v-model="rechargeVo.activityId" placeholder="请选择活动名称" style="width: 240px" |
|
|
|
clearable> |
|
|
|
<el-option v-for="item in activity" :key="item.activityId" :label="item.activityName" |
|
|
|
:value="item.activityId" /> |
|
|
|
<el-text size="large">活动名称:</el-text> |
|
|
|
<el-select v-model="rechargeVo.activityId" placeholder="请选择活动名称" style="width: 240px" clearable> |
|
|
|
<el-option v-for="item in activity" :key="item.activityId" :label="item.activityName" :value="item.activityId" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="head-card-element"> |
|
|
|
<el-text class="mx-1" size="large">支付方式:</el-text> |
|
|
|
<el-text size="large">支付方式:</el-text> |
|
|
|
<el-select v-model="rechargeVo.payWay" placeholder="请选择支付方式" style="width: 240px" clearable> |
|
|
|
<el-option v-for="item in payWay" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="head-card-element" v-if="adminData.area == '总部'"> |
|
|
|
<el-text class="mx-1" size="large">所属地区:</el-text> |
|
|
|
<el-text size="large">所属地区:</el-text> |
|
|
|
<el-select v-model="rechargeVo.area" placeholder="请选择所属地区" style="width: 240px" clearable> |
|
|
|
<el-option v-for="item in area" :key="item" :label="item" :value="item" /> |
|
|
|
</el-select> |
|
|
@ -622,38 +226,22 @@ const trimJwCode = () => { |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="16"> |
|
|
|
<div class="time-controls"> |
|
|
|
<div class="time-group"> |
|
|
|
<el-text class="mx-1" size="large">充值时间:</el-text> |
|
|
|
<el-date-picker |
|
|
|
v-model="getTime" |
|
|
|
type="datetimerange" |
|
|
|
range-separator="至" |
|
|
|
start-placeholder="起始时间" |
|
|
|
end-placeholder="结束时间" |
|
|
|
style="width: 400px" |
|
|
|
/> |
|
|
|
<el-button @click="getToday()" style="margin-left: 10px"> 今 </el-button> |
|
|
|
<el-button @click="getYesterday()" style="margin-left: 10px"> 昨 </el-button> |
|
|
|
<el-button @click="get7Days()" style="margin-left: 10px"> 近7天 </el-button> |
|
|
|
<el-col :span="12"> |
|
|
|
<div class="time-controls"> |
|
|
|
<div class="time-group"> |
|
|
|
<el-text size="large">添加时间:</el-text> |
|
|
|
<el-date-picker v-model="getTime" type="datetimerange" range-separator="至" start-placeholder="起始时间" |
|
|
|
end-placeholder="结束时间" style="width: 400px" /> |
|
|
|
<el-button @click="getToday()" style="margin-left: 10px">今</el-button> |
|
|
|
<el-button @click="getYesterday()" style="margin-left: 10px">昨</el-button> |
|
|
|
<el-button @click="get7Days()" style="margin-left: 10px">近7天</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
|
|
|
|
<el-col :span="8"> |
|
|
|
<el-button @click="reset()" type="success" style="margin-right: 10px">重置</el-button> |
|
|
|
<el-button type="primary" @click="search()">查询</el-button> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="21"> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-text class="mx-1" size="large">请选择您想看到的数据:</el-text> |
|
|
|
<el-select v-model="selectedColumns" multiple placeholder="请选择您想看到的数据" size="large" style="width: 800px"> |
|
|
|
<el-option v-for="item in columnOptions" :key="item.prop" :label="item.label" :value="item.prop" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-button @click="reset()" type="success">重置</el-button> |
|
|
|
<el-button type="primary" @click="get()">查询</el-button> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-card> |
|
|
@ -662,94 +250,66 @@ const trimJwCode = () => { |
|
|
|
<el-row> |
|
|
|
<el-col> |
|
|
|
<el-card> |
|
|
|
<el-tabs v-model="activeName" type="card" class="demo-tabs" @tab-click="handleClick"> |
|
|
|
<el-tab-pane label="全部" name="all"></el-tab-pane> |
|
|
|
<el-tabs v-model="activeName" type="card" @tab-click="handleClick"> |
|
|
|
<el-tab-pane label="待审核" name="wait"></el-tab-pane> |
|
|
|
<el-tab-pane label="已通过" name="pass"></el-tab-pane> |
|
|
|
<el-tab-pane label="已驳回" name="reject"></el-tab-pane> |
|
|
|
|
|
|
|
<div> |
|
|
|
总条数:{{ trueCount }}条,总金币数:{{ |
|
|
|
formattedTrueGold |
|
|
|
}}金币,永久金币:{{ formattedTrueRGold }}金币,免费金币:{{ formattedTrueFGold }}金币 |
|
|
|
总条数:{{ trueCount }}条 |
|
|
|
总金币数:{{ formattedTrueGold }}金币 |
|
|
|
永久金币:{{ formattedTrueRGold }}金币 |
|
|
|
免费金币:{{ formattedTrueFGold }}金币 |
|
|
|
</div> |
|
|
|
</el-tabs> |
|
|
|
<div style="height: 540px; overflow-y: auto"> |
|
|
|
<el-table :data="tableData" style="width: 100%" height="540px" @sort-change="handleSortChange" :row-style="{ height: '50px' }"> |
|
|
|
<el-table-column type="index" label="序号" width="100px" fixed="left"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ |
|
|
|
scope.$index + 1 + (getObj.pageNum - 1) * getObj.pageSize |
|
|
|
}}</span> |
|
|
|
<span>{{ scope.$index + 1 + (getObj.pageNum - 1) * getObj.pageSize }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<!-- 动态列 --> |
|
|
|
<template v-for="col in columnOptions" :key="col.prop"> |
|
|
|
<el-table-column v-if="selectedColumns.includes(col.prop)" :prop="col.prop" :label="col.label" |
|
|
|
:width="col.width" :sortable="col.sortable ? 'custom' : false" |
|
|
|
:show-overflow-tooltip="true" > |
|
|
|
<template #default="scope"> |
|
|
|
<!-- 特殊列模板 --> |
|
|
|
<template v-if="col.prop === 'rechargeTime'"> |
|
|
|
{{ moment(scope.row.rechargeTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
</template> |
|
|
|
<template v-else-if="col.prop === 'createTime'"> |
|
|
|
{{ moment(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
</template> |
|
|
|
<template v-else-if="col.prop === 'auditTime'"> |
|
|
|
{{ scope.row.auditTime ? moment(scope.row.auditTime).format('YYYY-MM-DD HH:mm:ss') : '----' }} |
|
|
|
</template> |
|
|
|
<template v-else-if="col.prop === 'remark'"> |
|
|
|
<span>{{ scope.row[col.prop] }}</span> |
|
|
|
</template> |
|
|
|
<template v-else-if="col.prop === 'rechargeVoucher'"> |
|
|
|
<el-image :src="scope.row.rechargeVoucher" style="width: 50px; height: 50px" /> |
|
|
|
</template> |
|
|
|
<template v-else-if="col.prop === 'status'"> |
|
|
|
<div class="status"> |
|
|
|
<span :class="{ |
|
|
|
'green-dot': scope.row.status === 1, |
|
|
|
'grey-dot': scope.row.status === 0, |
|
|
|
'red-dot': scope.row.status === 2 |
|
|
|
}"></span> |
|
|
|
<span>{{ |
|
|
|
scope.row.status === 1 ? '已通过' : |
|
|
|
scope.row.status === 0 ? '待审核' : '已驳回' |
|
|
|
}}</span> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<template v-else-if="['paidGold', 'freeGold'].includes(col.prop)"> |
|
|
|
{{ scope.row[col.prop] / 100 }} |
|
|
|
</template> |
|
|
|
<span v-else> |
|
|
|
{{ scope.row[col.prop] }} |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
<el-table-column fixed="left" prop="username" label="姓名" width="150px" /> |
|
|
|
<el-table-column fixed="left" prop="jwcode" label="精网号" width="110px" /> |
|
|
|
<el-table-column prop="area" label="所属地区" width="100px" /> |
|
|
|
<el-table-column prop="refundType" label="活动名称" width="100px" /> |
|
|
|
<el-table-column prop="refundGoods" label="充值金额" width="100px" /> |
|
|
|
<el-table-column prop="rechargeCoin" label="永久金币" width="110px" sortable="custom"> |
|
|
|
<template #default="scope">{{ scope.row.rechargeCoin }}</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="freeCoin" label="免费金币" sortable="custom" width="110px"> |
|
|
|
<template #default="scope">{{ scope.row.freeCoin }}</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="remark" label="备注" width="200px" show-overflow-tooltip /> |
|
|
|
<el-table-column prop="freeCoin" label="支付凭证" width="110px" /> |
|
|
|
<el-table-column prop="adminName" label="提交人" width="100px" /> |
|
|
|
<el-table-column prop="status" label="付款时间" width="200px" > |
|
|
|
<template #default="scope"> |
|
|
|
{{ moment(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</template> |
|
|
|
<el-table-column prop="createTime" sortable="custom" label="提交时间" width="200px"> |
|
|
|
<template #default="scope"> |
|
|
|
{{ moment(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="operation" label="操作" width="150px"> |
|
|
|
<template #default="scope"> |
|
|
|
<div class="operation"> |
|
|
|
<el-popconfirm title="确定要通过此条记录吗?" @confirm="passConfirm"> |
|
|
|
<template #reference> |
|
|
|
<el-button :disabled="scope.row.status === 1 || scope.row.status === 2 |
|
|
|
? true |
|
|
|
: false |
|
|
|
" type="primary" text @click="pass(scope.row)"> |
|
|
|
<el-button :disabled="scope.row.status === 1 || scope.row.status === 2 ? true : false" |
|
|
|
type="primary" text @click="pass(scope.row)"> |
|
|
|
通过 |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
<template #actions="{ confirm, cancel }"> |
|
|
|
<el-button size="small" @click="cancel">取消</el-button> |
|
|
|
<el-button type="primary" size="small" @click="confirm"> |
|
|
|
确定 |
|
|
|
</el-button> |
|
|
|
<el-button type="primary" size="small" @click="confirm">确定</el-button> |
|
|
|
</template> |
|
|
|
</el-popconfirm> |
|
|
|
<el-button :disabled="scope.row.status === 1 || scope.row.status === 2 |
|
|
|
? true |
|
|
|
: false |
|
|
|
" type="primary" text @click="reject(scope.row)"> |
|
|
|
<el-button :disabled="scope.row.status === 1 || scope.row.status === 2 ? true : false" |
|
|
|
type="primary" text @click="reject(scope.row)"> |
|
|
|
驳回 |
|
|
|
</el-button> |
|
|
|
</div> |
|
|
@ -758,7 +318,6 @@ const trimJwCode = () => { |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 分页 --> |
|
|
|
<div class="pagination"> |
|
|
|
<el-pagination background :page-size="getObj.pageSize" :page-sizes="[5, 10, 20, 50, 100]" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handlePageSizeChange" |
|
|
@ -768,8 +327,7 @@ const trimJwCode = () => { |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<!-- 驳回弹出框 --> |
|
|
|
<el-dialog v-model="rejectVisible" title="驳回理由" width="500" :before-close="closeRejectVisible"> |
|
|
|
<el-dialog v-model="rejectVisible" title="驳回理由" width="500" :before-close="closeRej"> |
|
|
|
<template #footer> |
|
|
|
<el-form :model="rejectObj" ref="Ref" :rules="rules" label-width="auto" style="max-width: 600px"> |
|
|
|
<el-form-item prop="reson" label="驳回理由:"> |
|
|
@ -779,7 +337,7 @@ const trimJwCode = () => { |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<div class="dialog-footer"> |
|
|
|
<el-button @click="closeRejectVisible()">取消</el-button> |
|
|
|
<el-button @click="closeRej()">取消</el-button> |
|
|
|
<el-button type="primary" @click="rejectConfirm()"> 确定 </el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -825,17 +383,23 @@ const trimJwCode = () => { |
|
|
|
|
|
|
|
.status { |
|
|
|
display: flex; |
|
|
|
align-items: center; /* 确保子元素垂直居中对齐 */ |
|
|
|
gap: 6px; /* 设置圆点和文字之间的间距 */ |
|
|
|
align-items: center; |
|
|
|
/* 确保子元素垂直居中对齐 */ |
|
|
|
gap: 6px; |
|
|
|
/* 设置圆点和文字之间的间距 */ |
|
|
|
} |
|
|
|
|
|
|
|
.green-dot, .grey-dot, .red-dot { |
|
|
|
.green-dot, |
|
|
|
.grey-dot, |
|
|
|
.red-dot { |
|
|
|
display: inline-block; |
|
|
|
width: 8px; |
|
|
|
height: 8px; |
|
|
|
border-radius: 50%; |
|
|
|
flex-shrink: 0; /* 防止圆点在空间不足时缩小 */ |
|
|
|
margin: 0; /* 移除原有的 margin-right */ |
|
|
|
flex-shrink: 0; |
|
|
|
/* 防止圆点在空间不足时缩小 */ |
|
|
|
margin: 0; |
|
|
|
/* 移除原有的 margin-right */ |
|
|
|
} |
|
|
|
|
|
|
|
/* 备注列样式 */ |
|
|
@ -846,6 +410,7 @@ const trimJwCode = () => { |
|
|
|
text-overflow: ellipsis; |
|
|
|
white-space: nowrap; |
|
|
|
} |
|
|
|
|
|
|
|
/* 设置单元格内容溢出隐藏 */ |
|
|
|
.el-table .el-table__cell { |
|
|
|
overflow: hidden; |
|
|
|