🐛 修复 quartz 配置不生效.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<card-list v-model:searchValue="formModel.searchValue"
|
||||
search-input-placeholder="输入 id / 名称 / 用户名"
|
||||
:create-card-position="false"
|
||||
:loading="loading"
|
||||
:field-config="fieldConfig"
|
||||
:list="list"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<card-list v-model:searchValue="formModel.searchValue"
|
||||
search-input-placeholder="输入 id / 名称"
|
||||
:create-card-position="false"
|
||||
:loading="loading"
|
||||
:field-config="fieldConfig"
|
||||
:list="list"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<card-list v-model:searchValue="formModel.searchValue"
|
||||
search-input-placeholder="输入 id / 名称 / 编码 / 地址"
|
||||
:create-card-position="false"
|
||||
:loading="loading"
|
||||
:field-config="fieldConfig"
|
||||
:list="list"
|
||||
|
||||
@@ -143,8 +143,8 @@
|
||||
try {
|
||||
// 查询
|
||||
const data = await cacheStore.loadCommandSnippets(true);
|
||||
snippetGroups.value = data.groups;
|
||||
ungroupedItems.value = data.ungroupedItems;
|
||||
snippetGroups.value = data.groups || [];
|
||||
ungroupedItems.value = data.ungroupedItems || [];
|
||||
// 设置状态
|
||||
filterSnippet();
|
||||
} catch (e) {
|
||||
|
||||
@@ -145,8 +145,8 @@
|
||||
try {
|
||||
// 查询
|
||||
const data = await cacheStore.loadPathBookmarks(true);
|
||||
bookmarkGroups.value = data.groups;
|
||||
ungroupedItems.value = data.ungroupedItems;
|
||||
bookmarkGroups.value = data.groups || [];
|
||||
ungroupedItems.value = data.ungroupedItems || [];
|
||||
// 设置状态
|
||||
filterPath();
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user