diff --git a/index.html b/index.html index 32210826..d8202829 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ 高精机电装备有限公司数字化工厂 - +
diff --git a/src/styles/element-ui.scss b/src/styles/element-ui.scss index 184ab3ad..0af52e3f 100644 --- a/src/styles/element-ui.scss +++ b/src/styles/element-ui.scss @@ -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{ diff --git a/src/utils/request.js b/src/utils/request.js index 4646e1be..39e0294c 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -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 // 请求超时时间 })