Browse Source

排序完好,审核时间有

main
lihuilin 2 days ago
parent
commit
24ee19f99c
  1. 4
      gold-system/.env.development
  2. 4
      gold-system/.env.test
  3. 10
      gold-system/src/views/audit/refundAudit.vue
  4. 12
      gold-system/src/views/refund/allRefund.vue
  5. 10
      gold-system/src/views/usergoldInfo/index.vue
  6. 2
      gold-system/stats.html

4
gold-system/.env.development

@ -1,5 +1,5 @@
# VITE_API_BASE='http://54.251.137.151:10704/' # VITE_API_BASE='http://54.251.137.151:10704/'
# VITE_API_BASE='http://192.168.8.94:8080/' # VITE_API_BASE='http://192.168.8.94:8080/'
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://54.251.137.151:10704/' # VITE_API_BASE='http://54.251.137.151:10704/'
VITE_API_BASE='http://192.168.8.225:8080/'
# VITE_API_BASE='http://192.168.8.225:8080/'

4
gold-system/.env.test

@ -1,6 +1,6 @@
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_prod' # VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_prod'
#VITE_API_BASE='http://54.251.137.151:10704/' #VITE_API_BASE='http://54.251.137.151:10704/'
# VITE_API_BASE='http://192.168.8.94:8080/' # VITE_API_BASE='http://192.168.8.94:8080/'
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
VITE_API_BASE='http://192.168.8.225:8080/'
VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://192.168.8.225:8080/'

10
gold-system/src/views/audit/refundAudit.vue

@ -751,6 +751,16 @@ const trimJwCode = () => {
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="auditTime"
sortable="custom"
label="审核时间"
width="200px"
>
<template #default="scope">
{{scope.row.auditTime ? moment(scope.row.auditTime).format('YYYY-MM-DD HH:mm:ss') : '------'}}
</template>
</el-table-column>
<el-table-column
fixed="right" fixed="right"
prop="operation" prop="operation"
label="操作" label="操作"

12
gold-system/src/views/refund/allRefund.vue

@ -415,6 +415,8 @@ const handleSortChange = (column) => {
sortField.value = 'free_coin' sortField.value = 'free_coin'
} else if (column.prop === 'createTime') { } else if (column.prop === 'createTime') {
sortField.value = 'create_time' sortField.value = 'create_time'
} else if (column.prop === 'auditTime') {
sortField.value = 'audit_time'
} }
sortOrder.value = column.order === 'ascending' ? 'ASC' : 'DESC' sortOrder.value = column.order === 'ascending' ? 'ASC' : 'DESC'
get() get()
@ -654,6 +656,16 @@ const handleCurrentChange = function (val) {
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="auditTime"
sortable="custom"
label="审核时间"
width="180px"
>
<template #default="scope">
{{ moment(scope.row.auditTime).format('YYYY-MM-DD HH:mm:ss') }}
</template>
</el-table-column>
<el-table-column
prop="operation" prop="operation"
label="操作" label="操作"
fixed="right" fixed="right"

10
gold-system/src/views/usergoldInfo/index.vue

@ -207,7 +207,7 @@ const handleSortChange = (column) => {
console.log('排序方式:', column.order) console.log('排序方式:', column.order)
if (column.prop === 'buyJb') { if (column.prop === 'buyJb') {
sortField.value = 'buy_jb' sortField.value = 'buy_jb'
} else if (column.prop === 'taskJb') {
} else if (column.prop === 'coreJb') {
sortField.value = 'core_jb' sortField.value = 'core_jb'
} else if (column.prop === 'free6') { } else if (column.prop === 'free6') {
sortField.value = 'free_6' sortField.value = 'free_6'
@ -355,7 +355,7 @@ const handleCurrentChange = function (val) {
<el-table-column <el-table-column
prop="buyJb" prop="buyJb"
label="永久金币" label="永久金币"
sortable="custom"
sortable="custom"
width="110" width="110"
> >
<template #default="scope"> <template #default="scope">
@ -372,7 +372,7 @@ const handleCurrentChange = function (val) {
<el-table-column <el-table-column
prop="free6" prop="free6"
label=" 6月份到期免费金币" label=" 6月份到期免费金币"
sortable="custom"
sortable="custom"
width="110" width="110"
> >
<template #default="scope"> <template #default="scope">
@ -382,7 +382,7 @@ const handleCurrentChange = function (val) {
<el-table-column <el-table-column
prop="free12" prop="free12"
label="12月份到期免费金币" label="12月份到期免费金币"
sortable="custom"
sortable="custom"
width="110" width="110"
> >
<template #default="scope"> <template #default="scope">
@ -392,7 +392,7 @@ const handleCurrentChange = function (val) {
<el-table-column <el-table-column
prop="coreJb" prop="coreJb"
label="任务金币" label="任务金币"
sortable="custom"
sortable="custom"
width="130" width="130"
> >
<template #default="scope"> <template #default="scope">

2
gold-system/stats.html
File diff suppressed because it is too large
View File

Loading…
Cancel
Save