Commit 0bbdd0a2 by 刘泽奇

123

parent e61e7724
......@@ -13,7 +13,7 @@
}
.el-tabs__item.is-active {
color: #dfb76b;
background: #FAFAFA;
background: #fafafa;
border-top: 2px solid #dfb76b;
}
......@@ -22,10 +22,10 @@
width: 140px;
text-align: center;
}
.el-table--enable-row-transition .el-table__body td{
.el-table--enable-row-transition .el-table__body td {
text-align: center;
}
.el-tabs__item:nth-child(1){
.el-tabs__item:nth-child(1) {
}
.el-tabs__item:hover {
color: #565656;
......@@ -37,7 +37,19 @@
font-weight: 500;
color: rgba(0, 0, 0, 0.85);
}
.el-table th.is-leaf{
background: #FAFAFA;
.el-table th.is-leaf {
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 @@
@current-change="handleCurrentChange"
:current-page.sync="currentPage2"
:page-size="100"
background
layout="prev, pager, next, jumper"
:total="1000"
></el-pagination>
......@@ -255,6 +256,7 @@
@current-change="handleCurrentChange"
:current-page.sync="currentPage2"
:page-size="100"
background
layout="prev, pager, next, jumper"
:total="1000"
></el-pagination>
......@@ -445,10 +447,20 @@ export default {
}
},
created() {
req.post(
"/api/web/action/icapi/springBoard",
let baseURL = "";
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: {
needNo: "N202002141324bupnr8L",
solutionContent: {
......@@ -478,7 +490,10 @@ export default {
userpin: "39fcf7bc5f6c4e55a1f85d750e37316b"
}
}
);
)
.then(res => {
console.log(res);
});
}
};
</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