还原更新配置文件

This commit is contained in:
2026-05-17 10:15:20 +08:00
parent 947b3b6356
commit ff99b3749d
2 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ export default {
chart: null,
options: {
title: {
text: '用户月充值报表'
text: '月收益报表'
},
tooltip: {},
xAxis: {
@@ -71,9 +71,9 @@ export default {
},
drawLine(val) {
if (val !== '') {
this.options.title.text = val + '月充值统计/元'
this.options.title.text = val + '月收益统计/元'
} else {
this.options.title.text = '本月充值统计/元'
this.options.title.text = '本月篮球订单统计/元'
}
findBasketMoney(val).then(response => {
this.options.xAxis.data = []

View File

@@ -39,14 +39,14 @@
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="150">
<!-- <el-table-column label="操作" align="center" width="150">
<template scope="scope">
<el-button v-if="scope.row.status === 1" size="small" type="text" @click="handleUpdateStatus(scope.row, 0)">禁用</el-button>
<el-button v-if="scope.row.status === 0" size="small" type="text" @click="handleUpdateStatus(scope.row, 1)">启用</el-button>
<el-button size="small" type="text" @click="handleEdit(scope.row.id)">编辑</el-button>
<el-button size="small" type="text" class="danger" @click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table-column> -->
</Pagination>
</div>
</template>