fix: remove useLoading

This commit is contained in:
chansee97 2024-06-03 22:10:08 +08:00
parent 5945e63324
commit 648a0ba098
7 changed files with 10 additions and 27 deletions

View File

@ -1,4 +1,3 @@
export * from './useBoolean'
export * from './useLoading'
export * from './useEcharts'
export * from './usePermission'

View File

@ -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,
}
}

View File

@ -3,10 +3,10 @@ import type { DataTableColumns, FormInst } from 'naive-ui'
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
import TableModal from './components/TableModal.vue'
import { fetchUserList } from '@/service'
import { useBoolean, useLoading } from '@/hooks'
import { useBoolean } from '@/hooks'
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 initialModel = {

View File

@ -1,5 +1,5 @@
<script setup lang="ts">
import { useBoolean, useLoading } from '@/hooks'
import { useBoolean } from '@/hooks'
import { fetchRoleList } from '@/service'
interface Props {
@ -17,7 +17,7 @@ const emit = defineEmits<{
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 defaultFormModal: Entity.User = {

View File

@ -3,11 +3,11 @@ import type { DataTableColumns, FormInst } from 'naive-ui'
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
import TableModal from './components/TableModal.vue'
import { fetchUserPage } from '@/service'
import { useLoading } from '@/hooks'
import { useBoolean } from '@/hooks'
import { Gender } from '@/constants'
import CopyText from '@/components/custom/CopyText.vue'
const { loading, startLoading, endLoading } = useLoading(false)
const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
const initialModel = {
condition_1: '',

View File

@ -3,7 +3,7 @@ import type {
FormItemRule,
} from 'naive-ui'
import HelpInfo from '@/components/common/HelpInfo.vue'
import { useBoolean, useLoading } from '@/hooks'
import { useBoolean } from '@/hooks'
import { Regex } from '@/constants'
import { fetchRoleList } from '@/service'
@ -22,8 +22,7 @@ const emit = defineEmits<{
}>()
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 defaultFormModal: AppRoute.RowRoute = {
'name': '',

View File

@ -3,11 +3,11 @@ import type { DataTableColumns } from 'naive-ui'
import { NButton, NPopconfirm, NSpace, NTag } from 'naive-ui'
import TableModal from './components/TableModal.vue'
import { fetchAllRoutes } from '@/service'
import { useLoading } from '@/hooks'
import { useBoolean } from '@/hooks'
import { arrayToTree, renderIcon } from '@/utils'
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) {
window.$message.success(`删除菜单id:${id}`)