From af22f6e6031165b015156740e895348a0ab42c6d Mon Sep 17 00:00:00 2001 From: "xiaozhe.ma" Date: Thu, 22 Aug 2024 17:15:49 +0900 Subject: [PATCH] =?UTF-8?q?=E5=B1=9E=E6=80=A7UI=EF=BC=88=E3=83=97=E3=83=AD?= =?UTF-8?q?=E3=83=91=E3=83=86=E3=82=A3=EF=BC=89=E3=81=AB=E3=83=81=E3=82=A7?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=83=AB=E3=83=BC=E3=83=AB=E8=A8=AD=E5=AE=9A?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ConditionEditor/ConditionEditor.vue | 12 +- .../src/components/right/AppFieldSelect.vue | 272 +++++++++--------- frontend/src/components/right/AppSelect.vue | 51 ++-- .../src/components/right/ConditionInput.vue | 6 +- frontend/src/components/right/DataMapping.vue | 90 ++++-- .../src/components/right/DataProcessing.vue | 38 ++- frontend/src/components/right/DatePicker.vue | 22 +- frontend/src/components/right/EventSetter.vue | 26 +- frontend/src/components/right/FieldInput.vue | 25 +- frontend/src/components/right/InputText.vue | 16 +- .../src/components/right/MuiltInputText.vue | 26 +- .../src/components/right/MultiFieldInput.vue | 0 frontend/src/components/right/NumInput.vue | 29 +- .../src/components/right/PropertyPanel.vue | 27 +- frontend/src/components/right/SelectBox.vue | 26 +- frontend/src/pages/FlowChart.vue | 8 +- frontend/src/stores/flowEditor.ts | 18 +- frontend/src/types/Conditions.ts | 7 +- 18 files changed, 468 insertions(+), 231 deletions(-) delete mode 100644 frontend/src/components/right/MultiFieldInput.vue diff --git a/frontend/src/components/ConditionEditor/ConditionEditor.vue b/frontend/src/components/ConditionEditor/ConditionEditor.vue index eef9401..567f4c6 100644 --- a/frontend/src/components/ConditionEditor/ConditionEditor.vue +++ b/frontend/src/components/ConditionEditor/ConditionEditor.vue @@ -52,12 +52,12 @@ import { useQuasar } from 'quasar'; const tree = ref(props.conditionTree); const closeDg = (val:string) => { if (val == 'OK') { - if(tree.value.root.children.length===0){ - $q.notify({ - type: 'negative', - message: `条件式を設定してください。` - }); - } + // if(tree.value.root.children.length===0){ + // $q.notify({ + // type: 'negative', + // message: `条件式を設定してください。` + // }); + // } context.emit("update:conditionTree",tree.value); } showflg.value=false; diff --git a/frontend/src/components/right/AppFieldSelect.vue b/frontend/src/components/right/AppFieldSelect.vue index aa9e448..4895a4f 100644 --- a/frontend/src/components/right/AppFieldSelect.vue +++ b/frontend/src/components/right/AppFieldSelect.vue @@ -1,157 +1,165 @@ diff --git a/frontend/src/components/right/AppSelect.vue b/frontend/src/components/right/AppSelect.vue index 75300c7..396facd 100644 --- a/frontend/src/components/right/AppSelect.vue +++ b/frontend/src/components/right/AppSelect.vue @@ -1,14 +1,18 @@