ソースを参照

创建市场部项目

minchuang@agilestar.cn 4 年 前
コミット
772d1a5445
9 ファイル変更13963 行追加0 行削除
  1. 3 0
      .browserslistrc
  2. 16 0
      .editorconfig
  3. 17 0
      .eslintrc.js
  4. 21 0
      .gitignore
  5. 24 0
      README.md
  6. 14 0
      babel.config.js
  7. 13708 0
      package-lock.json
  8. 54 0
      package.json
  9. 106 0
      vue.config.js

+ 3 - 0
.browserslistrc

@@ -0,0 +1,3 @@
+> 1%
+last 2 versions
+not ie <= 8

+ 16 - 0
.editorconfig

@@ -0,0 +1,16 @@
+# http://editorconfig.org
+root = true
+
+[*]
+indent_style = space
+indent_size = 4
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[Makefile]
+indent_style = tab

+ 17 - 0
.eslintrc.js

@@ -0,0 +1,17 @@
+module.exports = {
+  root: true,
+  env: {
+    node: true
+  },
+  'extends': [
+    'plugin:vue/essential',
+    'eslint:recommended'
+  ],
+  rules: {
+    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
+    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
+  },
+  parserOptions: {
+    parser: 'babel-eslint'
+  }
+}

+ 21 - 0
.gitignore

@@ -0,0 +1,21 @@
+.DS_Store
+node_modules
+/dist
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?

+ 24 - 0
README.md

