123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- <template>
- <CzrContent
- v-model:tableHead="state.query.head"
- @handleReset="onReset"
- @handleSearch="onSearch"
- >
- <template #tableTitle>
- <div class="flex gap-2.5"></div>
- </template>
- <template #buttons>
- <div class="flex items-center gap-2.5">
- <CzrForm class="bm-filter" label-width="0px" @handleEnter="onSearch">
- <CzrFormColumn
- v-if="isPTGLCpt"
- width="6.68rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.tenantId"
- link="select"
- :options="DictionaryStore.tenants.list"
- placeholder="全部租戶"
- :clearable="false"
- />
- <CzrFormColumn
- width="18rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.loginTime"
- link="date"
- type="daterange"
- placeholder="最后登录时间"
- />
- <CzrFormColumn
- width="18rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.createTime"
- link="date"
- type="daterange"
- placeholder="注册时间"
- />
- <CzrFormColumn
- width="6.68rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.enabled"
- link="select"
- :options="DictionaryStore.trueFalseStatus"
- placeholder="状态"
- />
- <CzrFormColumn
- width="6.68rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.xxx"
- link="select"
- :options="[]"
- placeholder="全部角色"
- />
- <CzrFormColumn
- width="15.63rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.text"
- placeholder="输入关键词以检索"
- :prefix-icon="Search"
- />
- <CzrButton type="add" @click="onInvite" title="新增用户" />
- <CzrButton
- type="add"
- @click="onAdd"
- title="新增账号"
- v-if="isPTGLCpt"
- />
- </CzrForm>
- </div>
- </template>
- <template #table>
- <CzrTable
- v-loading="state.query.loading"
- v-model:data="state.query.result.data"
- :head="state.query.head"
- :total="state.query.result.total"
- :page="state.query.page.pageNum"
- :pageSize="state.query.page.pageSize"
- @handlePage="onPage"
- @handleSort="onSort"
- v-model:selected="state.query.selected"
- >
- <template #caozuo-column-value="{ scope }">
- <div class="__czr-table-operations">
- <CzrButton type="table" title="编辑" @click="onEdit(scope.row)" />
- <CzrButton type="table-del" @click="onDel(scope.row)" />
- </div>
- </template>
- </CzrTable>
- </template>
- </CzrContent>
- <detailCom
- v-model:show="state.detail.show"
- :transfer="state.detail.transfer"
- @refresh="onSearch"
- />
- <CzrDialog
- :show="state.invite.show"
- title="新增用户"
- @onClose="state.invite.show = false"
- width="62.5rem"
- :show-submit="false"
- :show-close="false"
- >
- <div class="bm-form">
- <CzrFormColumn
- :span="24"
- label="角色"
- v-model:param="state.invite.roles"
- link="select"
- :options="[]"
- :multiple="true"
- />
- <div class="__czr-title_1 mb-2">
- 邀请链接
- <div class="ml-2 text-xs font-normal text-[var(--czr-error-color)]">
- 链接24小时内有效
- </div>
- </div>
- <CzrFormColumn
- :span="24"
- label="邀请链接"
- v-model:param="state.invite.url"
- :readonly="true"
- >
- <template #suffix>
- <CopyDocument
- class="w-4 cursor-pointer"
- @click="onCopy(state.invite.url)"
- />
- </template>
- </CzrFormColumn>
- </div>
- </CzrDialog>
- </template>
- <script setup lang="ts">
- import {
- computed,
- getCurrentInstance,
- onMounted,
- reactive,
- ref,
- watch,
- } from 'vue'
- import { CopyDocument, Search } from '@element-plus/icons-vue'
- import { debounce } from 'lodash'
- import { useAppStore, useDialogStore, useDictionaryStore } from '@/stores'
- import { ElMessage } from 'element-plus'
- import detailCom from './detail.vue'
- import { userDel, userPage } from '@/api/modules/center/user'
- import { copy } from '@/utils/czr-util'
- import { useRouter } from 'vue-router'
- import { accountGenerateFriendlyCode } from '@/api/modules/global/invite'
- const AppStore = useAppStore()
- const DialogStore = useDialogStore()
- const DictionaryStore = useDictionaryStore()
- const router = useRouter()
- const emit = defineEmits([])
- const props = defineProps({})
- const { proxy }: any = getCurrentInstance()
- const state: any = reactive({
- text: '',
- query: {
- init: false,
- loading: false,
- head: [
- { value: 'loginId', label: '账号', show: true },
- { value: 'name', label: '用户名', show: true },
- {
- value: 'createTime',
- label: '注册时间',
- show: true,
- width: 180,
- datetime: true,
- },
- {
- value: 'loginTime',
- label: '最后登录时间',
- show: true,
- width: 180,
- datetime: true,
- },
- {
- value: 'enabled',
- label: '状态',
- show: true,
- dictList: computed(() => DictionaryStore.trueFalseStatus),
- },
- {
- value: 'caozuo',
- label: '操作',
- show: true,
- width: 200,
- fixed: 'right',
- popover: false,
- },
- ],
- page: {
- pageNum: 1,
- pageSize: 20,
- },
- form: {},
- formReal: {},
- sort: {},
- result: {
- total: 0,
- data: [],
- },
- selected: [],
- },
- detail: {
- show: false,
- transfer: {},
- },
- invite: {
- show: false,
- url: '',
- roles: [],
- },
- })
- const setText = debounce((v) => {
- state.query.form.name = v
- }, 1000)
- watch(
- () => state.text,
- (n) => {
- setText(n)
- },
- )
- watch(
- () => state.query.form,
- (n) => {
- if (state.query.init) {
- onSearch()
- }
- },
- { deep: true },
- )
- const isPTGLCpt = computed(() => {
- return AppStore.tenantInfo?.id == (import.meta as any).env.VITE_TENANT_ID_PTGL
- })
- const onSort = ({ key, value }) => {
- state.query.sort[key] = value
- onSearch()
- }
- const onPage = (pageNum, pageSize) => {
- setTimeout(() => {
- state.query.init = true
- }, 100)
- state.query.page = {
- pageNum: pageNum,
- pageSize: pageSize,
- }
- const params = {
- page: state.query.page.pageNum,
- size: state.query.page.pageSize,
- }
- // 添加表单参数
- for (const [k, v] of Object.entries(state.query.formReal)) {
- if (proxy.$czrUtil.isValue(v)) {
- if (k === 'loginTime') {
- params['loginTimeStart'] = v[0] + ' 00:00:00'
- params['loginTimeEnd'] = v[1] + ' 23:59:59'
- } else if (k === 'createTime') {
- params['createTimeStart'] = v[0] + ' 00:00:00'
- params['createTimeEnd'] = v[1] + ' 23:59:59'
- } else {
- params[k] = v
- }
- }
- }
- // 添加排序参数
- for (const [k, v] of Object.entries(state.query.sort)) {
- }
- state.query.loading = true
- userPage(params)
- .then(({ data }: any) => {
- state.query.result.total = data.totalElements
- state.query.result.data = data.content
- })
- .catch(() => {})
- .finally(() => {
- state.query.loading = false
- })
- }
- const onSearch = () => {
- state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
- onPage(1, state.query.page.pageSize)
- }
- const onReset = () => {
- state.query.page = {
- pageNum: 1,
- pageSize: 20,
- }
- state.query.form = {
- tenantId: AppStore.tenantInfo.id,
- }
- state.query.sort = {}
- onSearch()
- }
- const onAdd = () => {
- state.detail.transfer = {
- mode: 'add',
- }
- state.detail.show = true
- }
- const onEdit = (row) => {
- state.detail.transfer = {
- mode: 'edit',
- id: row.id,
- }
- state.detail.show = true
- }
- const onDel = (row: any) => {
- DialogStore.confirm({
- title: '删除确认',
- content: `请确认是否删除${row.name}?`,
- onSubmit: () => {
- userDel(row.id)
- .then(() => {
- ElMessage.success('删除成功!')
- })
- .catch(() => {})
- .finally(() => {
- onSearch()
- })
- },
- })
- }
- const onInvite = () => {
- accountGenerateFriendlyCode({
- userId: AppStore.userInfo?.id,
- tenantId: AppStore.tenantInfo?.id,
- type: 1,
- })
- .then(({ data }: any) => {
- const routerUrl = router.resolve({
- name: 'invite',
- query: {
- inviteCode: data,
- },
- })
- state.invite.url = location.origin + routerUrl.href
- state.invite.roles = []
- state.invite.show = true
- })
- .catch(() => {})
- .finally(() => {})
- }
- const onCopy = (str) => {
- copy(str)
- ElMessage.success('复制成功!')
- }
- onMounted(() => {
- initDictionary()
- onReset()
- })
- const initDictionary = () => {
- DictionaryStore.initTenants()
- }
- </script>
- <style lang="scss" scoped>
- .model {
- width: 100%;
- background-image: url('@/assets/images/model/model-icon-7.png');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- padding: 1rem;
- border-radius: 10px;
- box-shadow: 0rem 0.25rem 0.63rem 0rem rgba(40, 83, 247, 0.05);
- border: var(--czr-border);
- display: flex;
- flex-direction: column;
- }
- </style>
|