This commit is contained in:
weipengfei 2024-06-18 15:25:05 +08:00
parent f2688b1b7a
commit 40a8b92415
4 changed files with 7 additions and 13 deletions

View File

@ -170,7 +170,7 @@ const optionModel = {
{ {
type: 'category', type: 'category',
boundaryGap: false, boundaryGap: false,
data: ['03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '00', '01', '02'], // data: ['03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '00', '01', '02'],
axisLabel: { axisLabel: {
show: false, // x show: false, // x
}, },
@ -210,7 +210,7 @@ const optionModel = {
{ {
name: '昨天', name: '昨天',
type: 'line', type: 'line',
data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], // data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0],
smooth: true, smooth: true,
symbol: 'none', // symbol: 'none', //
itemStyle: { itemStyle: {
@ -236,7 +236,7 @@ const optionModel = {
{ {
name: '今天', name: '今天',
type: 'line', type: 'line',
data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], // data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
smooth: true, smooth: true,
symbol: 'none', // symbol: 'none', //
areaStyle: { areaStyle: {

View File

@ -94,7 +94,8 @@ const queryParams = reactive({
store_id: '', store_id: '',
store_name: '', store_name: '',
bar_code: '', bar_code: '',
status: '' status: '',
exchange: 0
}) })
// //

View File

@ -10,7 +10,7 @@
> >
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules"> <el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
<el-form-item label="用户名" prop="username"> <el-form-item label="用户名" prop="username">
<el-select class="flex-1" v-model="formData.label"> <el-select class="flex-1" v-model="formData.label_id">
<el-option <el-option
v-for="item in labelList" v-for="item in labelList"
:key="item.label_id" :key="item.label_id"
@ -61,7 +61,7 @@ const popupTitle = computed(() => {
// //
const formData = reactive({ const formData = reactive({
id: '', id: '',
label: '' label_id: ''
}) })

View File

@ -50,13 +50,6 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="注册渠道" prop="channel" show-overflow-tooltip /> <el-table-column label="注册渠道" prop="channel" show-overflow-tooltip />
<el-table-column label="是否禁用" prop="is_disable">
<template #default="{ row }">
<dict-value :options="dictData.system_disable" :value="row.is_disable" />
</template>
</el-table-column>
<el-table-column label="最后登录IP" prop="login_ip" show-overflow-tooltip />
<el-table-column label="最后登录时间" prop="login_time" show-overflow-tooltip />
<el-table-column label="用户余额" prop="user_money" show-overflow-tooltip /> <el-table-column label="用户余额" prop="user_money" show-overflow-tooltip />
<el-table-column label="累计充值" prop="total_recharge_amount" show-overflow-tooltip /> <el-table-column label="累计充值" prop="total_recharge_amount" show-overflow-tooltip />
<el-table-column label="操作" width="120" fixed="right"> <el-table-column label="操作" width="120" fixed="right">