@@ -0,0 +1,24 @@
+# yhl_admin
+
+## Project setup
+```
+npm install
+```
+
+### Compiles and hot-reloads for development
+```
+npm run serve
+```
+
+### Compiles and minifies for production
+```
+npm run build
+```
+
+### Lints and fixes files
+```
+npm run lint
+```
+
+### Customize configuration
+See [Configuration Reference](https://cli.vuejs.org/config/).

+ 14 - 0
babel.config.js

@@ -0,0 +1,14 @@
+module.exports = {
+	presets: [
+		'@vue/cli-plugin-babel/preset'
+	],
+	plugins: [
+		[
+			"component",
+			{
+				"libraryName": "element-ui",
+				"styleLibraryName": "theme-chalk"
+			}
+		]
+	]
+}

ファイルの差分が大きいため隠しています
+ 13708 - 0
package-lock.json


+ 54 - 0
package.json

@@ -0,0 +1,54 @@
+{
+  "name": "admin",
+  "version": "0.1.0",
+  "private": true,
+  "scripts": {
+    "serve": "vue-cli-service serve",
+    "build": "vue-cli-service build",
+    "lint": "vue-cli-service lint",
+    "analyz": "vue-cli-service build"
+  },
+  "dependencies": {
+    "@tinymce/tinymce-vue": "^3.0.1",
+    "axios": "^0.19.0",
+    "canvg": "^3.0.7",
+    "core-js": "^3.6.1",
+    "echarts": "^4.7.0",
+    "element-ui": "^2.13.0",
+    "exceljs": "^4.2.0",
+    "file-saver": "^2.0.5",
+    "html2canvas": "^1.0.0-rc.7",
+    "jquery": "^3.6.0",
+    "jquery-ui": "^1.12.1",
+    "js-audio-recorder": "^1.0.7",
+    "jsplumb": "^2.15.5",
+    "moment": "^2.29.1",
+    "qs": "^6.9.1",
+    "tinymce": "^5.7.1",
+    "vue": "^2.6.11",
+    "vue-axios": "^2.1.5",
+    "vue-contextmenu": "^1.5.10",
+    "vue-cookie": "^1.1.4",
+    "vue-fullscreen": "^2.2.0",
+    "vue-router": "^3.0.7",
+    "vuex": "^3.3.0",
+    "xlsx": "^0.16.9"
+  },
+  "devDependencies": {
+    "@vue/cli-plugin-babel": "^4.1.2",
+    "@vue/cli-plugin-eslint": "^4.1.2",
+    "@vue/cli-service": "^4.1.2",
+    "babel-eslint": "^10.0.3",
+    "babel-plugin-component": "^1.1.1",
+    "compression-webpack-plugin": "^3.0.1",
+    "eslint": "^5.16.0",
+    "eslint-plugin-vue": "^5.0.0",
+    "node-sass": "^4.12.0",
+    "sass-loader": "^8.0.0",
+    "script-loader": "^0.7.2",
+    "vue-template-compiler": "^2.6.11",
+    "webpack-bundle-analyzer": "^3.9.0",
+    "webpack-compiler-plugin": "^1.0.0",
+    "webpack-dashboard": "^3.2.0"
+  }
+}

+ 106 - 0
vue.config.js

@@ -0,0 +1,106 @@
+const CompressionPlugin = require('compression-webpack-plugin');
+const webpack = require('webpack');
+const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
+module.exports = {
+    publicPath: process.env.NODE_ENV === 'production' ? '' : '/',
+    productionSourceMap: false,
+    lintOnSave: false,
+
+    chainWebpack: config => {
+        if (process.env.NODE_ENV === 'production') {
+            if (process.env.npm_config_report) {
+                config
+                    .plugin('webpack-bundle-analyzer')
+                    .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
+            }
+            config.plugins.delete('prefetch');
+        }
+    },
+    configureWebpack: config => {
+        if (process.env.NODE_ENV === 'production') {
+            config.optimization = {
+                splitChunks: {
+                    chunks: "all",          //async异步代码分割 initial同步代码分割 all同步异步分割都开启
+                    minSize: 10000,         //字节 引入的文件大于30kb才进行分割
+                    // minChunks: 2,           //模块至少使用次数
+                    // maxAsyncRequests: 25,    //同时加载的模块数量最多是5个,只分割出同时引入的前5个文件
+                    // maxInitialRequests: 30,  //首页加载的时候引入的文件最多3个
+                    automaticNameDelimiter: '-', //缓存组和生成文件名称之间的连接符
+                    // name: true,                  //缓存组里面的filename生效,覆盖默认命名
+                    cacheGroups: {
+                        // vue: {
+                        //     name: "vue",
+                        //     test: /[\\/]node_modules[\\/]vue[\\/]/,
+                        //     test: /[\\/]node_modules[\\/]vue[\\/]/,
+                        //     priority: -10
+                        // },
+                        // vuex: {
+                        //     name: 'vuex',
+                        //     test: /[\\/]node_modules[\\/]vuex[\\/]/,
+                        //     priority: -10
+                        // },
+                        // 'vue-router': {
+                        //     name: 'vue-router',
+                        //     test: /[\\/]node_modules[\\/]vue-router[\\/]/,
+                        //     priority: -10
+                        // },
+                        // 'element-ui': {
+                        //     name: 'element-ui',
+                        //     test: /[\\/]node_modules[\\/]element-ui[\\/]/,
+                        //     priority: -10
+                        // },
+                        // vendors: {
+                        //     test: /[\\\/]node_modules[\\\/]/,
+                        //     priority: -20
+                        // },
+                    }
+                }
+            }
+            // return {
+            //     plugins: [
+            //         new CompressionPlugin({
+            //             test: /\.js$|\.html$|\.css$/,
+            //             threshold: 10240,
+            //             deleteOriginalAssets: false,
+            //         }),
+            //         new webpack.optimize.MinChunkSizePlugin({
+            //             minChunkSize: 10000 // Minimum number of characters
+            //         }),
+            //         new WebpackLifeCyclePlugin(),
+            //         new BundleAnalyzerPlugin()
+            //     ]
+            // }
+            // config.plugins = [
+            //     new CompressionPlugin({
+            //         test: /\.js$|\.html$|\.css$/,
+            //         threshold: 10240,
+            //         deleteOriginalAssets: true,
+            //     }),
+            //     new webpack.optimize.MinChunkSizePlugin({
+            //         minChunkSize: 10000 // Minimum number of characters
+            //     }),
+            //     new WebpackLifeCyclePlugin(),
+            //     // new BundleAnalyzerPlugin()
+            // ]
+        }
+
+    },
+    parallel: true,
+
+    devServer: {
+        proxy: {
+            '/': {
+                // target: 'http://192.168.2.145:9600/spfm',
+                // target: 'http://192.168.2.149:9600',
+                // target: 'http://10.64.42.70:8088/',
+                target: 'http://114.215.71.182:29600/',
+                // target: 'http://192.168.2.135:9600/',
+                // target: 'http://192.168.2.169:9600/',
+                // target: 'http://192.168.2.170:9600/',
+                // target: 'http://192.168.2.169:9600/',
+                changeOrigin: true
+            }
+        }
+    },
+    transpileDependencies: ['color-string'] // 此段为增加配置选项
+}