mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: remove useLoading
This commit is contained in:
parent
5945e63324
commit
648a0ba098
@ -1,4 +1,3 @@
|
|||||||
export * from './useBoolean'
|
export * from './useBoolean'
|
||||||
export * from './useLoading'
|
|
||||||
export * from './useEcharts'
|
export * from './useEcharts'
|
||||||
export * from './usePermission'
|
export * from './usePermission'
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
import { useBoolean } from './useBoolean'
|
|
||||||
|
|
||||||
export function useLoading(initValue = false) {
|
|
||||||
const {
|
|
||||||
bool: loading,
|
|
||||||
setTrue: startLoading,
|
|
||||||
setFalse: endLoading,
|
|
||||||
} = useBoolean(initValue)
|
|
||||||
|
|
||||||
return {
|
|
||||||
loading,
|
|
||||||
startLoading,
|
|
||||||
endLoading,
|
|
||||||
}
|
|
||||||
}
|
|
@ -3,10 +3,10 @@ import type { DataTableColumns, FormInst } from 'naive-ui'
|
|||||||
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
||||||
import TableModal from './components/TableModal.vue'
|
import TableModal from './components/TableModal.vue'
|
||||||
import { fetchUserList } from '@/service'
|
import { fetchUserList } from '@/service'
|
||||||
import { useBoolean, useLoading } from '@/hooks'
|
import { useBoolean } from '@/hooks'
|
||||||
import { Gender } from '@/constants'
|
import { Gender } from '@/constants'
|
||||||
|
|
||||||
const { loading, startLoading, endLoading } = useLoading(false)
|
const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
const { bool: visible, setTrue: openModal } = useBoolean(false)
|
const { bool: visible, setTrue: openModal } = useBoolean(false)
|
||||||
|
|
||||||
const initialModel = {
|
const initialModel = {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useBoolean, useLoading } from '@/hooks'
|
import { useBoolean } from '@/hooks'
|
||||||
import { fetchRoleList } from '@/service'
|
import { fetchRoleList } from '@/service'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@ -17,7 +17,7 @@ const emit = defineEmits<{
|
|||||||
|
|
||||||
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
||||||
|
|
||||||
const { loading: submitLoading, startLoading, endLoading } = useLoading(false)
|
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
|
|
||||||
const formModel = ref()
|
const formModel = ref()
|
||||||
const defaultFormModal: Entity.User = {
|
const defaultFormModal: Entity.User = {
|
||||||
|
@ -3,11 +3,11 @@ import type { DataTableColumns, FormInst } from 'naive-ui'
|
|||||||
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
||||||
import TableModal from './components/TableModal.vue'
|
import TableModal from './components/TableModal.vue'
|
||||||
import { fetchUserPage } from '@/service'
|
import { fetchUserPage } from '@/service'
|
||||||
import { useLoading } from '@/hooks'
|
import { useBoolean } from '@/hooks'
|
||||||
import { Gender } from '@/constants'
|
import { Gender } from '@/constants'
|
||||||
import CopyText from '@/components/custom/CopyText.vue'
|
import CopyText from '@/components/custom/CopyText.vue'
|
||||||
|
|
||||||
const { loading, startLoading, endLoading } = useLoading(false)
|
const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
|
|
||||||
const initialModel = {
|
const initialModel = {
|
||||||
condition_1: '',
|
condition_1: '',
|
||||||
|
@ -3,7 +3,7 @@ import type {
|
|||||||
FormItemRule,
|
FormItemRule,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import HelpInfo from '@/components/common/HelpInfo.vue'
|
import HelpInfo from '@/components/common/HelpInfo.vue'
|
||||||
import { useBoolean, useLoading } from '@/hooks'
|
import { useBoolean } from '@/hooks'
|
||||||
import { Regex } from '@/constants'
|
import { Regex } from '@/constants'
|
||||||
import { fetchRoleList } from '@/service'
|
import { fetchRoleList } from '@/service'
|
||||||
|
|
||||||
@ -22,8 +22,7 @@ const emit = defineEmits<{
|
|||||||
}>()
|
}>()
|
||||||
|
|
||||||
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
||||||
|
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
const { loading: submitLoading, startLoading, endLoading } = useLoading(false)
|
|
||||||
|
|
||||||
const defaultFormModal: AppRoute.RowRoute = {
|
const defaultFormModal: AppRoute.RowRoute = {
|
||||||
'name': '',
|
'name': '',
|
||||||
|
@ -3,11 +3,11 @@ import type { DataTableColumns } from 'naive-ui'
|
|||||||
import { NButton, NPopconfirm, NSpace, NTag } from 'naive-ui'
|
import { NButton, NPopconfirm, NSpace, NTag } from 'naive-ui'
|
||||||
import TableModal from './components/TableModal.vue'
|
import TableModal from './components/TableModal.vue'
|
||||||
import { fetchAllRoutes } from '@/service'
|
import { fetchAllRoutes } from '@/service'
|
||||||
import { useLoading } from '@/hooks'
|
import { useBoolean } from '@/hooks'
|
||||||
import { arrayToTree, renderIcon } from '@/utils'
|
import { arrayToTree, renderIcon } from '@/utils'
|
||||||
import CopyText from '@/components/custom/CopyText.vue'
|
import CopyText from '@/components/custom/CopyText.vue'
|
||||||
|
|
||||||
const { loading, startLoading, endLoading } = useLoading(false)
|
const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
|
|
||||||
function deleteData(id: number) {
|
function deleteData(id: number) {
|
||||||
window.$message.success(`删除菜单id:${id}`)
|
window.$message.success(`删除菜单id:${id}`)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user