feat: draw card line
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user