|
@@ -8,9 +8,9 @@
|
|
|
</template> -->
|
|
|
<template v-for="(item, index) in fixedBranchList" :key="index">
|
|
|
<el-tag>{{ item.name }}</el-tag>
|
|
|
- <HcIcon v-if="(UserDataList.length - 1) > index" name="arrow-right" ui="arrow-icon-tag" />
|
|
|
+ <HcIcon v-if="(fixedBranchList.length - 1) > index" name="arrow-right" ui="arrow-icon-tag" />
|
|
|
</template>
|
|
|
- <div v-if="UserDataList.length <= 0" class="tasks-placeholder">点击这里选择任务人</div>
|
|
|
+ <div v-if="fixedBranchList.length <= 0" class="tasks-placeholder">点击这里选择任务人</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -419,6 +419,7 @@ const delTask = async (item, index)=>{
|
|
|
console.log(index, 'index')
|
|
|
|
|
|
fixedBranchList.value.splice(index, 1)
|
|
|
+ checkboxUserList.value = []
|
|
|
}
|
|
|
const curItem = ref(null)
|
|
|
const chekckTask = (item)=>{
|