feat(circulation): 暂时屏蔽三单循环内的轮次展示

This commit is contained in:
woody 2025-04-25 10:13:27 +08:00
parent 7e4d43b517
commit 7316794ba9
1 changed files with 16 additions and 16 deletions

View File

@ -27,7 +27,7 @@
</view>
</view>
<!-- 轮次 -->
<view class="thecontent" v-for='(item,index) in roundObj' >
<!-- <view class="thecontent" v-for='(item,index) in roundObj' :key="index" >
<view class="line_box">
<view class='line1'>{{'轮数'}}</view>
<view class='line2' v-if="item.round!='暂无'">{{item.round}}</view>
@ -43,7 +43,7 @@
<view class='line2' v-if="item.calAchieve!='暂无'">{{item.calAchieve|toThousandthAndKeepDecimal}}</view>
<view class='line2' v-else>{{item.calAchieve}}</view>
</view>
</view>
</view> -->
<view class="thecontent" v-for='(item,index) in dataList' :key="index">
<view class="line_box">
<view class='line1'>{{'会员编号'}}</view>
@ -137,24 +137,24 @@
this.getDataList()
this.value1 = Number(new Date())
this.getOthers()
this.getTime()
// this.getTime()
},
methods: {
isLocaled,
getTime(){
nextRound().then((res) => {
if(res.rows.length == 0){
res.rows=[
{
round:'暂无',
second:'暂无',
calAchieve:'暂无',
}
]
}
this.roundObj = res.rows
})
},
nextRound().then((res) => {
if(res.rows.length == 0){
res.rows=[
{
round:'暂无',
second:'暂无',
calAchieve:'暂无',
}
]
}
this.roundObj = res.rows
})
},
getOthers() {
mar.getGradeList().then((res) => {
this.gradeList = [res.data];