Compare commits
No commits in common. "2fc5a867fb85823554989e2d209f3d4441eb3026" and "397c874f0049aa7c8433141a0e2cc744c93f927a" have entirely different histories.
2fc5a867fb
...
397c874f00
|
@ -18,7 +18,6 @@ declare module 'vue' {
|
||||||
ADatePicker: typeof import('ant-design-vue/es')['DatePicker']
|
ADatePicker: typeof import('ant-design-vue/es')['DatePicker']
|
||||||
ADivider: typeof import('ant-design-vue/es')['Divider']
|
ADivider: typeof import('ant-design-vue/es')['Divider']
|
||||||
ADrawer: typeof import('ant-design-vue/es')['Drawer']
|
ADrawer: typeof import('ant-design-vue/es')['Drawer']
|
||||||
ADropdown: typeof import('ant-design-vue/es')['Dropdown']
|
|
||||||
AForm: typeof import('ant-design-vue/es')['Form']
|
AForm: typeof import('ant-design-vue/es')['Form']
|
||||||
AFormItem: typeof import('ant-design-vue/es')['FormItem']
|
AFormItem: typeof import('ant-design-vue/es')['FormItem']
|
||||||
AInput: typeof import('ant-design-vue/es')['Input']
|
AInput: typeof import('ant-design-vue/es')['Input']
|
||||||
|
|
|
@ -1,58 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="flex-justify-between h-f">
|
<div class="flex-justify-between h-f">
|
||||||
<div class="flex-center">
|
<div class="flex-center">
|
||||||
<menu-unfold-outlined v-if="collapsed" class="trigger" @click="() => (collapsed = !collapsed)"/>
|
<menu-unfold-outlined v-if="collapsed" class="trigger" @click="() => (collapsed = !collapsed)" />
|
||||||
<menu-fold-outlined v-else class="trigger" @click="() => (collapsed = !collapsed)"/>
|
<menu-fold-outlined v-else class="trigger" @click="() => (collapsed = !collapsed)" />
|
||||||
</div>
|
</div>
|
||||||
<div class="margin-right flex-center">
|
<div class="margin-right flex-center">
|
||||||
|
<a-avatar />
|
||||||
<a-dropdown :trigger="['click']">
|
|
||||||
<a-avatar @click.prevent/>
|
|
||||||
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="3" @click="showConfirm">退出登录</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
</a-dropdown>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
// import { staticRouter } from '@/router/staticRouters.ts'
|
// import { staticRouter } from '@/router/staticRouters.ts'
|
||||||
import {MenuFoldOutlined, MenuUnfoldOutlined} from '@ant-design/icons-vue'
|
import { MenuFoldOutlined, MenuUnfoldOutlined } from '@ant-design/icons-vue'
|
||||||
import {useUserStore} from "@/stores/modules/userStore.ts";
|
|
||||||
|
|
||||||
const collapsed = defineModel<boolean>('collapsed')
|
const collapsed = defineModel<boolean>('collapsed')
|
||||||
import {Modal} from 'ant-design-vue';
|
|
||||||
import {ExclamationCircleOutlined} from '@ant-design/icons-vue';
|
|
||||||
import {createVNode} from 'vue';
|
|
||||||
import router from "@/router";
|
|
||||||
|
|
||||||
const showConfirm = () => {
|
|
||||||
Modal.confirm({
|
|
||||||
title: '确定要退出登录么?',
|
|
||||||
icon: createVNode(ExclamationCircleOutlined),
|
|
||||||
// content: createVNode('div', {style: 'color:red;'}, 'Some descriptions'),
|
|
||||||
async onOk() {
|
|
||||||
console.log('OK');
|
|
||||||
|
|
||||||
//清除登录信息
|
|
||||||
await useUserStore().resetUserInfo();
|
|
||||||
//跳转登录页
|
|
||||||
await router.push({
|
|
||||||
path: '/login'
|
|
||||||
})
|
|
||||||
},
|
|
||||||
onCancel() {
|
|
||||||
console.log('Cancel');
|
|
||||||
},
|
|
||||||
class: 'test',
|
|
||||||
});
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<a-layout class="main-content">
|
<a-layout class="main-content">
|
||||||
<a-layout-sider :collapsed="collapsed" theme="light" :trigger="null" collapsible>
|
<a-layout-sider :collapsed="collapsed" theme="light" :trigger="null" collapsible>
|
||||||
<div v-if="!collapsed" class="title flex-center">
|
<div v-if="!collapsed" class="title flex-center">
|
||||||
<div>公安后台</div>
|
<div>超级后台</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="logo flex-center">
|
<div v-else class="logo flex-center">
|
||||||
<img src="@/assets/vue.svg" title="超级后台" alt="xx" />
|
<img src="@/assets/vue.svg" title="超级后台" alt="xx" />
|
||||||
|
|
|
@ -72,8 +72,6 @@ const login = async () => {
|
||||||
})
|
})
|
||||||
//保存token
|
//保存token
|
||||||
userStore.saveTokenInfo(resp.data as TokenInfo)
|
userStore.saveTokenInfo(resp.data as TokenInfo)
|
||||||
localStorage.setItem("openKeys", []);
|
|
||||||
localStorage.setItem("selectedKeys", []);
|
|
||||||
//跳转页面
|
//跳转页面
|
||||||
router.push('/index').then(() => {
|
router.push('/index').then(() => {
|
||||||
notification.success({
|
notification.success({
|
||||||
|
|
|
@ -81,16 +81,16 @@ export const staticRouter: RouteRecordRaw[] =
|
||||||
},
|
},
|
||||||
component: () => import('@/views/query/publicUnit.vue')
|
component: () => import('@/views/query/publicUnit.vue')
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// path: 'weapp-user', // 这里使用相对路径而不是 '/register'
|
path: 'weapp-user', // 这里使用相对路径而不是 '/register'
|
||||||
// name: 'weapp-user',
|
name: 'weapp-user',
|
||||||
// meta: {
|
meta: {
|
||||||
//
|
|
||||||
// title: '微信小程序用户',
|
title: '微信小程序用户',
|
||||||
// keepalive: true
|
keepalive: true
|
||||||
// },
|
},
|
||||||
// component: () => import('@/views/query/weappUser.vue')
|
component: () => import('@/views/query/weappUser.vue')
|
||||||
// },
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<!-- 企事业单位 -->
|
<!-- 企事业单位 -->
|
||||||
<TableProMax ref="tableRef" :request-api="reqApi" :columns="columns" :searchFormOptions="searchFormOptions"
|
<TableProMax ref="tableRef" :request-api="reqApi" :columns="columns" :searchFormOptions="searchFormOptions" :scroll="{ x }">
|
||||||
:scroll="{ x }">
|
|
||||||
<!-- <template #tableHeader>
|
<!-- <template #tableHeader>
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-button type="primary" @click="addUserManagement">新增用户</a-button>
|
<a-button type="primary" @click="addUserManagement">新增用户</a-button>
|
||||||
|
@ -16,19 +15,18 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
import {storeTreeData, loadTreeFromCache} from '@/utils/DB.ts'
|
import { openDB, storeTreeData, loadTreeFromCache } from '@/utils/DB.ts'
|
||||||
import api from '@/axios'
|
import api from '@/axios'
|
||||||
import {ref, reactive} from 'vue'
|
import { ref, reactive } from 'vue'
|
||||||
import TableProMax from '@/components/table/TableProMax.vue'
|
import TableProMax from '@/components/table/TableProMax.vue'
|
||||||
import {TableProMaxProps} from '@/types/components/table/index.ts'
|
import { TableProMaxProps } from '@/types/components/table/index.ts'
|
||||||
import {ComponentExposed} from 'vue-component-type-helpers'
|
import { ComponentExposed } from 'vue-component-type-helpers'
|
||||||
import {dictSelectNodes} from '@/config/dict.ts'
|
import { dictSelectNodes } from '@/config/dict.ts'
|
||||||
import {publicUnitPagerQueryParams, FromItem} from '@/types/views/publicUnit.ts'
|
import { publicUnitPagerQueryParams, FromItem } from '@/types/views/publicUnit.ts'
|
||||||
// import FormProMax from '@/components/form/FormProMax.vue'
|
// import FormProMax from '@/components/form/FormProMax.vue'
|
||||||
import {FormProMaxItemOptions} from '@/types/components/form//index.ts'
|
import { FormProMaxItemOptions } from '@/types/components/form//index.ts'
|
||||||
import {FormExpose} from 'ant-design-vue/es/form/Form'
|
import { FormExpose } from 'ant-design-vue/es/form/Form'
|
||||||
import {message} from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
|
|
||||||
const formRef = ref<FormExpose>(null)
|
const formRef = ref<FormExpose>(null)
|
||||||
type TableProps = TableProMaxProps<publicUnitPagerQueryParams>
|
type TableProps = TableProMaxProps<publicUnitPagerQueryParams>
|
||||||
const tableRef = ref<ComponentExposed<typeof TableProMax>>(null!)
|
const tableRef = ref<ComponentExposed<typeof TableProMax>>(null!)
|
||||||
|
@ -46,7 +44,7 @@ const columns: TableProps['columns'] = [
|
||||||
{
|
{
|
||||||
dataIndex: 'provinceName',
|
dataIndex: 'provinceName',
|
||||||
title: '行政区划',
|
title: '行政区划',
|
||||||
customRender: ({record}) => {
|
customRender: ({ record }) => {
|
||||||
return `${record?.provinceName}/${record?.cityName}/${record?.districtsName}/${record?.streetName}`
|
return `${record?.provinceName}/${record?.cityName}/${record?.districtsName}/${record?.streetName}`
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -72,14 +70,14 @@ const columns: TableProps['columns'] = [
|
||||||
{
|
{
|
||||||
dataIndex: 'contactPersonInfo',
|
dataIndex: 'contactPersonInfo',
|
||||||
title: '联系人姓名',
|
title: '联系人姓名',
|
||||||
customRender: ({record}) => {
|
customRender: ({ record }) => {
|
||||||
return record?.contactPersonInfo?.name
|
return record?.contactPersonInfo?.name
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
dataIndex: 'contactPersonInfo',
|
dataIndex: 'contactPersonInfo',
|
||||||
title: '联系人手机号',
|
title: '联系人手机号',
|
||||||
customRender: ({record}) => {
|
customRender: ({ record }) => {
|
||||||
return record?.contactPersonInfo?.telephone
|
return record?.contactPersonInfo?.telephone
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,192 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<!-- 小程序用户 -->
|
<!-- 小程序用户 -->
|
||||||
<TableProMax ref="tableRef" :request-api="reqApi" :columns="columns" :searchFormOptions="searchFormOptions"
|
小程序用户
|
||||||
:scroll="{ x }">
|
|
||||||
|
|
||||||
</TableProMax>
|
|
||||||
<a-modal v-model:open="visible" :title="title" @ok="submit" @cancel="closeModal">
|
|
||||||
|
|
||||||
</a-modal>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="tsx">
|
<script setup lang="ts"></script>
|
||||||
import {storeTreeData, loadTreeFromCache} from '@/utils/DB.ts'
|
|
||||||
import api from '@/axios'
|
|
||||||
import {ref, reactive} from 'vue'
|
|
||||||
import TableProMax from '@/components/table/TableProMax.vue'
|
|
||||||
import {TableProMaxProps} from '@/types/components/table/index.ts'
|
|
||||||
import {ComponentExposed} from 'vue-component-type-helpers'
|
|
||||||
import {dictSelectNodes} from '@/config/dict.ts'
|
|
||||||
import {publicUnitPagerQueryParams, FromItem} from '@/types/views/publicUnit.ts'
|
|
||||||
import {FormProMaxItemOptions} from '@/types/components/form//index.ts'
|
|
||||||
import {FormExpose} from 'ant-design-vue/es/form/Form'
|
|
||||||
import {message} from 'ant-design-vue'
|
|
||||||
|
|
||||||
const formRef = ref<FormExpose>(null)
|
|
||||||
type TableProps = TableProMaxProps<publicUnitPagerQueryParams>
|
|
||||||
const tableRef = ref<ComponentExposed<typeof TableProMax>>(null!)
|
|
||||||
const reqApi: TableProps['requestApi'] = (params) => api.post('/management/miniProgramUserPager', params) //分页
|
|
||||||
|
|
||||||
const columns: TableProps['columns'] = [
|
|
||||||
{
|
|
||||||
dataIndex: 'name',
|
|
||||||
title: '单位名称',
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// dataIndex: 'code',
|
|
||||||
// title: '单位代码',
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
dataIndex: 'provinceName',
|
|
||||||
title: '行政区划',
|
|
||||||
customRender: ({record}) => {
|
|
||||||
return `${record?.provinceName}/${record?.cityName}/${record?.districtsName}/${record?.streetName}`
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
// {
|
|
||||||
// dataIndex: 'isEnable',
|
|
||||||
// title: '是否启用',
|
|
||||||
// customRender: ({ text }) => <a-tag color={text?.extData?.color}>{text?.label}</a-tag>,
|
|
||||||
// width: 150,
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// dataIndex: 'checkStatus',
|
|
||||||
// title: '是否审核',
|
|
||||||
// customRender: ({ record }) => {
|
|
||||||
// return record.checkStatus?.extData?.color === 'success' ? <a-tag color='green'>{record?.checkStatus?.label}</a-tag> : <a-tag color='#f50'>{record?.checkStatus?.label}</a-tag>
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
dataIndex: 'address',
|
|
||||||
title: '详细地址',
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
dataIndex: 'contactPersonInfo',
|
|
||||||
title: '联系人姓名',
|
|
||||||
customRender: ({record}) => {
|
|
||||||
return record?.contactPersonInfo?.name
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'contactPersonInfo',
|
|
||||||
title: '联系人手机号',
|
|
||||||
customRender: ({record}) => {
|
|
||||||
return record?.contactPersonInfo?.telephone
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'createTime',
|
|
||||||
title: '创建时间',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'remark',
|
|
||||||
title: '备注',
|
|
||||||
},
|
|
||||||
]
|
|
||||||
const x: number = columns.reduce((a, b) => a + (b.width as number), 0)
|
|
||||||
const visible = ref(false)
|
|
||||||
const title = ref('新增用户')
|
|
||||||
const addUserManagement = () => {
|
|
||||||
visible.value = true
|
|
||||||
title.value = ''
|
|
||||||
}
|
|
||||||
|
|
||||||
const getTree = async () => {
|
|
||||||
// 先尝试从缓存中加载数据
|
|
||||||
const cachedData = await loadTreeFromCache()
|
|
||||||
if (cachedData) {
|
|
||||||
console.log('未发请求')
|
|
||||||
// 如果缓存存在,直接使用缓存数据
|
|
||||||
return cachedData
|
|
||||||
} else {
|
|
||||||
console.log('发起了请求')
|
|
||||||
// 如果缓存不存在,发起 API 请求
|
|
||||||
const res = await api.get<any>('/common/administrativeDivisionTree')
|
|
||||||
await storeTreeData(res.data)
|
|
||||||
return res.data
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const loadOptions = async () => {
|
|
||||||
const treeData = await getTree()
|
|
||||||
searchFormOptions.treeSelect.options = treeData
|
|
||||||
}
|
|
||||||
loadOptions()
|
|
||||||
const searchFormOptions = reactive<TableProps['searchFormOptions']>({
|
|
||||||
name: {
|
|
||||||
type: 'input',
|
|
||||||
label: '名称',
|
|
||||||
},
|
|
||||||
treeSelect: {
|
|
||||||
type: 'cascader',
|
|
||||||
label: '行政区划',
|
|
||||||
},
|
|
||||||
telephone: {
|
|
||||||
type: 'input',
|
|
||||||
label: '手机号',
|
|
||||||
},
|
|
||||||
// isEnable: {
|
|
||||||
// type: 'select',
|
|
||||||
// label: '是否启用',
|
|
||||||
// options: [
|
|
||||||
// {
|
|
||||||
// value: null,
|
|
||||||
// label: '全部',
|
|
||||||
// },
|
|
||||||
// ...dictSelectNodes('IsEnable'),
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
})
|
|
||||||
|
|
||||||
const formParams = ref<{
|
|
||||||
snowFlakeId?: string
|
|
||||||
name: string
|
|
||||||
sex: number
|
|
||||||
telephone: string
|
|
||||||
isEnable: any
|
|
||||||
remark?: string
|
|
||||||
}>({
|
|
||||||
name: '',
|
|
||||||
sex: 0,
|
|
||||||
telephone: '',
|
|
||||||
isEnable: 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
const submit = async () => {
|
|
||||||
// await formRef.value.validate()
|
|
||||||
}
|
|
||||||
const closeModal = () => {
|
|
||||||
visible.value = false
|
|
||||||
}
|
|
||||||
const formItemOptions = ref<FormProMaxItemOptions<FromItem>>({
|
|
||||||
name: {
|
|
||||||
type: 'input',
|
|
||||||
label: '姓名',
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
sex: {
|
|
||||||
type: 'radioGroup',
|
|
||||||
label: '性别',
|
|
||||||
options: dictSelectNodes('Sex'),
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
telephone: {
|
|
||||||
type: 'input',
|
|
||||||
label: '手机号',
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
isEnable: {
|
|
||||||
type: 'radioGroup',
|
|
||||||
label: '启用状态',
|
|
||||||
options: dictSelectNodes('IsEnable'),
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
remark: {
|
|
||||||
type: 'inputTextArea',
|
|
||||||
label: '备注',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
Loading…
Reference in New Issue