提交 86771863 authored 作者: jianglw's avatar jianglw

修改部分bug

上级 db8715e5
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
ENV = 'development' ENV = 'development'
# 若依管理系统/开发环境 # 若依管理系统/开发环境
VUE_APP_BASE_API = '/api' VUE_APP_BASE_API = '/'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
ENV = 'production' ENV = 'production'
# 若依管理系统/生产环境 # 若依管理系统/生产环境
VUE_APP_BASE_API = '/api' VUE_APP_BASE_API = '/'
#端口 #端口
PORT = '8080' PORT = '8080'
#{{ window._CONFIG['domianURL'] }}/jmreport/list?token=${token}
#layouts/IframePageView
...@@ -10466,6 +10466,14 @@ ...@@ -10466,6 +10466,14 @@
"ajv-keywords": "^3.5.2" "ajv-keywords": "^3.5.2"
} }
}, },
"script-ext-html-webpack-plugin": {
"version": "2.1.5",
"resolved": "https://registry.npmmirror.com/script-ext-html-webpack-plugin/-/script-ext-html-webpack-plugin-2.1.5.tgz",
"integrity": "sha512-nMjd5dtsnoB8dS+pVM9ZL4mC9O1uVtTxrDS99OGZsZxFbkZE6pw0HCMued/cncDrKivIShO9vwoyOTvsGqQHEQ==",
"requires": {
"debug": "^4.2.0"
}
},
"scss-tokenizer": { "scss-tokenizer": {
"version": "0.2.3", "version": "0.2.3",
"resolved": "https://registry.npm.taobao.org/scss-tokenizer/download/scss-tokenizer-0.2.3.tgz", "resolved": "https://registry.npm.taobao.org/scss-tokenizer/download/scss-tokenizer-0.2.3.tgz",
......
...@@ -10,17 +10,17 @@ VueRouter.prototype.push = function push(location) { ...@@ -10,17 +10,17 @@ VueRouter.prototype.push = function push(location) {
} }
const routes = [ const routes = [
{ {
path: '/', path: '/topologyView/list',
name: 'Index', name: 'Index',
component: () =>import('@/views/test/Test.vue') component: () =>import('@/views/test/Test.vue')
}, },
{ {
path: '/Workspace', path: '/toplogyView/workspace',
name: 'Workspace', name: 'Workspace',
component: () =>import('@/views/topology/Workspace.vue') component: () =>import('@/views/topology/Workspace.vue')
}, },
{ {
path: '/preview', path: '/toplogyView/preview',
name: 'Preview', name: 'Preview',
component: () =>import('@/views/topology/Preview.vue') component: () =>import('@/views/topology/Preview.vue')
} }
......
...@@ -216,11 +216,11 @@ export default { ...@@ -216,11 +216,11 @@ export default {
props:{ props:{
editorUrl:{ editorUrl:{
type:String, type:String,
default:()=>{return "/workspace"} default:()=>{return "/toplogyView/workspace"}
}, },
previewUrl:{ previewUrl:{
type:String, type:String,
default:()=>{return "/preview"} default:()=>{return "/toplogyView/preview"}
} }
}, },
components: { components: {
......
<template> <template>
<div> <div>
<ParamsConfig :editorUrl="'/workspace'" :previewUrl="'/preview'"></ParamsConfig> <ParamsConfig :editorUrl="'/toplogyView/workspace'" :previewUrl="'/toplogyView/preview'"></ParamsConfig>
<!-- <workspace></workspace> -->
</div> </div>
</template> </template>
<script> <script>
// import { TopologyWorkspace, Preview, data, ParamsConfig } from "topology-work"; // import { TopologyWorkspace, Preview, data, ParamsConfig } from "topology-work";
import ParamsConfig from "../configuration/ParamsConfig.vue"; import ParamsConfig from "../configuration/ParamsConfig.vue";
console.log(ParamsConfig)
// import Workspace from "../topology/Workspace.vue";
export default { export default {
components: { components: {
// topology: TopologyWorkspace, // topology: TopologyWorkspace,
......
...@@ -10,11 +10,11 @@ module.exports = { ...@@ -10,11 +10,11 @@ module.exports = {
configureWebpack: { configureWebpack: {
name: name name: name
}, },
publicPath: process.env.NODE_ENV === "production" ? "/topology" : "/", publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
// 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist) // 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist)
outputDir: 'dist', outputDir: 'dist',
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下) // 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
assetsDir: 'static', // assetsDir: 'static',
// 是否开启eslint保存检测,有效值:ture | false | 'error' // 是否开启eslint保存检测,有效值:ture | false | 'error'
lintOnSave: false, lintOnSave: false,
// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。 // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
...@@ -36,76 +36,76 @@ module.exports = { ...@@ -36,76 +36,76 @@ module.exports = {
}, },
disableHostCheck: true disableHostCheck: true
}, },
// configureWebpack: { configureWebpack: {
// name: name, name: name,
// resolve: { resolve: {
// alias: { alias: {
// '@': resolve('src') '@': resolve('src')
// } }
// } }
// }, },
// chainWebpack(config) { chainWebpack(config) {
// config.plugins.delete('preload') // TODO: need test config.plugins.delete('preload') // TODO: need test
// config.plugins.delete('prefetch') // TODO: need test config.plugins.delete('prefetch') // TODO: need test
// // set svg-sprite-loader // set svg-sprite-loader
// config.module config.module
// .rule('svg') .rule('svg')
// .exclude.add(resolve('src/assets/icons')) .exclude.add(resolve('src/assets/icons'))
// .end() .end()
// config.module config.module
// .rule('icons') .rule('icons')
// .test(/\.svg$/) .test(/\.svg$/)
// .include.add(resolve('src/assets/icons')) .include.add(resolve('src/assets/icons'))
// .end() .end()
// .use('svg-sprite-loader') .use('svg-sprite-loader')
// .loader('svg-sprite-loader') .loader('svg-sprite-loader')
// .options({ .options({
// symbolId: 'icon-[name]' symbolId: 'icon-[name]'
// }) })
// .end() .end()
// config config
// .when(process.env.NODE_ENV !== 'development', .when(process.env.NODE_ENV !== 'development',
// config => { config => {
// config config
// .plugin('ScriptExtHtmlWebpackPlugin') .plugin('ScriptExtHtmlWebpackPlugin')
// .after('html') .after('html')
// .use('script-ext-html-webpack-plugin', [{ .use('script-ext-html-webpack-plugin', [{
// // `runtime` must same as runtimeChunk name. default is `runtime` // `runtime` must same as runtimeChunk name. default is `runtime`
// inline: /runtime\..*\.js$/ inline: /runtime\..*\.js$/
// }]) }])
// .end() .end()
// config config
// .optimization.splitChunks({ .optimization.splitChunks({
// chunks: 'all', chunks: 'all',
// cacheGroups: { cacheGroups: {
// libs: { libs: {
// name: 'chunk-libs', name: 'chunk-libs',
// test: /[\\/]node_modules[\\/]/, test: /[\\/]node_modules[\\/]/,
// priority: 10, priority: 10,
// chunks: 'initial' // only package third parties that are initially dependent chunks: 'initial' // only package third parties that are initially dependent
// }, },
// elementUI: { elementUI: {
// name: 'chunk-elementUI', // split elementUI into a single package name: 'chunk-elementUI', // split elementUI into a single package
// priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
// test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
// }, },
// commons: { commons: {
// name: 'chunk-commons', name: 'chunk-commons',
// test: resolve('src/components'), // can customize your rules test: resolve('src/components'), // can customize your rules
// minChunks: 3, // minimum common number minChunks: 3, // minimum common number
// priority: 5, priority: 5,
// reuseExistingChunk: true reuseExistingChunk: true
// } }
// } }
// }) })
// config.optimization.runtimeChunk('single'), config.optimization.runtimeChunk('single'),
// { {
// from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件 from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
// to: './', //到根目录下 to: './', //到根目录下
// } }
// } }
// ) )
// } }
} }
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论