| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <!-- TODO @芋艿:【优化:全局样式】后续要全局样式么 -->
- <view class="min-h-screen bg-[#f5f5f5]">
- <!-- 顶部导航栏 -->
- <wd-navbar
- title="用户管理"
- left-arrow placeholder safe-area-inset-top fixed
- @click-left="handleBack"
- />
- <!-- 搜索组件 -->
- <SearchForm
- :search-params="queryParams"
- @search="handleQuery"
- @reset="handleReset"
- />
- <!-- 用户列表 -->
- <view class="p-24rpx">
- <view
- v-for="item in list"
- :key="item.id"
- class="mb-24rpx rounded-12rpx bg-white"
- @click="handleDetail(item)"
- >
- <view class="relative p-24rpx">
- <view class="absolute right-24rpx top-24rpx">
- <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="item.status" />
- </view>
- <view class="flex items-center gap-16rpx">
- <wd-img
- v-if="item.avatar"
- :src="item.avatar"
- :width="40"
- :height="40"
- mode="aspectFill"
- round
- />
- <view
- v-else
- class="h-80rpx w-80rpx flex items-center justify-center rounded-full bg-[#1890ff] text-32rpx text-white"
- >
- {{ (item.nickname || item.username)?.charAt(0) }}
- </view>
- <view>
- <view class="text-32rpx text-[#333] font-semibold">
- {{ item.nickname || item.username }}
- </view>
- <view class="text-24rpx text-[#999]">
- {{ item.deptName || '未分配部门' }}
- </view>
- </view>
- </view>
- <view v-if="item.loginDate" class="absolute bottom-24rpx right-24rpx text-22rpx text-[#999]">
- 登录时间:{{ formatDate(item.loginDate) }}
- </view>
- </view>
- </view>
- <!-- 加载更多 -->
- <view v-if="loadMoreState !== 'loading' && list.length === 0" class="py-100rpx text-center">
- <wd-status-tip image="content" tip="暂无用户数据" />
- </view>
- <wd-loadmore
- v-if="list.length > 0"
- :state="loadMoreState"
- @reload="loadMore"
- />
- </view>
- <!-- 新增按钮 -->
- <wd-fab
- v-if="hasAccessByCodes(['system:user:create'])"
- position="right-bottom"
- type="primary"
- :expandable="false"
- @click="handleAdd"
- />
- </view>
- </template>
- <script lang="ts" setup>
- import type { SearchFormData } from './components/search-form.vue'
- import type { User } from '@/api/system/user'
- import type { LoadMoreState } from '@/http/types'
- import { onReachBottom } from '@dcloudio/uni-app'
- import { onMounted, reactive, ref } from 'vue'
- import { getUserPage } from '@/api/system/user'
- import { useAccess } from '@/hooks/useAccess'
- import { navigateBackPlus } from '@/utils'
- import { DICT_TYPE } from '@/utils/constants'
- import SearchForm from './components/search-form.vue'
- import { formatDate } from '@/utils/date';
- definePage({
- style: {
- navigationBarTitleText: '',
- navigationStyle: 'custom',
- },
- })
- const { hasAccessByCodes } = useAccess()
- const total = ref(0) // 列表的总页数
- const list = ref<User[]>([]) // 列表的数据
- const loadMoreState = ref<LoadMoreState>('loading') // 加载更多状态
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- username: undefined as string | undefined,
- nickname: undefined as string | undefined,
- })
- /** 返回上一页 */
- function handleBack() {
- navigateBackPlus()
- }
- /** 查询用户列表 */
- async function getList() {
- loadMoreState.value = 'loading'
- try {
- const data = await getUserPage(queryParams)
- list.value = [...list.value, ...data.list]
- total.value = data.total
- loadMoreState.value = list.value.length >= total.value ? 'finished' : 'loading'
- } catch {
- queryParams.pageNo = queryParams.pageNo > 1 ? queryParams.pageNo - 1 : 1
- loadMoreState.value = 'error'
- }
- }
- /** 搜索按钮操作 */
- function handleQuery(data?: SearchFormData) {
- queryParams.username = data?.username
- queryParams.nickname = data?.nickname
- queryParams.pageNo = 1
- list.value = [] // 清空列表
- getList()
- }
- /** 重置按钮操作 */
- function handleReset() {
- handleQuery()
- }
- /** 加载更多 */
- function loadMore() {
- if (loadMoreState.value === 'finished') {
- return
- }
- queryParams.pageNo++
- getList()
- }
- /** 新增用户 */
- function handleAdd() {
- uni.navigateTo({
- url: '/pages-system/user/form/index',
- })
- }
- /** 查看详情 */
- function handleDetail(item: User) {
- uni.navigateTo({
- url: `/pages-system/user/detail/index?id=${item.id}`,
- })
- }
- /** 触底加载更多 */
- onReachBottom(() => {
- loadMore()
- })
- /** 初始化 */
- onMounted(() => {
- getList()
- })
- </script>
- <style lang="scss" scoped>
- </style>
|