任务管理

This commit is contained in:
lq
2025-09-19 10:34:26 +08:00
parent 0671c19306
commit 14192d5c8e
3 changed files with 24 additions and 4 deletions

View File

@ -96,7 +96,7 @@
<div class="flex items-center justify-between w-384px">
<div class="section-title">发布计划</div>
<CommonSelect
v-model="localQuery.accounts"
v-model="publishQuery"
:options="accountList || []"
:multiple="true"
@change="(val) => handleChange('accounts', val)"
@ -158,6 +158,13 @@ const props = defineProps({
query: Object,
});
const isActive = ref('ai');
const publishQuery = ref([{
id: 1,
name:"立即发布"
},{
id: 2,
name:"定时发布"
}]);
// 本地筛选状态(保持上次选择)
const localQuery = ref({
accounts: props.query?.ids || [],

View File

@ -1,4 +1,16 @@
<template>
<div class="task-item">
</div>
</template>
<div class="task-item">
</div>
</template>
<script setup lang="ts">
</script>
<style lang="less" scoped>
.task-item {
width: 100%;
height: 100%;
}
</style>