bug
This commit is contained in:
		@@ -23,7 +23,7 @@
 | 
			
		||||
              <span :class="'status-' + item.eventStatus">{{ $dict.getLabel('clapEventStatus',item.eventStatus) }}</span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div v-if="item.eventStatus>1">
 | 
			
		||||
              <div class="itemBtn" @click="toEvaluate" v-show="!item.evaluation">去评价</div>
 | 
			
		||||
              <div class="itemBtn" @click="toEvaluate(item.id)" v-show="!item.evaluation">去评价</div>
 | 
			
		||||
              <div slot="finish" class="finish" v-show="item.evaluation">已评价</div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
@@ -80,8 +80,8 @@ export default {
 | 
			
		||||
      this.$linkTo('./PhotoForm')
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    toEvaluate() {
 | 
			
		||||
      this.$linkTo('./evaluate')
 | 
			
		||||
    toEvaluate(id) {
 | 
			
		||||
      this.$linkTo(`./evaluate?id=${id}`)
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    getList() {
 | 
			
		||||
 
 | 
			
		||||
@@ -43,7 +43,7 @@
 | 
			
		||||
          <div class="titles">评价详情:</div>
 | 
			
		||||
          <div>{{ info.evaluation.evaluationDetail }}</div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="photo">
 | 
			
		||||
        <div class="photo" v-if="info.evaluation.files.length">
 | 
			
		||||
          <div class="titles">照片</div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <image class="content_img" :src="v.accessUrl" v-for="(v, ind) in info.evaluation.files" :key="ind" @click="previewImg(v.accessUrl,info.evaluation.files)"/>
 | 
			
		||||
 
 | 
			
		||||
@@ -236,7 +236,7 @@ export default {
 | 
			
		||||
          uni.$emit('update')
 | 
			
		||||
          setTimeout(() => {
 | 
			
		||||
            uni.redirectTo({
 | 
			
		||||
              url: `./PhotoResult?id=${this.form.id}`
 | 
			
		||||
              url: `./PhotoResult?id=${res.data.id}`
 | 
			
		||||
            })
 | 
			
		||||
          }, 400)
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user