|
@@ -5,19 +5,23 @@
|
|
|
<div class="qiu"></div>
|
|
|
</div>
|
|
|
<div class="leftTits">
|
|
|
- <span>项目创新点</span>
|
|
|
- <span>预期取得的效果</span>
|
|
|
- <span>实施计划</span>
|
|
|
- <span>下一步</span>
|
|
|
+ <div @click="toPage(1)">项目创新点</div>
|
|
|
+ <div @click="toPage(2)" style="position: relative;right: 5px;">
|
|
|
+ <el-tooltip class="item" effect="light" content="预期取得的成果" placement="bottom-start">
|
|
|
+ <p>预期取得的成果</p>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ <div @click="toPage(3)">实施计划</div>
|
|
|
+ <div @click="toPage(4)">下一步</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
- <div class="vfpHeader">
|
|
|
+ <div id="q" class="vfpHeader">
|
|
|
<div class="titleOne">项目立项申请</div>
|
|
|
<el-button @click="backBtn1" type="primary" size="mini">返回</el-button>
|
|
|
</div>
|
|
|
<hr>
|
|
|
- <div>
|
|
|
+ <div id="w">
|
|
|
<p class="pTit">项目创新点</p>
|
|
|
<div class="editor">
|
|
|
<vue-editor :editorToolbar="customToolbar" v-model="data.contentOne"></vue-editor>
|
|
@@ -44,13 +48,13 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div id="e">
|
|
|
<p class="pTit">项目实施计划</p>
|
|
|
<div class="editor">
|
|
|
<vue-editor v-model="data.contentFive" :editorToolbar="customToolbar"></vue-editor>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="baseBtn">
|
|
|
+ <div id="r" class="baseBtn">
|
|
|
<div class="blockWidth">
|
|
|
<el-button type="primary" class="backBtn" @click="backBtn1" size:small>上一步</el-button>
|
|
|
<el-button type="primary" class="backBtn" @click="backBtn" size:small>下一步</el-button>
|
|
@@ -84,6 +88,17 @@
|
|
|
backBtn1(){
|
|
|
this.back();
|
|
|
},
|
|
|
+ toPage(val){
|
|
|
+ if (val==1) {
|
|
|
+ document.getElementById("q").scrollIntoView({ behavior: "smooth" });
|
|
|
+ }else if(val==2){
|
|
|
+ document.getElementById("w").scrollIntoView({ behavior: "smooth" });
|
|
|
+ }else if(val==3){
|
|
|
+ document.getElementById("e").scrollIntoView({ behavior: "smooth" });
|
|
|
+ }else if(val==4){
|
|
|
+ document.getElementById("r").scrollIntoView({ behavior: "smooth" });
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -93,9 +108,12 @@
|
|
|
margin-top: 30px;
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
- // background: red;
|
|
|
justify-content: center;
|
|
|
|
|
|
+
|
|
|
+ .item {
|
|
|
+ margin: 4px;
|
|
|
+ }
|
|
|
.right{
|
|
|
width: 83%;
|
|
|
background: #fff;
|
|
@@ -106,16 +124,6 @@
|
|
|
}
|
|
|
|
|
|
|
|
|
- .textArea{
|
|
|
- display: flex;
|
|
|
- justify-content: flex-start;
|
|
|
- textarea{
|
|
|
- resize: none;outline: none;
|
|
|
- background: #f2f2f2;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
.pTit{
|
|
|
color: #3994ff;
|
|
|
font-weight: 550;
|
|
@@ -132,8 +140,5 @@
|
|
|
min-width: 700px;
|
|
|
box-sizing: border-box;
|
|
|
padding: 15px 30px 10px 0px;
|
|
|
- // .VueEditor{
|
|
|
- // width: 100%;
|
|
|
- // }
|
|
|
}
|
|
|
</style>
|