diff --git a/frontend/src/i18n/en.json b/frontend/src/i18n/en.json index bbdbcaaf..f7e995c2 100644 --- a/frontend/src/i18n/en.json +++ b/frontend/src/i18n/en.json @@ -8,6 +8,8 @@ "Details": "Details" }, "variables": { + "please_select_date": "Please select a date", + "number_variable_error": "Please enter the correct numerical range.", "built_in": "Built-in", "normal_value": "Normal value", "cannot_be_empty": "Variable values cannot be empty.", diff --git a/frontend/src/i18n/ko-KR.json b/frontend/src/i18n/ko-KR.json index 4cedf417..34c27650 100644 --- a/frontend/src/i18n/ko-KR.json +++ b/frontend/src/i18n/ko-KR.json @@ -24,6 +24,8 @@ "return_to_view": "화면으로 돌아가기" }, "variables": { + "please_select_date": "날짜를 선택하십시오", + "number_variable_error": "올바른 숫자 범위를 입력하십시오.", "built_in": "내장형", "normal_value": "정상값", "cannot_be_empty": "변수 값은 비어 있을 수 없습니다.", @@ -943,4 +945,4 @@ "to_doc": "API 보기", "trigger_limit": "최대 {0}개의 API 키 생성 지원" } -} +} \ No newline at end of file diff --git a/frontend/src/i18n/zh-CN.json b/frontend/src/i18n/zh-CN.json index f3b6e61d..66f81772 100644 --- a/frontend/src/i18n/zh-CN.json +++ b/frontend/src/i18n/zh-CN.json @@ -24,6 +24,8 @@ "return_to_view": "返回查看" }, "variables": { + "please_select_date": "请选择日期", + "number_variable_error": "请输入正确的数值范围", "built_in": "已内置", "normal_value": "常规值", "cannot_be_empty": "变量值不能为空", diff --git a/frontend/src/views/chat/ExecutionDetails.vue b/frontend/src/views/chat/ExecutionDetails.vue index a6545d5f..78dc4e63 100644 --- a/frontend/src/views/chat/ExecutionDetails.vue +++ b/frontend/src/views/chat/ExecutionDetails.vue @@ -173,6 +173,7 @@ defineExpose({ border: 1px solid #dee0e3; padding: 16px; margin-bottom: 8px; + cursor: pointer; .header { display: flex; diff --git a/frontend/src/views/system/user/User.vue b/frontend/src/views/system/user/User.vue index cf7b4419..aa8dc732 100644 --- a/frontend/src/views/system/user/User.vue +++ b/frontend/src/views/system/user/User.vue @@ -391,6 +391,9 @@ v-for="item in variables" :key="item.id" :label="item.name" + :disabled=" + state.form.system_variables.map((ele: any) => ele.variableId).includes(item.id) + " :value="item.id" >