|
@@ -30,11 +30,11 @@
|
|
|
</div>
|
|
|
<div class="task-list-box">
|
|
|
<div v-for="(item, index) in fixedBranchList" class="task-list-box-item">
|
|
|
- <el-tooltip :content="item.type === 2 ? '流程审批' : '平行审批'" placement="right">
|
|
|
+ <el-tooltip :content="item.type === 1 ? '流程审批' : '平行审批'" placement="right">
|
|
|
<el-button size="default" :color="curItem?.name === item.name ? 'orange' : ''" @click="chekckTask(item)">
|
|
|
{{ item.name }}
|
|
|
- <HcIcon v-if="item.type === 1" name="links" class="ml-2" @click="item.type = 2" />
|
|
|
- <HcIcon v-if="item.type === 2" name="exchange-2" class="ml-2" @click="item.type = 1" />
|
|
|
+ <HcIcon v-if="item.type === 2" name="links" class="ml-2" @click="item.type = 1" />
|
|
|
+ <HcIcon v-if="item.type === 1" name="exchange-2" class="ml-2" @click="item.type = 2" />
|
|
|
<HcIcon name="close" class="ml-2" @click="delTask(item, index)" />
|
|
|
</el-button>
|
|
|
</el-tooltip>
|