feat(queue): 完成调度队列页面并添加脚本下拉框功能
- 重新设计了队列页面布局,使用表格代替原来的卡片布局 - 添加了脚本下拉框功能,支持选择已有的脚本 - 简化了队列项的展示内容,只显示脚本名称 - 优化了队列项的编辑和删除操作 - 新增了获取脚本下拉框信息的 API 接口
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ComboBoxOut } from '../models/ComboBoxOut';
|
||||
import type { DispatchIn } from '../models/DispatchIn';
|
||||
import type { InfoOut } from '../models/InfoOut';
|
||||
import type { OutBase } from '../models/OutBase';
|
||||
@@ -58,6 +59,17 @@ export class Service {
|
||||
url: '/api/info/stage',
|
||||
});
|
||||
}
|
||||
/**
|
||||
* 获取脚本下拉框信息
|
||||
* @returns ComboBoxOut Successful Response
|
||||
* @throws ApiError
|
||||
*/
|
||||
public static getScriptComboxApiInfoComboxScriptPost(): CancelablePromise<ComboBoxOut> {
|
||||
return __request(OpenAPI, {
|
||||
method: 'POST',
|
||||
url: '/api/info/combox/script',
|
||||
});
|
||||
}
|
||||
/**
|
||||
* 获取通知信息
|
||||
* @returns InfoOut Successful Response
|
||||
|
||||
Reference in New Issue
Block a user