页面样式调整
This commit is contained in:
parent
e43f8d4915
commit
9ee0268138
|
|
@ -2,46 +2,44 @@
|
|||
|
||||
const path = require('path')
|
||||
|
||||
var proxyUrl =
|
||||
|
||||
module.exports = {
|
||||
dev: {
|
||||
// Paths
|
||||
assetsSubDirectory: 'static',
|
||||
assetsPublicPath: '/',
|
||||
host: 'localhost', // can be overwritten by process.env.HOST
|
||||
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
||||
autoOpenBrowser: false,
|
||||
errorOverlay: true,
|
||||
notifyOnErrors: true,
|
||||
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
||||
devtool: 'cheap-module-eval-source-map',
|
||||
cacheBusting: true,
|
||||
cssSourceMap: true,
|
||||
proxyTable: {
|
||||
'/screen': {
|
||||
// target: 'http://112.29.103.165:21626',//重庆
|
||||
// target: 'http://192.168.0.14:21624',//测试
|
||||
// target: 'http://112.29.103.165:21624/', //宁夏
|
||||
target: 'http://192.168.2.152:28080',
|
||||
changeOrigin: true,
|
||||
// secure: true, //如果是https接口,需要配置这个参数
|
||||
pathRewrite: {
|
||||
'^/screen': '/'
|
||||
}
|
||||
var proxyUrl = (module.exports = {
|
||||
dev: {
|
||||
// Paths
|
||||
assetsSubDirectory: 'static',
|
||||
assetsPublicPath: '/',
|
||||
host: 'localhost', // can be overwritten by process.env.HOST
|
||||
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
||||
autoOpenBrowser: false,
|
||||
errorOverlay: true,
|
||||
notifyOnErrors: true,
|
||||
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
||||
devtool: 'cheap-module-eval-source-map',
|
||||
cacheBusting: true,
|
||||
cssSourceMap: true,
|
||||
proxyTable: {
|
||||
'/screen': {
|
||||
// target: 'http://112.29.103.165:21626',//重庆
|
||||
// target: 'http://192.168.0.14:21624',//测试
|
||||
// target: 'http://112.29.103.165:21624/', //宁夏
|
||||
target: 'http://192.168.2.136:28080',
|
||||
changeOrigin: true,
|
||||
// secure: true, //如果是https接口,需要配置这个参数
|
||||
pathRewrite: {
|
||||
'^/screen': '/',
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
build: {
|
||||
index: path.resolve(__dirname, '../dist/index01.html'),
|
||||
// Paths
|
||||
assetsRoot: path.resolve(__dirname, '../dist'),
|
||||
assetsSubDirectory: 'static01',
|
||||
assetsPublicPath: '/',
|
||||
productionSourceMap: false,
|
||||
devtool: '#source-map',
|
||||
productionGzip: false,
|
||||
productionGzipExtensions: ['js', 'css'],
|
||||
bundleAnalyzerReport: process.env.npm_config_report
|
||||
}
|
||||
}
|
||||
},
|
||||
build: {
|
||||
index: path.resolve(__dirname, '../dist/index01.html'),
|
||||
// Paths
|
||||
assetsRoot: path.resolve(__dirname, '../dist'),
|
||||
assetsSubDirectory: 'static01',
|
||||
assetsPublicPath: '/',
|
||||
productionSourceMap: false,
|
||||
devtool: '#source-map',
|
||||
productionGzip: false,
|
||||
productionGzipExtensions: ['js', 'css'],
|
||||
bundleAnalyzerReport: process.env.npm_config_report,
|
||||
},
|
||||
})
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ export default {
|
|||
show: true,
|
||||
color: '#c1c1c1',
|
||||
fontSize: 14,
|
||||
margin: 20,
|
||||
formatter: function (value) {
|
||||
return value
|
||||
},
|
||||
|
|
|
|||
|
|
@ -200,8 +200,9 @@ export default {
|
|||
//坐标值标注
|
||||
axisLabel: {
|
||||
show: true,
|
||||
color: '#c1c1c1',
|
||||
color: '#fff',
|
||||
fontSize: 14,
|
||||
margin: 25,
|
||||
formatter: function (value) {
|
||||
return value
|
||||
},
|
||||
|
|
|
|||
|
|
@ -436,9 +436,9 @@ export default {
|
|||
color: #d5d6da !important;
|
||||
}
|
||||
/deep/ .el-table__empty-block {
|
||||
background-color: transparent !important;
|
||||
background-color: #335684 !important;
|
||||
.el-table__empty-text {
|
||||
color: #d5d6da !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
/deep/ .el-pagination__total {
|
||||
|
|
|
|||
|
|
@ -359,7 +359,7 @@ export default {
|
|||
rgba(11, 20, 71, 1) 0%,
|
||||
rgba(11, 20, 71, 0.9) 32%,
|
||||
rgba(11, 20, 70, 0.5) 70%,
|
||||
rgba(11, 20, 71, 0.1) 100%
|
||||
rgba(11, 20, 71, 0.3) 100%
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue