还原更新配置文件
This commit is contained in:
@@ -30,7 +30,7 @@ export default {
|
|||||||
chart: null,
|
chart: null,
|
||||||
options: {
|
options: {
|
||||||
title: {
|
title: {
|
||||||
text: '用户月充值报表'
|
text: '月收益报表'
|
||||||
},
|
},
|
||||||
tooltip: {},
|
tooltip: {},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
@@ -71,9 +71,9 @@ export default {
|
|||||||
},
|
},
|
||||||
drawLine(val) {
|
drawLine(val) {
|
||||||
if (val !== '') {
|
if (val !== '') {
|
||||||
this.options.title.text = val + '月充值统计/元'
|
this.options.title.text = val + '月收益统计/元'
|
||||||
} else {
|
} else {
|
||||||
this.options.title.text = '本月充值统计/元'
|
this.options.title.text = '本月篮球订单统计/元'
|
||||||
}
|
}
|
||||||
findBasketMoney(val).then(response => {
|
findBasketMoney(val).then(response => {
|
||||||
this.options.xAxis.data = []
|
this.options.xAxis.data = []
|
||||||
|
|||||||
@@ -39,14 +39,14 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column label="操作" align="center" width="150">
|
<!-- <el-table-column label="操作" align="center" width="150">
|
||||||
<template scope="scope">
|
<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 === 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 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" @click="handleEdit(scope.row.id)">编辑</el-button>
|
||||||
<el-button size="small" type="text" class="danger" @click="handleDelete(scope.row)">删除</el-button>
|
<el-button size="small" type="text" class="danger" @click="handleDelete(scope.row)">删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column> -->
|
||||||
</Pagination>
|
</Pagination>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user