feat(过滤器): 文本下拉组件选项可按照中文排序

This commit is contained in:
fit2cloud-chenyw
2022-12-15 19:03:50 +08:00
parent 6ec988e509
commit 44ae960c52
9 changed files with 95 additions and 7 deletions

View File

@@ -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) {

View File

@@ -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) {