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