Commit 0bbdd0a2 by 刘泽奇

123

parent e61e7724
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
} }
.el-tabs__item.is-active { .el-tabs__item.is-active {
color: #dfb76b; color: #dfb76b;
background: #FAFAFA; background: #fafafa;
border-top: 2px solid #dfb76b; border-top: 2px solid #dfb76b;
} }
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
width: 140px; width: 140px;
text-align: center; text-align: center;
} }
.el-table--enable-row-transition .el-table__body td{ .el-table--enable-row-transition .el-table__body td {
text-align: center; text-align: center;
} }
.el-tabs__item:nth-child(1){ .el-tabs__item:nth-child(1) {
} }
.el-tabs__item:hover { .el-tabs__item:hover {
color: #565656; color: #565656;
...@@ -37,7 +37,19 @@ ...@@ -37,7 +37,19 @@
font-weight: 500; font-weight: 500;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
} }
.el-table th.is-leaf{ .el-table th.is-leaf {
background: #FAFAFA; background: #fafafa;
}
.el-pagination.is-background .el-pager li {
border-radius: 2px;
background: #fff;
border: 1px solid rgba(198, 203, 212, 1);
}
.el-pagination.is-background .el-pager li:not(.disabled).active{
background: #DFB76B;
color:#fff ;
}
.el-pagination.is-background .el-pager li:not(.active):hover{
color: #DFB76B;
} }
} }
...@@ -127,6 +127,7 @@ ...@@ -127,6 +127,7 @@
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page.sync="currentPage2" :current-page.sync="currentPage2"
:page-size="100" :page-size="100"
background
layout="prev, pager, next, jumper" layout="prev, pager, next, jumper"
:total="1000" :total="1000"
></el-pagination> ></el-pagination>
...@@ -255,6 +256,7 @@ ...@@ -255,6 +256,7 @@
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page.sync="currentPage2" :current-page.sync="currentPage2"
:page-size="100" :page-size="100"
background
layout="prev, pager, next, jumper" layout="prev, pager, next, jumper"
:total="1000" :total="1000"
></el-pagination> ></el-pagination>
...@@ -445,10 +447,20 @@ export default { ...@@ -445,10 +447,20 @@ export default {
} }
}, },
created() { created() {
req.post( let baseURL = "";
"/api/web/action/icapi/springBoard", if (process.env.NODE_ENV == "development") {
//开发环境
baseURL = "/api/web/action/icapi/springBoard";
} else if (process.env.NODE_ENV == "production") {
//生产环境
baseURL = "/web/action/icapi/springBoard";
}
req
.post(
baseURL,
{ {
actionType: "submitProgramme", actionType: "getProgrammeInfoByNeedNo",
actionBody: { actionBody: {
needNo: "N202002141324bupnr8L", needNo: "N202002141324bupnr8L",
solutionContent: { solutionContent: {
...@@ -478,7 +490,10 @@ export default { ...@@ -478,7 +490,10 @@ export default {
userpin: "39fcf7bc5f6c4e55a1f85d750e37316b" userpin: "39fcf7bc5f6c4e55a1f85d750e37316b"
} }
} }
); )
.then(res => {
console.log(res);
});
} }
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment