|
@@ -87,6 +87,7 @@
|
|
|
</div>
|
|
|
</div>.
|
|
|
<el-button
|
|
|
+ v-if="['0','2'].includes(tType)"
|
|
|
@click="upperOne()"
|
|
|
style="
|
|
|
margin:5px 10px;
|
|
@@ -97,6 +98,7 @@
|
|
|
">上一个</el-button>
|
|
|
|
|
|
<el-button
|
|
|
+ v-if="['0','2'].includes(tType)"
|
|
|
@click="nextOne()"
|
|
|
style="
|
|
|
margin:5px 10px;
|
|
@@ -106,6 +108,7 @@
|
|
|
right: 200px;
|
|
|
">下一个</el-button>
|
|
|
<el-button
|
|
|
+
|
|
|
@click="
|
|
|
goTo(
|
|
|
'/score1?userid=' +
|
|
@@ -149,7 +152,7 @@
|
|
|
<div>平台案例填写</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class=navBoxBtn v-if="psDialog && isNavTop >= 300">
|
|
|
+ <div class=navBoxBtn v-if="psDialog && isNavTop >= 300 && ['0','2'].includes(tType)">
|
|
|
|
|
|
<el-button
|
|
|
@click="upperOne()"
|
|
@@ -2901,6 +2904,9 @@ export default {
|
|
|
|
|
|
},
|
|
|
async upperOne(){
|
|
|
+ console.log("=====================")
|
|
|
+ console.log(this.tType)
|
|
|
+ console.log("=====================")
|
|
|
if(this.tType == 1 || await this.addScore()){
|
|
|
const allScoreList = JSON.parse(sessionStorage.getItem("allScoreList"))
|
|
|
if(!allScoreList.length>0)return this.$message.info("没有了")
|