feat: draw card line

This commit is contained in:
zzc
2026-01-19 19:13:12 +08:00
parent bff9a07ed4
commit eaf8197db6
3 changed files with 22 additions and 6 deletions

View File

@@ -30,14 +30,14 @@
<strong>名称</strong>
{{ row.nickname }}
</div>
<div>
<strong>性别</strong>
{{ row.gender ? (row.gender === 'male' ? '男' : '女') : '未公开' }}
</div>
<div>
<strong>平台</strong>
{{ row.platform }}
</div>
<div>
<strong>设备 id</strong>
{{ row.deviceId }}
</div>
</div>
</template>
</el-table-column>
@@ -84,7 +84,7 @@
</template>
<script>
import { getList } from '@/api/maomaotou/user'
import { getUserList } from '@/api/spring/user'
import { formatTime } from '@/utils'
export default {
@@ -160,7 +160,7 @@
},
async fetchData() {
this.listLoading = true
const { data } = await getList(this.queryForm)
const { data } = await getUserList(this.queryForm)
this.list = data.list
this.total = data.totalCount
this.timeOutID = setTimeout(() => {