任务管理

This commit is contained in:
lq
2025-09-05 11:56:08 +08:00
11 changed files with 3258 additions and 451 deletions

View File

@ -14,7 +14,10 @@
@change="handleChange"
>
<a-option v-for="(item, index) in options" :key="index" :value="item.id" :label="item.name">
{{ item.name }}
<div class="flex items-center">
<img v-if="item.icon" :src="item.icon" class="w-16px h-16px mr-8px rounded-4px" />
{{ item.name }}
</div>
</a-option>
</a-select>
</template>
@ -73,4 +76,4 @@ const handleChange = (value) => {
selectedValues.value = value;
emits('change', value);
};
</script>
</script>