This commit is contained in:
zhangyc
2022-12-26 09:12:15 +08:00
parent dc49f25df7
commit ba2fcc6b0b
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@
</div>
<div class="goclass" @click="toFinish(value, i.stageName, i.stageId)">
{{
value.status === 1
value.status === 100
? "已完成"
: types.path[value.type]
? types.toName[value.type]

View File

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