diff --git a/src/assets/images/tips/Integral-activity.png b/src/assets/images/tips/Integral-activity.png
new file mode 100644
index 00000000..2f972815
Binary files /dev/null and b/src/assets/images/tips/Integral-activity.png differ
diff --git a/src/plugins/icon.ts b/src/plugins/icon.ts
index f6864210..09c3f0a0 100644
--- a/src/plugins/icon.ts
+++ b/src/plugins/icon.ts
@@ -59,6 +59,7 @@ import {
Reload as ReloadIcon,
ChevronUpOutline as ChevronUpOutlineIcon,
ChevronDownOutline as ChevronDownOutlineIcon,
+ ChevronForward as ChevronForwardIcon,
Pulse as PulseIcon,
Folder as FolderIcon,
FolderOpen as FolderOpenIcon,
@@ -248,7 +249,9 @@ const ionicons5 = {
// 分析
AnalyticsIcon,
// 飞机
- AirPlaneOutlineIcon
+ AirPlaneOutlineIcon,
+ // 向右
+ ChevronForwardIcon
}
const carbon = {
diff --git a/src/utils/utils.ts b/src/utils/utils.ts
index feaf7e88..fb0ca3ba 100644
--- a/src/utils/utils.ts
+++ b/src/utils/utils.ts
@@ -301,13 +301,17 @@ export const evalFn = (fn: string) => {
* @param data
*/
export const JSONParse = (data: string) => {
+ if (data.trim() === '') return
return JSON.parse(data, (k, v) => {
- // 过滤函数字符串
- if (excludeParseEventKeyList.includes(k)) return v
- // 过滤函数值表达式
- if (typeof v === 'string') {
- const someValue = excludeParseEventValueList.some(excludeValue => v.indexOf(excludeValue) > -1)
- if (someValue) return v
+ // // 过滤函数字符串
+ // if (excludeParseEventKeyList.includes(k)) return v
+ // // 过滤函数值表达式
+ // if (typeof v === 'string') {
+ // const someValue = excludeParseEventValueList.some(excludeValue => v.indexOf(excludeValue) > -1)
+ // if (someValue) return v
+ // }
+ if (k !== 'formatter') {
+ return v
}
// 还原函数值
if (typeof v === 'string' && v.indexOf && (v.indexOf('function') > -1 || v.indexOf('=>') > -1)) {
diff --git a/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue
index 731796c1..a67931e6 100644
--- a/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue
+++ b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue
@@ -1,10 +1,26 @@
diff --git a/src/views/project/templateMarket/index.vue b/src/views/project/templateMarket/index.vue
index 9c3ec468..71b8b5c3 100644
--- a/src/views/project/templateMarket/index.vue
+++ b/src/views/project/templateMarket/index.vue
@@ -4,7 +4,7 @@
-
+
前往 GoViewPro 查看 👆