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 */
|
/** 判定逻辑 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;
|
||||||
|
|||||||
@ -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',
|
||||||
|
|||||||
@ -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"-->
|
||||||
<!-- >-->
|
<!-- >-->
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user