mirror of
https://github.com/dataease/dataease.git
synced 2026-05-23 13:58:26 +08:00
feat(过滤器): 文本下拉组件选项可按照中文排序
This commit is contained in:
@@ -99,6 +99,9 @@ class TextSelectGridServiceImpl extends WidgetService {
|
||||
isCustomSortWidget() {
|
||||
return true
|
||||
}
|
||||
isChinesSortWidget() {
|
||||
return true
|
||||
}
|
||||
fillValueDerfault(element) {
|
||||
const defaultV = element.options.value === null ? '' : element.options.value.toString()
|
||||
if (element.options.attrs.multiple) {
|
||||
|
||||
@@ -105,7 +105,9 @@ class TextSelectServiceImpl extends WidgetService {
|
||||
isParamWidget() {
|
||||
return true
|
||||
}
|
||||
|
||||
isChinesSortWidget() {
|
||||
return true
|
||||
}
|
||||
fillValueDerfault(element) {
|
||||
const defaultV = element.options.value === null ? '' : element.options.value.toString()
|
||||
if (element.options.attrs.multiple) {
|
||||
|
||||
Reference in New Issue
Block a user