|
@@ -24,8 +24,15 @@
|
|
|
<div class="center_btn">
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
+ style="background:rgb(112, 135, 228)"
|
|
|
@click="goTo('/addRace?userid=' + userid + '&oid=' + oid)"
|
|
|
- >案例设计</el-button
|
|
|
+ >案例设计(必填)</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ style="margin-left:110px;background:rgb(91, 134, 210)"
|
|
|
+ @click="goToX()"
|
|
|
+ >平台实施(选填)</el-button
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -55,6 +62,9 @@ export default {
|
|
|
goTo(path) {
|
|
|
this.$router.push(path);
|
|
|
},
|
|
|
+ goToX(){
|
|
|
+ window.parent.postMessage({ tools: "46" }, "*");
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -84,24 +94,25 @@ export default {
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
width: 100%;
|
|
|
- margin: 10px 0;
|
|
|
+ margin: 20px auto 10px;
|
|
|
}
|
|
|
|
|
|
.center_nav span {
|
|
|
box-sizing: border-box;
|
|
|
padding: 8px 5px;
|
|
|
cursor: pointer;
|
|
|
- color: #444444;
|
|
|
- height: 35px;
|
|
|
+ color: #767676;
|
|
|
+ height: 42px;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
|
|
|
.center_nav span + span {
|
|
|
- margin-left: 10px;
|
|
|
+ margin-left: 90px;
|
|
|
}
|
|
|
|
|
|
.center_nav .active {
|
|
|
- color: #001fff;
|
|
|
- border-bottom: 2px solid #001fff;
|
|
|
+ color: #191919;
|
|
|
+ border-bottom: 5px solid rgb(96 162 231);
|
|
|
}
|
|
|
|
|
|
.center_body {
|
|
@@ -109,13 +120,18 @@ export default {
|
|
|
width: 100%;
|
|
|
justify-content: center;
|
|
|
margin: 0 auto;
|
|
|
- height: calc(100% - 360px);
|
|
|
+ height: calc(100% - 372px);
|
|
|
}
|
|
|
|
|
|
.center_btn {
|
|
|
- width: 90%;
|
|
|
- margin: 10px auto 0;
|
|
|
+ width: 100%;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
+ background: #fff;
|
|
|
+ height: 58px;
|
|
|
+ align-items: center;
|
|
|
+ box-shadow: 0 -5px 5px 0px #eeeeee;
|
|
|
+ z-index: 99;
|
|
|
+ position: relative;
|
|
|
}
|
|
|
</style>
|