|
@@ -14,7 +14,7 @@
|
|
|
<view class="name">团队名称:{{item.teamName||''}}</view>
|
|
<view class="name">团队名称:{{item.teamName||''}}</view>
|
|
|
<view class="bottom adfacjb">
|
|
<view class="bottom adfacjb">
|
|
|
<view class="bottom-left">截止时间:{{item.endTime}}</view>
|
|
<view class="bottom-left">截止时间:{{item.endTime}}</view>
|
|
|
- <view class="bottom-right" v-if="item.status===0" @click.stop="noticeShow=true">立即作答</view>
|
|
|
|
|
|
|
+ <view class="bottom-right" v-if="item.status===0" @click.stop="showNotice(item)">立即作答</view>
|
|
|
<view class="bottom-right" v-else-if="item.status===1">查看报告</view>
|
|
<view class="bottom-right" v-else-if="item.status===1">查看报告</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -137,6 +137,10 @@ The following statements in the assessment describe the ideal state of a team. P
|
|
|
this.dto = item;
|
|
this.dto = item;
|
|
|
this.show = true;
|
|
this.show = true;
|
|
|
},
|
|
},
|
|
|
|
|
+ showNotice(item){
|
|
|
|
|
+ this.dto = item;
|
|
|
|
|
+ this.noticeShow = true;
|
|
|
|
|
+ },
|
|
|
handleMenuClick(type){
|
|
handleMenuClick(type){
|
|
|
if(type===0) this.teamUserShow = true
|
|
if(type===0) this.teamUserShow = true
|
|
|
else if(type===2) this.teamInfoShow = true
|
|
else if(type===2) this.teamInfoShow = true
|