|
@@ -418,7 +418,7 @@ const groupChange = async (name: string) => {
|
|
|
if (activeAssets.value === 'system') {
|
|
|
if (!caseCaches.length) {
|
|
|
loading.value = true;
|
|
|
- caseCaches.push(...(await getCaseProjects(name)));
|
|
|
+ caseCaches.push(...(await getCaseProjects('系统方案')));
|
|
|
for (const group of cases) {
|
|
|
group.list = [];
|
|
|
for (const item of caseCaches) {
|
|
@@ -444,7 +444,7 @@ const groupChange = async (name: string) => {
|
|
|
if (activeAssets.value === 'system') {
|
|
|
if (!templateCaches.length) {
|
|
|
loading.value = true;
|
|
|
- templateCaches.push(...(await getCaseProjects(name)));
|
|
|
+ templateCaches.push(...(await getCaseProjects('系统模版')));
|
|
|
for (const group of templates) {
|
|
|
group.list = [];
|
|
|
for (const item of templateCaches) {
|