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,40 +447,53 @@ export default { ...@@ -445,40 +447,53 @@ export default {
} }
}, },
created() { created() {
req.post( let baseURL = "";
"/api/web/action/icapi/springBoard", if (process.env.NODE_ENV == "development") {
{ //开发环境
actionType: "submitProgramme", baseURL = "/api/web/action/icapi/springBoard";
actionBody: { } else if (process.env.NODE_ENV == "production") {
needNo: "N202002141324bupnr8L", //生产环境
solutionContent: { baseURL = "/web/action/icapi/springBoard";
bizType: "companyreg", }
notes: "方案备注",
solution: { req
//公司注册方案 .post(
entName: "公司名称", baseURL,
province: "省", {
city: "市", actionType: "getProgrammeInfoByNeedNo",
taxpayerType: "纳税人类型", actionBody: {
entNature: "公司性质", needNo: "N202002141324bupnr8L",
organizationType: "组织类型", solutionContent: {
industry: "行业", bizType: "companyreg",
businessScope: "经营范围", notes: "方案备注",
//云上公司注册方案 solution: {
regPark: "注册园区", //公司注册方案
regType: "注册类型", entName: "公司名称",
productType: "产品类型" province: "省",
city: "市",
taxpayerType: "纳税人类型",
entNature: "公司性质",
organizationType: "组织类型",
industry: "行业",
businessScope: "经营范围",
//云上公司注册方案
regPark: "注册园区",
regType: "注册类型",
productType: "产品类型"
}
} }
} }
},
{
headers: {
token: "3260d5a2452441dd93ecc7ecb35f6dc0",
userpin: "39fcf7bc5f6c4e55a1f85d750e37316b"
}
} }
}, )
{ .then(res => {
headers: { console.log(res);
token: "3260d5a2452441dd93ecc7ecb35f6dc0", });
userpin: "39fcf7bc5f6c4e55a1f85d750e37316b"
}
}
);
} }
}; };
</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