fix:sql数据集传参提示优化

This commit is contained in:
taojinlong
2025-05-30 09:37:42 +08:00
committed by taojinlong
parent 05080424d0
commit c4da8378d3
4 changed files with 4 additions and 4 deletions

View File

@@ -2107,7 +2107,7 @@ export default {
select_year: 'Select year',
sql_variable_limit_1: '1. SQL variables can only be used in WHERE conditions',
sql_variable_limit_2:
"2. select * from table where $DE_PARAM{'{'} name = '$[PARAM1]' {'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
"2. select * from table where $DE_PARAM{'{'} name = substring('$[PARAM1]',1,5){'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
select_month: 'Select month',
select_date: 'Select date',
select_time: 'Select time',

View File

@@ -2048,7 +2048,7 @@ export default {
select_year: '選擇年',
sql_variable_limit_1: '1、SQL 變數只能在WHERE 條件中使用',
sql_variable_limit_2:
"2範例: select * from table where $DE_PARAM{'{'} name = '$[PARAM1]' {'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
"2範例: select * from table where $DE_PARAM{'{'} name = substring('$[PARAM1]',1,5){'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
select_month: '選擇月',
select_date: '選擇日期',
select_time: '選擇時間',

View File

@@ -2054,7 +2054,7 @@ export default {
select_year: '选择年',
sql_variable_limit_1: '1、SQL 变量只能在 WHERE 条件中使用',
sql_variable_limit_2:
"2示例: select * from table where $DE_PARAM{'{'} name = '$[PARAM1]' {'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
"2示例: select * from table where $DE_PARAM{'{'} name = substring('$[PARAM1]',1,5){'}'} and $DE_PARAM{'{'} name in ($[PARAM2]) {'}'}",
select_month: '选择月',
select_date: '选择日期',
select_time: '选择时间',

View File

@@ -1681,7 +1681,7 @@ const mousedownDrag = () => {
}
.content {
height: 62px;
height: 80px;
width: 822px;
border-radius: 4px;
background: #e1eaff;