Browse Source

移动文件位子

Liugh 4 years ago
parent
commit
069827c3c4

+ 2 - 2
src/pages/data-auth-module/property-management/detail.vue → src/pages/data-auth-module/property-management/user-management/detail.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: Liugh
  * @Date: 2021-05-17 16:22:06
- * @LastEditTime: 2021-05-17 17:18:05
+ * @LastEditTime: 2021-05-18 09:47:22
  * @LastEditors: Do not edit
  * @Description: 
 -->
@@ -28,7 +28,7 @@
 
 <script>
 import Table from "@/pages/common/table";
-import { UserTableData, typeData } from "./DataConfig";
+import { UserTableData, typeData } from "../DataConfig";
 import * as dynamicManageApi from "@/api/dynamic-manage";
 export default {
     name: "user-attributes-detail", // 组件名称

+ 3 - 3
src/pages/data-auth-module/property-management/user-attributes.vue → src/pages/data-auth-module/property-management/user-management/user-attributes.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: Liugh
  * @Date: 2021-05-17 14:52:53
- * @LastEditTime: 2021-05-17 17:17:29
+ * @LastEditTime: 2021-05-18 09:45:46
  * @LastEditors: Do not edit
  * @Description: 
 -->
@@ -55,7 +55,7 @@
 
 <script>
 import Table from "@/pages/common/table";
-import { UserTableData } from "./DataConfig";
+import { UserTableData } from "../DataConfig";
 import * as dynamicManageApi from "@/api/dynamic-manage";
 import detail from "./detail";
 const editorArea = ["900px", "660px"];
@@ -172,5 +172,5 @@ export default {
 };
 </script>
 <style lang="scss" scoped>
-@import "./index.scss";
+@import "../index.scss";
 </style>

+ 1 - 1
src/router/modules/data-auth-module.js

@@ -16,7 +16,7 @@ const componentsRouter = [
         children: [
             {
                 path: "user-attributes",
-                component: () => import("@/pages/data-auth-module/property-management/user-attributes"),
+                component: () => import("@/pages/data-auth-module/property-management/user-management/user-attributes"),
                 name: "user-attributes",
                 meta: { title: "用户属性管理", noCache: false, permission: ["QXGL_SQKTGL_SJFJFLBM"] }
             },