+
根级组织信息
-
-
-
-
-
-
-
管理员信息
-
-
-
-
-
+
+
管理员信息
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
- 完成
+ 完成
@@ -234,6 +225,7 @@
>
diff --git a/epmet-oper-web/vue.config.js b/epmet-oper-web/vue.config.js
index a64244c..4f927f6 100644
--- a/epmet-oper-web/vue.config.js
+++ b/epmet-oper-web/vue.config.js
@@ -3,7 +3,7 @@
*/
module.exports = {
baseUrl: process.env.NODE_ENV === 'production' ? '' : '/epmet-oper',
- chainWebpack: config => {
+ chainWebpack: (config) => {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule
@@ -19,7 +19,25 @@ module.exports = {
port: 9001,
overlay: {
errors: true,
- warnings: true
- }
- }
+ warnings: true,
+ },
+ },
+ // webpack简单配置
+ configureWebpack: {
+ // debuge调试配置
+ devtool: 'source-map',
+ externals: {
+ AMap: 'AMap',
+ },
+ resolve: {
+ //配置路径别名
+ // /node_modules/@vue/cli-service/lib/config/base.js中已经配好的@路径,所以这里可以直接使用@
+ alias: {
+ '@js': '@/js',
+ '@c': '@/components',
+ '@v': '@/views',
+ '@m': '@/img',
+ },
+ },
+ },
}