1、条件表达式只保留QL
2、修复组信息无法修改问题 3、组下拉列表显示中文名 4、修复系统参数显示异常 5、脚本参数新增提示信息
This commit is contained in:
commit
8f62dd5e06
5
src/typings/api.d.ts
vendored
5
src/typings/api.d.ts
vendored
@ -88,8 +88,9 @@ declare namespace Api {
|
||||
/** 判定逻辑 1:and 2:or */
|
||||
type LogicalCondition = 1 | 2;
|
||||
|
||||
/** 表达式类型 1:SpEl 2:Aviator 3:QL */
|
||||
type Expression = 1 | 2 | 3;
|
||||
/** 表达式类型 1:SpEl 2:Aviator 3:QL 只用ql */
|
||||
// type Expression = 1 | 2 | 3;
|
||||
type Expression = 3;
|
||||
|
||||
/** 请求类型 1:application/json 2:application/x-www-form-urlencoded */
|
||||
type ContentType = 1 | 2;
|
||||
|
||||
@ -66,6 +66,10 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP
|
||||
title: $t('page.system_variable.variableValue'),
|
||||
align: 'left',
|
||||
minWidth: 50,
|
||||
ellipsis: {
|
||||
tooltip: true,
|
||||
contentStyle: { maxWidth: '110px' }
|
||||
},
|
||||
},
|
||||
{
|
||||
key: 'variableType',
|
||||
|
||||
@ -205,7 +205,7 @@ function getPermission(str: string): PermissionModel {
|
||||
:label="$t(item.label)"
|
||||
/>
|
||||
</NSpace>
|
||||
<example-expression :type=4 />
|
||||
<example-expression :type=3 />
|
||||
</NRadioGroup>
|
||||
<!-- <NPopover trigger="hover"-->
|
||||
<!-- >-->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user