fix : 修复研发人员选择框

This commit is contained in:
2024-06-21 12:32:46 +08:00
parent 141e965f95
commit 3f26324747

View File

@@ -51,6 +51,9 @@
<div class="org-items">
<el-empty :image-size="100" description="请点击左侧列表选择数据" v-show="selectList.length === 0"/>
<div v-for="(selectItem, selectIndex) in selectList" :key="selectIndex" class="org-item">
<el-icon :color="selectItem.accountType==='0'?'#95d475':'#409eff'">
<UserFilled/>
</el-icon>
{{ selectItem.name }}-{{ selectItem.companyName }}
<el-icon @click="noSelected(selectItem)" size="20" style="margin-left: 10px;cursor: pointer;">
<CircleClose/>
@@ -125,7 +128,6 @@ const _value = computed({
});
watch(() => filterText.value, (newVal) => {
console.log('filterText.value', newVal)
filterText.value = newVal
});