From 60dee3dc4dc6869231d6adb0c94c47e36114ca91 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 21 四月 2022 09:11:34 +0800 Subject: [PATCH] 2022-04-21 --- src/utils/option.js | 30 +++++++++++++++++++++++++++--- 1 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/utils/option.js b/src/utils/option.js index 3a2d801..58196a7 100644 --- a/src/utils/option.js +++ b/src/utils/option.js @@ -196,6 +196,18 @@ }, { value: '=', text: '=' + }, { + value: '>', + text: '>' + }, { + value: '<', + text: '<' + }, { + value: '>=', + text: '>=' + }, { + value: '<=', + text: '<=' }], multiselect: [{ value: 'like', @@ -205,14 +217,26 @@ text: 'not like' }], select: [{ - value: '=', - text: '=' - }, { value: 'like', text: 'like' }, { value: 'not like', text: 'not like' + }, { + value: '=', + text: '=' + }, { + value: '>', + text: '>' + }, { + value: '<', + text: '<' + }, { + value: '>=', + text: '>=' + }, { + value: '<=', + text: '<=' }], date: [{ value: '>=', -- Gitblit v1.8.0