diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js index 1ba85ba1..392d3a78 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js @@ -791,15 +791,17 @@ export default { }, ]; const getOperators = (schema) => { - const values = ["equal", "notEqual"]; + const values = ["equal", "notEqual","biggerThanOrEqual","smallThanOrEqual"]; if (schema.type === "string") { values.push("like", "notLike"); if (schema.input && ["year", "month", "date", "datetime"].includes(schema.input)) { - values.push("biggerThan", "smallThan", "biggerThanOrEqual", "smallThanOrEqual"); + //values.push("biggerThan", "smallThan", "biggerThanOrEqual", "smallThanOrEqual"); + values.push("biggerThan", "smallThan"); } } else if (schema.type === "boolean") { } else { - values.push("biggerThan", "smallThan", "biggerThanOrEqual", "smallThanOrEqual"); + //values.push("biggerThan", "smallThan", "biggerThanOrEqual", "smallThanOrEqual"); + values.push("biggerThan", "smallThan"); } return operators.filter((o) => values.includes(o.value)); };