车间能级提升-智能设备管理系统
zhuguifei
2025-04-18 eac7c5321dca68e34db95995db2cabd29b9324da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
 
export default defineUniPages({
  globalStyle: {
    navigationStyle: 'default',
    navigationBarTitleText: '兰宝设备管理',
    navigationBarBackgroundColor: '#4D80F0',
    navigationBarTextStyle: 'white',
    backgroundColor: '#FFFFFF',
  },
  easycom: {
    autoscan: true,
    custom: {
      // '^fg-(.*)': '@/components/fg-$1.vue',
      '^wd-(.*)': 'wot-design-uni/components/wd-$1/wd-$1.vue',
      '^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)':
        'z-paging/components/z-paging$1/z-paging$1.vue',
    },
  },
  tabBar: {
    custom: true,
    color: '#999999',
    selectedColor: '#4D80F0',
    borderStyle: 'black',
    height: '50px',
    fontSize: '10px',
    iconWidth: '24px',
    spacing: '3px',
    list: [
      // 注意tabbar路由需要使用 layout:tabbar 布局
      {
        pagePath: 'pages/home/index',
        text: '首页',
        icon: 'home',
        iconType: 'wot',
      },
      {
        pagePath: 'pages/equ/index',
        text: '设备',
        icon: 'mobile',
        iconType: 'wot',
      },
      {
        pagePath: 'pages/equ/index',
        icon: 'scan',
        iconType: 'wot',
      },
      // {
      //   pagePath: 'pages/my/index',
      //   text: '我的',
      //   icon: '/static/logo.svg',
      //   iconType: 'local',
      // },
      {
        pagePath: 'pages/spare/index',
        text: '备件',
        icon: 'setting1',
        iconType: 'wot',
      },
      {
        pagePath: 'pages/my/index',
        text: '我的',
        icon: 'user',
        iconType: 'wot',
      },
      // {
      //   pagePath: 'pages/my/index',
      //   text: '我的',
      //   icon: 'iconfont icon-my',
      //   iconType: 'iconfont',
      // },
    ],
  },
})