From c33ac9ddcdbed91bd2267bed2a96199441806a04 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期四, 22 九月 2022 17:00:15 +0800
Subject: [PATCH] 2022-09-22
---
src/utils/utils-custom.js | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 106 insertions(+), 8 deletions(-)
diff --git a/src/utils/utils-custom.js b/src/utils/utils-custom.js
index 0d109b5..eca6187 100644
--- a/src/utils/utils-custom.js
+++ b/src/utils/utils-custom.js
@@ -3,16 +3,17 @@
* @description 鑾峰彇涓嬬骇妯″潡
* @return {String} selfId 褰撳墠缁勪欢id
*/
- static getSubModules (components, selfId) {
+ static getSubModules (components, selfId, supId) {
let modules = components.map(item => {
- if (item.uuid === selfId) {
+ if (item.uuid === selfId || item.type === 'navbar') {
return {
children: null
}
} else if (item.format) { // 鏁版嵁鏍煎紡锛屽瓨鍦ㄦ暟鎹簮
return {
value: item.uuid,
- label: item.name
+ label: item.name,
+ disabled: supId === item.uuid
}
} else if (item.type === 'tabs') {
let _item = {
@@ -69,6 +70,91 @@
}
return _item
+ } else {
+ return {
+ children: null
+ }
+ }
+ })
+
+ modules = modules.filter(mod => mod.children !== null)
+
+ if (modules.length === 0) {
+ return null
+ }
+ return modules
+ }
+
+ /**
+ * @description 鑾峰彇涓嬬骇妯″潡
+ * @return {String} selfId 褰撳墠缁勪欢id
+ */
+ static getAnchors (components, selfId) {
+ let modules = components.map(item => {
+ if (item.uuid === selfId) {
+ return {
+ children: null
+ }
+ } else if (item.type === 'tabs') {
+ let _item = {
+ type: 'tabs',
+ value: item.uuid,
+ label: item.name,
+ children: item.subtabs.map(f_tab => {
+ let subItem = {
+ type: 'tab',
+ value: f_tab.uuid,
+ label: f_tab.label,
+ children: this.getSubModules(f_tab.components, selfId)
+ }
+
+ if (!subItem.children || subItem.children.length === 0) {
+ return {children: null}
+ }
+ return subItem
+ })
+ }
+
+ _item.children = _item.children.filter(t => t.children !== null)
+
+ if (_item.children.length === 0) {
+ return {children: null}
+ }
+
+ return _item
+ } else if (item.type === 'group') {
+ let _item = {
+ value: item.uuid,
+ label: item.name,
+ children: item.components.map(f_tab => {
+ if (f_tab.uuid === selfId) {
+ return {
+ children: null
+ }
+ } else if (f_tab.format) {
+ return {
+ value: f_tab.uuid,
+ label: f_tab.name
+ }
+ }
+ return {
+ children: null
+ }
+ })
+ }
+
+ _item.children = _item.children.filter(t => t.children !== null)
+
+ if (_item.children.length === 0) {
+ return {children: null}
+ }
+
+ return _item
+ } else if (!['login', 'navbar', 'topbar', 'tabs', 'search', 'group', 'balcony'].includes(item.type)) { // 鏁版嵁鏍煎紡锛屽瓨鍦ㄦ暟鎹簮
+ return {
+ value: item.uuid,
+ label: item.name
+ }
} else {
return {
children: null
@@ -490,6 +576,17 @@
return col
})
}
+ } else if (item.type === 'form') {
+ item.subcards = item.subcards.map(cell => {
+ cell.uuid = this.getuuid()
+
+ cell.fields = cell.fields.map(m => {
+ m.uuid = this.getuuid()
+
+ return m
+ })
+ return cell
+ })
}
if (item.btnlog) {
@@ -857,9 +954,11 @@
*/
export function resetStyle (style) {
if (!style) return {}
- if (sessionStorage.getItem('appType') === 'mob') {
- let _style = JSON.stringify(style)
+ let _style = JSON.stringify(style)
+ _style = _style.replace(/@mywebsite@\//ig, window.GLOB.baseurl)
+
+ if (sessionStorage.getItem('appType') === 'mob') {
// scaleview
_style = _style.replace(/\d+vw/ig, (word) => {
return parseFloat(word) * (window.GLOB.winWidth || 420) / 100 + 'px'
@@ -868,8 +967,7 @@
return parseFloat(word) * (window.GLOB.winHeight || 738) / 100 + 'px'
// return parseFloat(word) * 615 / 100 + 'px'
})
-
- return JSON.parse(_style)
}
- return JSON.parse(JSON.stringify(style))
+
+ return JSON.parse(_style)
}
\ No newline at end of file
--
Gitblit v1.8.0