|
|
@@ -83,7 +83,7 @@
|
|
|
<div class="titleClass">
|
|
|
<div class="title">{{ item.evaluateName }}</div>
|
|
|
<div>
|
|
|
- <van-button type="info" v-if="evaluateTure(item)" size="small" @click="evaluate(item.id)"
|
|
|
+ <van-button type="info" v-if="evaluateTure(item)&&item.isEvaluate" size="small" @click="evaluate(item.id)"
|
|
|
>评价</van-button
|
|
|
>
|
|
|
</div>
|
|
|
@@ -200,7 +200,7 @@ export default {
|
|
|
|
|
|
//判断评价按钮是否展示
|
|
|
evaluateTure(item) {
|
|
|
-
|
|
|
+
|
|
|
if (item.status == 0) {
|
|
|
return true
|
|
|
}
|
|
|
@@ -248,7 +248,7 @@ export default {
|
|
|
if (this.taskList.length >= total) {
|
|
|
//已加载完全部数据
|
|
|
this.finished = true
|
|
|
-
|
|
|
+
|
|
|
} else {
|
|
|
callback()
|
|
|
}
|
|
|
@@ -259,7 +259,7 @@ export default {
|
|
|
if (this.taskList.length >= total) {
|
|
|
//已加载完全部数据
|
|
|
this.finished = true
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
|
|
|
// this.taskList = rows || []
|