全局样式更改

This commit is contained in:
caoxinyu
2019-06-13 16:18:04 +08:00
parent 2c4709dcde
commit 71a8fc9c65
3 changed files with 16 additions and 8 deletions

View File

@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>高精机电装备有限公司数字化工厂</title>
</head>
<body>
<body style="background-color: #eeeeee">
<script src=<%= BASE_URL %>/tinymce4.7.5/tinymce.min.js></script>
<div id="app"></div>
<script></script>

View File

@@ -27,12 +27,20 @@
}
}
}
//.el-table td, .el-table th.is-leaf{
// border-bottom: 1px solid DarkGray;
// border-left: 1px solid DarkGray;
// border-top: 1px solid DarkGray;
// border-right: 1px solid DarkGray;
//}
.el-table th{
background-color: rgb(98, 157, 209);
color: white;
}
.el-table td, .is-leaf{
hover: red;
background-color: rgb(213, 230, 347);
color: black;
font-weight:400
}
.el-table--striped .el-table__body tr.el-table__row--striped td{
background-color: rgb(255, 255, 255);
}
.el-textarea__inner,
.el-radio__inner,
.el-input__inner{

View File

@@ -22,7 +22,7 @@ export const ServerIP = `http://192.168.1.231:8411/webpage/file/`
export const uploadFileMachine = `http://192.168.1.231:8411/submit/uploadFileMachine.ashx` // 机床总图 发布时改成0.231
export const downloadFileMachine = `http://192.168.1.231:8411/submit/downloadFileMachine.ashx` // 机床总图 发布时改成0.231
const service = axios.create({
baseURL: `http://localhost:8411/submit/MESCommonBase.ashx`,
baseURL: `http://192.168.1.231:8411/submit/MESCommonBase.ashx`,
timeout: 1500000 // 请求超时时间
})