任务管理
This commit is contained in:
@ -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 || [],
|
||||
|
||||
Reference in New Issue
Block a user