diff --git a/src/components/DesignForm/aceDrawer.vue b/src/components/DesignForm/aceDrawer.vue index b57d9f2..a7687a9 100644 --- a/src/components/DesignForm/aceDrawer.vue +++ b/src/components/DesignForm/aceDrawer.vue @@ -227,7 +227,7 @@ const dialogConfirmTree = () => { */ const pickDel = (val: treeStruct) => { console.log("要删除得节点-->", val.value); - delDiGui(treeSelectAry, val); + delDiGui(treeSelectAry.value, val); console.log("删除指定节点数据---结果-->", treeSelectAry); }; /** @@ -236,10 +236,12 @@ const pickDel = (val: treeStruct) => { @ 功能: 执行递归删除 */ const delDiGui = (tree: treeStruct[], val: treeStruct) => { + console.log("要删除得节点-11->", tree, val.value); for (let i = 0; i < tree.length; i++) { const node = tree[i]; if (node.value == val.value) { tree.splice(i, 1); + return; } if (Array.isArray(node.children) && node.children.length) { diff --git a/src/components/DesignForm/formControlPropertiNew.vue b/src/components/DesignForm/formControlPropertiNew.vue index f8a6585..b2e8329 100644 --- a/src/components/DesignForm/formControlPropertiNew.vue +++ b/src/components/DesignForm/formControlPropertiNew.vue @@ -336,6 +336,12 @@ const attrList = computed(() => { ], eventName: "labelNameVal", }, + { + label: "标题", + value: control.modelValue, + path: "control.modelValue", + vShow: ["title"], + }, { label: "组件类型", value: unitName, @@ -527,7 +533,7 @@ const attrList = computed(() => { path: "config.append", vShow: ["input", "password", "digitpage"], }, - + // { // label: '状态打开时的值', // value: control.activeValue, @@ -667,12 +673,7 @@ const attrList = computed(() => { vShow: ["select", "inputSlot"], eventName: "setInputSlot", }, - { - label: "标题", - value: control.modelValue, - path: "control.modelValue", - vShow: ["title"], - }, + { label: "占据的列数span", value: attr.span, @@ -3389,14 +3390,14 @@ const gainFormGroupList = () => { //liwenxuan 2025 移动端单选扫描输入功能 start const scanTypes = [ { - value: 'QrCode', - label: '二维码', + value: "QrCode", + label: "二维码", }, { - value: 'OCR', - label: '光学字符识别', + value: "OCR", + label: "光学字符识别", }, -] +]; //liwenxuan 2025 移动端单选扫描输入功能 end let asfs: any[] = []; @@ -3759,17 +3760,20 @@ watch( // } }); } else { - formData.value.dataSourceConfig.id = ""; - formData.value.dataSourceConfig.dataBaseName = ""; - formData.value.dataSourceConfig.tableName = ""; - formData.value.dataSourceConfig.tableKey = ""; - formData.value.dataSourceConfig.dsn = { - dataBaseName: "", - ip: "", - port: 0, - userName: "", - password: "", - }; + console.log("formData.value---------------", formData.value); + if (formData.value.dataSourceConfi) { + formData.value.dataSourceConfig.id = ""; + formData.value.dataSourceConfig.dataBaseName = ""; + formData.value.dataSourceConfig.tableName = ""; + formData.value.dataSourceConfig.tableKey = ""; + formData.value.dataSourceConfig.dsn = { + dataBaseName: "", + ip: "", + port: 0, + userName: "", + password: "", + }; + } formAttr.value.forEach((item) => { console.log(item.label, "item.", item.type); @@ -4255,7 +4259,8 @@ const updataBase = (val: any) => { > - +
{ padding-bottom: 6px; " > -
扫描方式
+
扫描方式
- + - - + /> +
-
diff --git a/src/components/DesignForm/public/expand/digitpage.vue b/src/components/DesignForm/public/expand/digitpage.vue index d0c69b5..260ceed 100644 --- a/src/components/DesignForm/public/expand/digitpage.vue +++ b/src/components/DesignForm/public/expand/digitpage.vue @@ -3,26 +3,42 @@ @ 时间: 2024-09-12 10:25:52 @ 备注: 分值 --> - - + diff --git a/src/components/DesignForm/public/expand/lowcodeImage.vue b/src/components/DesignForm/public/expand/lowcodeImage.vue index 676123c..0b3a8dd 100644 --- a/src/components/DesignForm/public/expand/lowcodeImage.vue +++ b/src/components/DesignForm/public/expand/lowcodeImage.vue @@ -3,119 +3,124 @@ @ 时间: 2024-09-12 10:44:17 @ 备注: 图片 --> - - diff --git a/src/components/DesignForm/public/expand/uploadPage.vue b/src/components/DesignForm/public/expand/uploadPage.vue index 47e585e..5e0e5b5 100644 --- a/src/components/DesignForm/public/expand/uploadPage.vue +++ b/src/components/DesignForm/public/expand/uploadPage.vue @@ -3,172 +3,173 @@ @ 时间: 2024-09-17 10:44:30 @ 备注: 上传组件 --> - - + diff --git a/src/components/DesignForm/public/form/childTable.vue b/src/components/DesignForm/public/form/childTable.vue index 522549e..c6ab728 100644 --- a/src/components/DesignForm/public/form/childTable.vue +++ b/src/components/DesignForm/public/form/childTable.vue @@ -3,275 +3,286 @@ @ 时间: 2023-07-14 08:51:25 @ 备注: 表单子表 --> - - + diff --git a/src/components/DesignForm/public/form/formGroup.vue b/src/components/DesignForm/public/form/formGroup.vue index 798bb77..949650b 100644 --- a/src/components/DesignForm/public/form/formGroup.vue +++ b/src/components/DesignForm/public/form/formGroup.vue @@ -815,6 +815,7 @@ function optionsValue3GetTable(data: any, fieldName: string) { - diff --git a/src/views/sysworkflow/lowcodepage/appPage/appSetUp/index.vue b/src/views/sysworkflow/lowcodepage/appPage/appSetUp/index.vue index a23bc3b..07896f1 100644 --- a/src/views/sysworkflow/lowcodepage/appPage/appSetUp/index.vue +++ b/src/views/sysworkflow/lowcodepage/appPage/appSetUp/index.vue @@ -3,128 +3,141 @@ @ 时间: 2024-05-22 09:37:55 @ 备注: 应用设置 --> - - diff --git a/src/views/sysworkflow/lowcodepage/appPage/appSetUp/setup.vue b/src/views/sysworkflow/lowcodepage/appPage/appSetUp/setup.vue index 19ece60..462c7ec 100644 --- a/src/views/sysworkflow/lowcodepage/appPage/appSetUp/setup.vue +++ b/src/views/sysworkflow/lowcodepage/appPage/appSetUp/setup.vue @@ -3,195 +3,218 @@ @ 时间: 2024-05-22 14:33:09 @ 备注: app设置 --> - - diff --git a/src/views/sysworkflow/lowcodepage/newLowCode/appLayoutEdit/appContainerPage.vue b/src/views/sysworkflow/lowcodepage/newLowCode/appLayoutEdit/appContainerPage.vue index 68d37c0..acfb387 100644 --- a/src/views/sysworkflow/lowcodepage/newLowCode/appLayoutEdit/appContainerPage.vue +++ b/src/views/sysworkflow/lowcodepage/newLowCode/appLayoutEdit/appContainerPage.vue @@ -73,13 +73,14 @@ const gainAppContent = () => { id: props.pickAppInfo.signCodeStr, }; gainAppEditPsge(sendInfo).then((data) => { - // console.log("获取app信息---》",data) + console.log("获取app信息---》", data); menusTree.value = data.data.menuTree; appCont.appKey = data.data.appKey; appCont.appName = data.data.appName; appCont.appSvg = data.data.appSvg; appCont.state = data.data.state; appCont.uuid = data.data.uuid; + appCont.describe = data.data.describe; }); }; diff --git a/src/widget/lowcodeimage/lowcodeImage.vue b/src/widget/lowcodeimage/lowcodeImage.vue index d80e37b..c7da0c9 100644 --- a/src/widget/lowcodeimage/lowcodeImage.vue +++ b/src/widget/lowcodeimage/lowcodeImage.vue @@ -1,53 +1,52 @@ - - +