-- 列表状态 1是已完成

This commit is contained in:
yuping
2022-12-26 22:07:27 +08:00
parent 3cc323cb5c
commit 041a3f1af8
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@
<div class="goclass" :style="{
background: `${types.path[value.type] ? '#2478ff' : '#999'}`,
}" @click="toFinish(value)">
{{ value.currentRatio === 100 ? "已完成" : types.path[value.type] ? types.toName[value.type] : "未开放" }}
{{ value.status === 1 ? "已完成" : types.path[value.type] ? types.toName[value.type] : "未开放" }}
</div>
<!-- <div :style="{ display: value.status === 1 ? 'block' : 'none' }">-->
<!-- <div-->