|
@@ -212,6 +212,18 @@ func processMap(data map[string]interface{}, opType string, tokenMap map[string]
|
|
switch v := value.(type) {
|
|
switch v := value.(type) {
|
|
case string:
|
|
case string:
|
|
if key == "content" {
|
|
if key == "content" {
|
|
|
|
+ contentSource, ok := data["compType"]
|
|
|
|
+ if !ok {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ contentSourceType, ok := contentSource.(string)
|
|
|
|
+ if !ok {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ if !utils.InArrayByStr([]string{`sheet`, `chart`}, contentSourceType) {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+
|
|
newContent := v
|
|
newContent := v
|
|
// 处理链接
|
|
// 处理链接
|
|
switch opType {
|
|
switch opType {
|