af-mobile-client-vue3 1.3.20 → 1.3.21

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.3.20",
4
+ "version": "1.3.21",
5
5
  "packageManager": "pnpm@10.13.1",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -161,6 +161,7 @@ function closeWindows() {
161
161
  }
162
162
 
163
163
  async function afterGeneral(result) {
164
+ console.log('>>>> result: ', JSON.stringify(result))
164
165
  // 排序 functions 及其嵌套的 children
165
166
  if (result.functions && Array.isArray(result.functions)) {
166
167
  // 对顶层菜单进行排序
@@ -1,11 +1,11 @@
1
1
  <script setup lang="ts">
2
- import type { PhoneLocationStatus } from '~root/src/components/data/XOlMap/types'
2
+ import type { PhoneLocationStatus } from '@af-mobile-client-vue3/components/data/XOlMap/types'
3
3
  import useSettingStore from '@af-mobile-client-vue3/stores/modules/setting'
4
4
  import useUserStore from '@af-mobile-client-vue3/stores/modules/user'
5
+ import { mobileUtil } from '@af-mobile-client-vue3/utils/mobileUtil'
5
6
  import { Dialog as vanDialog, Icon as vanIcon } from 'vant'
6
7
  import { computed, onMounted, onUnmounted, ref } from 'vue'
7
8
  import { useRouter } from 'vue-router'
8
- import { mobileUtil } from '~root/src/utils/mobileUtil'
9
9
  import ModifyPassword from './comm/ModifyPassword.vue'
10
10
 
11
11
  const router = useRouter()