作者 王智

bug

... ... @@ -141,6 +141,14 @@ Page({
}
})
setTimeout(function () {
wx.navigateTo({
url: '/pages/Online_regulations/Online_regulations',
})
}, 1000)
}
}
... ...
... ... @@ -19,7 +19,7 @@
</view>
<view class="shengqin">
<button bindtap="getcomfirm">确认</button>
<button style="background: #cfcfcf;" wx:if="">已答题</button>
<!-- <button style="background: #cfcfcf;" wx:if="">已答题</button> -->
</view>
<!-- 答案 -->
... ...
... ... @@ -11,8 +11,10 @@
</view>
<view class="answer" bindtap="getanswer">
<view hover-class="none" wx:if="{{list}}">去答题</view>
<view class="answer" >
<view hover-class="none" bindtap="getanswer" wx:if="{{list.user_status==0}}">去答题</view>
<button style="background: #cfcfcf;" wx:if="{{list.user_status==1}}">已答题</button>
</view>
<button open-type="share">
<view class="btn-item" style="background: url('/imgs/shares.png') no-repeat center;background-size: cover;"
... ...
... ... @@ -48,6 +48,16 @@
border-radius: 22px;
box-shadow: 0px 9px 19px 0px rgba(0, 116, 45, 0.42);
}
.answer button {
width: 622rpx;
height: 88rpx;
color: #ffffff;
border-radius: 22px;
/* background: linear-gradient(130deg, #2ed26e 13%, #05983e 98%); */
/* box-shadow: 0px 9px 19px 0px rgba(0, 116, 45, 0.42); */
}
/* 分享 */
.btn-item {
width: 100rpx;
... ...