This commit is contained in:
xiongchengqiang 2020-12-11 16:53:51 +08:00
parent 56a7fe45a6
commit 86c1b21424

View File

@ -26,7 +26,7 @@
type="text">添加</el-button>
</div>
</div>
<div v-for="i in handleFilter(taskInfo.resultTasks)"
<div v-for="(i,index) in handleFilter(taskInfo.resultTasks)"
:key="i.id"
class="boderAndRadius drawer-content-left-content">
<div :style="{border:!(!i.updateProcess && i.label)?'none':''}"
@ -37,7 +37,7 @@
:stroke-width='4'
:percentage="Math.round((i.processRate * 100)*1000)/1000 "></el-progress>
<div style="margin-left:10px;">
<span v-if="!i.editProcess">{{i.name}}</span>
<span v-if="!i.editProcess">KR{{index+1}} : {{i.name}}</span>
<el-input v-if="i.editProcess"
size="small"
placeholder="请输入内容"