feat: 数据看板

This commit is contained in:
rd
2025-06-27 18:37:42 +08:00
parent 6a8cf54ccb
commit 80c6b30701
18 changed files with 907 additions and 7 deletions

View File

@ -27,8 +27,8 @@
<span class="label">状态</span>
<a-space class="w-180px">
<a-select v-model="query.status" size="medium" placeholder="全部" allow-clear @change="handleSearch">
<a-option v-for="(item, index) in STATUS_LIST" :key="index" :value="item.value" :label="item.label">{{
item.label
<a-option v-for="(item, index) in STATUS_LIST" :key="index" :value="item.value" :label="item.text">{{
item.text
}}</a-option>
</a-select>
</a-space>
@ -112,7 +112,6 @@ const handleSearch = () => {
};
const handleReset = () => {
emits('update:query', cloneDeep(INITIAL_QUERY));
emits('onReset');
};