无人机管理后台前端(已迁走)
zrj
2024-07-24 941efea1393008d846cb0e1aecef480262079816
菜单新增系统类型区分系统
2 files modified
34 ■■■■ changed files
index.html 2 ●●● patch | view | raw | blame | history
src/views/system/menu.vue 32 ●●●● patch | view | raw | blame | history
index.html
@@ -19,7 +19,7 @@
    <link rel="stylesheet" href="/iconfont/saber/iconfont.css" />
    <link rel="stylesheet" href="/css/loading.css" />
    <link rel="stylesheet" href="/css/saber.css" />
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
    <!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
    <title>中图智绘低空无人机监测网平台</title>
  </head>
src/views/system/menu.vue
@@ -158,6 +158,18 @@
            ],
          },
          {
            label: '菜单别名',
            prop: 'alias',
            search: true,
            rules: [
              {
                required: true,
                message: '请输入菜单别名',
                trigger: 'blur',
              },
            ],
          },
          {
            label: '菜单类型',
            prop: 'category',
            type: 'radio',
@@ -181,13 +193,25 @@
            ],
          },
          {
            label: '菜单别名',
            prop: 'alias',
            search: true,
            label: '系统类型',
            prop: 'sysType',
            type: 'radio',
            value: 1,
            dicData: [
              {
                label: '后台管理',
                value: 1,
              },
              {
                label: '大屏',
                value: 2,
              },
            ],
            hide: true,
            rules: [
              {
                required: true,
                message: '请输入菜单别名',
                message: '请选择系统类型',
                trigger: 'blur',
              },
            ],