1、条件表达式只保留QL

2、修复组信息无法修改问题
3、组下拉列表显示中文名
4、修复系统参数显示异常
5、脚本参数新增提示信息
This commit is contained in:
SGK\17962 2025-11-06 17:31:38 +08:00
commit 8f62dd5e06
3 changed files with 8 additions and 3 deletions

View File

@ -88,8 +88,9 @@ declare namespace Api {
/** 判定逻辑 1:and 2:or */ /** 判定逻辑 1:and 2:or */
type LogicalCondition = 1 | 2; type LogicalCondition = 1 | 2;
/** 表达式类型 1:SpEl 2:Aviator 3:QL */ /** 表达式类型 1:SpEl 2:Aviator 3:QL 只用ql */
type Expression = 1 | 2 | 3; // type Expression = 1 | 2 | 3;
type Expression = 3;
/** 请求类型 1:application/json 2:application/x-www-form-urlencoded */ /** 请求类型 1:application/json 2:application/x-www-form-urlencoded */
type ContentType = 1 | 2; type ContentType = 1 | 2;

View File

@ -66,6 +66,10 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP
title: $t('page.system_variable.variableValue'), title: $t('page.system_variable.variableValue'),
align: 'left', align: 'left',
minWidth: 50, minWidth: 50,
ellipsis: {
tooltip: true,
contentStyle: { maxWidth: '110px' }
},
}, },
{ {
key: 'variableType', key: 'variableType',

View File

@ -205,7 +205,7 @@ function getPermission(str: string): PermissionModel {
:label="$t(item.label)" :label="$t(item.label)"
/> />
</NSpace> </NSpace>
<example-expression :type=4 /> <example-expression :type=3 />
</NRadioGroup> </NRadioGroup>
<!-- <NPopover trigger="hover"--> <!-- <NPopover trigger="hover"-->
<!-- >--> <!-- >-->