feat(circulation): 暂时屏蔽三单循环内的轮次展示
This commit is contained in:
parent
7e4d43b517
commit
7316794ba9
|
@ -27,7 +27,7 @@
|
||||||
</view>
|
</view>
|
||||||
</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="line_box">
|
||||||
<view class='line1'>{{'轮数'}}</view>
|
<view class='line1'>{{'轮数'}}</view>
|
||||||
<view class='line2' v-if="item.round!='暂无'">{{item.round}}轮</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-if="item.calAchieve!='暂无'">{{item.calAchieve|toThousandthAndKeepDecimal}}</view>
|
||||||
<view class='line2' v-else>{{item.calAchieve}}</view>
|
<view class='line2' v-else>{{item.calAchieve}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
<view class="thecontent" v-for='(item,index) in dataList' :key="index">
|
<view class="thecontent" v-for='(item,index) in dataList' :key="index">
|
||||||
<view class="line_box">
|
<view class="line_box">
|
||||||
<view class='line1'>{{'会员编号'}}</view>
|
<view class='line1'>{{'会员编号'}}</view>
|
||||||
|
@ -137,24 +137,24 @@
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
this.value1 = Number(new Date())
|
this.value1 = Number(new Date())
|
||||||
this.getOthers()
|
this.getOthers()
|
||||||
this.getTime()
|
// this.getTime()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isLocaled,
|
isLocaled,
|
||||||
getTime(){
|
getTime(){
|
||||||
nextRound().then((res) => {
|
nextRound().then((res) => {
|
||||||
if(res.rows.length == 0){
|
if(res.rows.length == 0){
|
||||||
res.rows=[
|
res.rows=[
|
||||||
{
|
{
|
||||||
round:'暂无',
|
round:'暂无',
|
||||||
second:'暂无',
|
second:'暂无',
|
||||||
calAchieve:'暂无',
|
calAchieve:'暂无',
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
this.roundObj = res.rows
|
this.roundObj = res.rows
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getOthers() {
|
getOthers() {
|
||||||
mar.getGradeList().then((res) => {
|
mar.getGradeList().then((res) => {
|
||||||
this.gradeList = [res.data];
|
this.gradeList = [res.data];
|
||||||
|
|
Loading…
Reference in New Issue