wui-components-v2 1.0.65 → 1.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/{layouts/default.vue → wui-default/wui-default.vue} +1 -1
- package/components/{details-page/details-page.vue → wui-details-page/wui-details-page.vue} +1 -1
- package/components/{edit-page/edit-page.vue → wui-edit-page/wui-edit-page.vue} +1 -1
- package/components/{list/list.vue → wui-list/wui-list.vue} +1 -1
- package/components/{login/login.vue → wui-login/wui-login.vue} +1 -1
- package/components/{menus/menus.vue → wui-menus/wui-menus.vue} +1 -1
- package/components/{scan-binding-sensor/scan-binding-sensor.vue → wui-scan-binding-sensor/wui-scan-binding-sensor.vue} +1 -1
- package/components/{select-list/select-list.vue → wui-select-list/wui-select-list.vue} +1 -1
- package/components/{system-settings/system-settings.vue → wui-system-settings/wui-system-settings.vue} +1 -1
- package/components/{layouts/tabbar.vue → wui-tabbar/wui-tabbar.vue} +1 -1
- package/components/{update-component/update-component.vue → wui-update-component/wui-update-component.vue} +1 -1
- package/components/{user/user.vue → wui-user/wui-user.vue} +1 -1
- package/index.ts +24 -28
- package/package.json +1 -1
- /package/components/{login → wui-login}/footerImg.png +0 -0
- /package/components/{user → wui-user}/user-avatar-fill.png +0 -0
|
@@ -7,7 +7,7 @@ import globalMessage from '../../components/global-message/global-message.vue'
|
|
|
7
7
|
import privacyPopup from '../../components/privacy-popup/privacy-popup.vue'
|
|
8
8
|
|
|
9
9
|
defineOptions({
|
|
10
|
-
name: '
|
|
10
|
+
name: 'WuiLayoutsDefault',
|
|
11
11
|
})
|
|
12
12
|
const { themeVars, theme } = useManualTheme()
|
|
13
13
|
</script>
|
|
@@ -9,7 +9,7 @@ import ListTopButtons from '../list-top-buttons/list-top-buttons.vue'
|
|
|
9
9
|
import CardBotomButtons from '../card-botom-buttons/card-botom-buttons.vue'
|
|
10
10
|
|
|
11
11
|
defineOptions({
|
|
12
|
-
name: '
|
|
12
|
+
name: 'WuiList',
|
|
13
13
|
})
|
|
14
14
|
const Zpaging = ref<any>(null)
|
|
15
15
|
const config = ref<Config>({
|
|
@@ -11,7 +11,7 @@ import Search from '../search/search.vue'
|
|
|
11
11
|
import ListTopButtons from '../list-top-buttons/list-top-buttons.vue'
|
|
12
12
|
|
|
13
13
|
defineOptions({
|
|
14
|
-
name: '
|
|
14
|
+
name: 'WuiSelectList',
|
|
15
15
|
})
|
|
16
16
|
const globalToast = useGlobalToast()
|
|
17
17
|
const router = useRouter()
|
package/index.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import type { App } from 'vue'
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import Tabbar from './components/layouts/tabbar.vue'
|
|
2
|
+
import WuiSystemSettings from './components/wui-system-settings/wui-system-settings.vue'
|
|
3
|
+
import WuiMenus from './components/wui-menus/wui-menus.vue'
|
|
4
|
+
import Wuilogin from './components/wui-login/wui-login.vue'
|
|
5
|
+
import WuiLayoutsDefault from './components/wui-default/wui-default.vue'
|
|
6
|
+
import WuiTabbar from './components/wui-tabbar/wui-tabbar.vue'
|
|
8
7
|
import { useLocale } from './composables/useLocale'
|
|
9
8
|
import { useManualTheme } from './composables/useManualTheme'
|
|
10
9
|
import { useGlobalLoading } from './composables/useGlobalLoading'
|
|
@@ -14,30 +13,27 @@ import { useUser } from './composables/useUser'
|
|
|
14
13
|
import { req } from './api/index'
|
|
15
14
|
import { useTabbar } from './composables/useTabbar'
|
|
16
15
|
import { persistPlugin } from './store/persist'
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import User from './components/user/user.vue'
|
|
16
|
+
import WuiList from './components/wui-list/wui-list.vue'
|
|
17
|
+
import WuiselectList from './components/wui-select-list/wui-select-list.vue'
|
|
18
|
+
import WuieditPage from './components/wui-edit-page/wui-edit-page.vue'
|
|
19
|
+
import WuidetailsPage from './components/wui-details-page/wui-details-page.vue'
|
|
20
|
+
import WuiUpdateComponent from './components/wui-update-component/wui-update-component.vue'
|
|
21
|
+
import WuiScanBindingSensor from './components/wui-scan-binding-sensor/wui-scan-binding-sensor.vue'
|
|
22
|
+
import WuiUser from './components/wui-user/wui-user.vue'
|
|
25
23
|
// 组件列表
|
|
26
24
|
const coms: Array<{ name: string }> = [
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
ScanBindingSensor,
|
|
40
|
-
User,
|
|
25
|
+
WuiSystemSettings,
|
|
26
|
+
WuiMenus,
|
|
27
|
+
Wuilogin,
|
|
28
|
+
WuiLayoutsDefault,
|
|
29
|
+
WuiTabbar,
|
|
30
|
+
WuiList,
|
|
31
|
+
WuiselectList,
|
|
32
|
+
WuieditPage,
|
|
33
|
+
WuidetailsPage,
|
|
34
|
+
WuiUpdateComponent,
|
|
35
|
+
WuiScanBindingSensor,
|
|
36
|
+
WuiUser,
|
|
41
37
|
]
|
|
42
38
|
|
|
43
39
|
/**
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|