123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- <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
- width="19rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.time1"
- link="date"
- type="daterange"
- placeholder="租户启用时间"
- />
- <CzrFormColumn
- width="19rem"
- class="__czr-table-form-column"
- :span="24"
- label-width="0px"
- v-model:param="state.query.form.time2"
- 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.tenantStatus"
- 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="onAdd" />
- </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"
- />
- </template>
- <script setup lang="ts">
- import {
- computed,
- getCurrentInstance,
- onMounted,
- reactive,
- ref,
- watch,
- } from 'vue'
- import { 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 { tenantsPage } from '@/api/modules/center/tenant'
- const AppStore = useAppStore()
- const DialogStore = useDialogStore()
- const DictionaryStore = useDictionaryStore()
- const emit = defineEmits([])
- const props = defineProps({})
- const { proxy }: any = getCurrentInstance()
- const state: any = reactive({
- text: '',
- query: {
- init: false,
- loading: false,
- head: [
- { value: 'name', label: '租户名称', show: true },
- { value: 'code', label: '租户编号', show: true },
- { value: 'userQuota', label: '用户配额', show: true },
- { value: 'enabled', label: '租户状态', show: true },
- { value: 'name', label: '用户数量', show: true, sort: true },
- {
- value: 'createTime',
- label: '租户启用时间',
- show: true,
- width: 180,
- datetime: true,
- sort: true,
- },
- {
- value: 'updateTime',
- label: '租户停用时间',
- show: true,
- width: 180,
- datetime: true,
- sort: true,
- },
- {
- 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: {},
- },
- })
- const setText = debounce((v) => {
- state.query.form.keyword = v
- }, 1000)
- watch(
- () => state.text,
- (n) => {
- setText(n)
- },
- )
- watch(
- () => state.query.form,
- (n) => {
- if (state.query.init) {
- onSearch()
- }
- },
- { deep: true },
- )
- 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)) {
- params[k] = v
- }
- }
- // 添加排序参数
- for (const [k, v] of Object.entries(state.query.sort)) {
- }
- state.query.loading = true
- tenantsPage(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 = {}
- 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: `请确认是否删除`,
- onSubmit: () => {
- // appDel(row.id)
- // .then(() => {
- // ElMessage.success('删除成功!')
- // })
- // .catch(() => {})
- // .finally(() => {
- // onSearch()
- // })
- },
- })
- }
- onMounted(() => {
- initDictionary()
- onReset()
- })
- const initDictionary = () => {}
- </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>
|