Browse Source

提交

dev
douzhuo 2 years ago
parent
commit
a6925d8172
3 changed files with 14 additions and 10 deletions
  1. +9
    -6
      pages/center/prohibited/details.vue
  2. +1
    -0
      pages/center/prohibited/index.vue
  3. +4
    -4
      pages/index/index.vue

+ 9
- 6
pages/center/prohibited/details.vue View File

@@ -56,8 +56,10 @@
<view class="content">
<view v-html="item.onebest"></view>
</view>
<image @click="clickbofang(0,item, 'show')" class="play"
src="@/static/images/recordingManagement/play.png"></image>
<template v-if="isShowMerge">
<image @click="clickbofang(0,item, 'show')" class="play"
src="@/static/images/recordingManagement/play.png"></image>
</template>
</view>
</view>
</view>
@@ -147,14 +149,14 @@
<view class="botbotmm">
<view class="item" @click="preValid">上一条</view>
<template v-if="isShowMerge">
<template v-if="userlistobj.violatedStatus == 0">
<template v-if="userlistobj.disposeStatus == 0">
<view class="item" @click="setViolated(1)">确认有效</view>
<view class="item" @tap="showTagValid">确认无效</view>
</template>
<template v-if="userlistobj.violatedStatus == 1">
<template v-if="userlistobj.disposeStatus == 1">
<view class="item" @tap="showTagValid">无效</view>
</template>
<template v-if="userlistobj.violatedStatus == 2">
<template v-if="userlistobj.disposeStatus == 2">
<view class="item" @click="setViolated(1)">确认有效</view>
</template>
</template>
@@ -397,6 +399,7 @@
return
} else {
let newobj = res[0];
this.isMerge = res[0].merge
if (res[0].merge == 0) {
this.infos = item
this.itemobj = item
@@ -769,7 +772,7 @@
this.current = 1
this.infos = item
this.audioType = true
this.initAudioFnc()
this.init(this.infos)
return
} else {
this.audioType = false


+ 1
- 0
pages/center/prohibited/index.vue View File

@@ -181,6 +181,7 @@
this.staTime = options.staTime;
this.endtime = options.endtime;
}
if (options.violatedStatus) this.violatedStatus = options.violatedStatus
},
onShow() {
this.userInfo = uni.getStorageSync('weapp_session_userInfo_data');


+ 4
- 4
pages/index/index.vue View File

@@ -648,20 +648,20 @@
prohibitedtap(i){
if(i==1){
uni.navigateTo({
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'0'
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'0'+'&violatedStatus=1'
});
}else{
if(this.zhixingcenterindex==2){
uni.navigateTo({
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'2'
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'2'+'&violatedStatus=1'
});
}else if(this.zhixingcenterindex==6){
uni.navigateTo({
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'3'
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'3'+'&violatedStatus=1'
});
}else{
uni.navigateTo({
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'4'+'&staTime='+this.statDateStart+'&endtime='+this.statDateEnd
url: '/pages/center/prohibited/index?refresh='+'refresh'+'&activeTotal='+'4'+'&staTime='+this.statDateStart+'&endtime='+this.statDateEnd+'&violatedStatus=1'
});
}
}


Loading…
Cancel
Save