AUserDetailStaff.vue
1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
<div class="user-detail-staff-container">
<el-table :data="staffs" border style="width: 100%">
<el-table-column prop="name" :label="$t('userDetailStaff.name')" align="center"></el-table-column>
<el-table-column prop="tel" :label="$t('userDetailStaff.tel')" align="center"></el-table-column>
<el-table-column prop="storeName" :label="$t('userDetailStaff.storeName')" align="center"></el-table-column>
</el-table>
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="page.current"
:page-sizes="[10, 20, 30, 50]"
:page-size="page.size"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</template>
<script>
import { listAdminStoreUser } from '@/api/staff/systemUserDetailApi'
export default {
name: 'AUserDetailStaff',
props: {
userId: {
type: String,
required: true
}
},
data() {
return {
staffs: [],
page: {
current: 1,
size: 10,
total: 0
}
}
},
methods: {
async loadData() {
try {
const params = {
page: this.page.current,
row: this.page.size,
staffId: this.userId
}
const res = await listAdminStoreUser(params)
if (res.code === 0) {
this.staffs = res.data
this.page.total = res.total
}
} catch (error) {
this.$message.error(this.$t('common.loadFailed'))
}
},
handleSizeChange(val) {
this.page.size = val
this.loadData()
},
handleCurrentChange(val) {
this.page.current = val
this.loadData()
}
}
}
</script>
<style scoped>
.user-detail-staff-container {
margin-top: 20px;
}
</style>