订单列表页面接入,修改crud搜索支持radio-button类型

This commit is contained in:
2025-02-14 15:44:42 +08:00
parent 3cd59b4cd7
commit 9dc8e6b866
15 changed files with 856 additions and 8 deletions

View File

@@ -1,3 +1,5 @@
import { property } from "lodash";
export const sourceOptions: options[] = [
{ label: "桌面端", value: "pc" },
{ label: "管理端", value: "manager_app" },
@@ -39,4 +41,5 @@ export function returnOptionsLabel(optionsType: optionsType, value: string | num
export interface options {
label: string;
value: string | number;
[property: string]: any;
}