zhangzengfei
2022-09-02 8dda5c3923bbc377371ccb8c7d4d83c499b5d1c3
调整子账户管理页面
6个文件已删除
1 文件已重命名
2个文件已修改
928 ■■■■■ 已修改文件
src/router/index.js 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/manageCenter/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/Banner.vue 55 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/DevList.vue 248 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/Flow.vue 68 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/FormArea.vue 296 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/SettingBox.vue 98 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/report/components/TableArea.vue 145 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/subAccount/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js
@@ -114,9 +114,9 @@
    component: () => import(/* webpackChunkName: "about" */ "../views/manageCenter")
  },
  {
    path: "/report",
    name: "report",
    component: () => import(/* webpackChunkName: "about" */ "../views/report")
    path: "/subAccount",
    name: "subAccount",
    component: () => import(/* webpackChunkName: "about" */ "../views/subAccount")
  },
  {
    // 实时监控
src/views/manageCenter/index.vue
@@ -316,9 +316,9 @@
        {
          name: "用户管理",
          icon: "/images/manageCenter/push.png",
          openPath: "/report",
          path: "/report",
          permission: "dataPushMng"
          openPath: "/subAccount",
          path: "/subAccount",
          permission: "subAccount"
        },
        {
src/views/report/components/Banner.vue
File was deleted
src/views/report/components/DevList.vue
File was deleted
src/views/report/components/Flow.vue
File was deleted
src/views/report/components/FormArea.vue
File was deleted
src/views/report/components/SettingBox.vue
File was deleted
src/views/report/components/TableArea.vue
File was deleted
src/views/subAccount/index.vue
File was renamed from src/views/report/index.vue
@@ -16,7 +16,7 @@
    </div>
    <!-- 页尾 -->
    <Footer :isBlack="true"></Footer>
    <!-- <Footer :isBlack="true"></Footer> -->
  </div>
</template>
@@ -30,9 +30,9 @@
export default {
  components: {
    IndexHeader,
    SubAccount,
    SubAccount
    // SettingBox,
    Footer
    // Footer
  }
}
</script>