考试部分按钮遮挡住显示问题

This commit is contained in:
daihh
2022-08-15 16:16:50 +08:00
parent b231fd30e1
commit 8c3b4469f1
3 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@
</view>
</view>
</view>
<view style="height: 50px;"></view>
<view style="height: 120px;"></view>
<view class="bottom-btns">
<u-button class="next" v-if="curIndex==(total-1)" type="success" text="提交" @click="manualSubmit"></u-button>
<u-button type="primary" text="下一题" @click="nextSub" class="next" v-if="curIndex<(total-1)"></u-button>

View File

@@ -20,7 +20,7 @@
onLoad(options) {
//console.log(options.id)
let decodeUrl=decodeURIComponent(options.reurl);
console.log('接收后解码后:'+decodeUrl)
//console.log('接收后解码后:'+decodeUrl)
this.oldUrl = decodeUrl;
},
mounted(){

View File

@@ -71,9 +71,9 @@
// 测评跳转详情
myAssessdetail(item){
//console.log(item.id)
console.log('编码前:'+item.url)
//console.log('编码前:'+item.url)
let encodeUrl=encodeURIComponent(item.url);
console.log('编码后:'+encodeUrl)
//console.log('编码后:'+encodeUrl)
uni.navigateTo({
url: '/pages/my/myAssdetail?reurl='+encodeUrl
});