fix
This commit is contained in:
parent
b65618bd0c
commit
ee9b3f3a22
|
@ -70,19 +70,27 @@ func GetTemplateSwitchInfo(templateId int64, templateJsonStr *string, templateMa
|
||||||
Id: templateId,
|
Id: templateId,
|
||||||
Material: templateMaterialImg,
|
Material: templateMaterialImg,
|
||||||
MaterialData: MaterialData{
|
MaterialData: MaterialData{
|
||||||
|
QRcode: QRcode{
|
||||||
|
UserDisabled: true,
|
||||||
|
},
|
||||||
|
Website: Website{
|
||||||
|
UserDisabled: true,
|
||||||
|
},
|
||||||
|
Address: Address{
|
||||||
|
UserDisabled: true,
|
||||||
|
},
|
||||||
|
Phone: Phone{
|
||||||
|
UserDisabled: true,
|
||||||
|
},
|
||||||
|
Slogan: Slogan{
|
||||||
|
UserDisabled: true,
|
||||||
|
},
|
||||||
Logo: Logo{
|
Logo: Logo{
|
||||||
Material: "/image/logo/aHnT1_rzubdwax_scale.png",
|
Material: "/image/logo/aHnT1_rzubdwax_scale.png",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
CombineIsVisible: false,
|
CombineIsVisible: false,
|
||||||
}
|
}
|
||||||
defer func() {
|
|
||||||
returnData.MaterialData.QRcode.UserDisabled = true
|
|
||||||
returnData.MaterialData.Website.UserDisabled = true
|
|
||||||
returnData.MaterialData.Address.UserDisabled = true
|
|
||||||
returnData.MaterialData.Phone.UserDisabled = true
|
|
||||||
returnData.MaterialData.Slogan.UserDisabled = true
|
|
||||||
}()
|
|
||||||
if templateJsonStr == nil || *templateJsonStr == "" {
|
if templateJsonStr == nil || *templateJsonStr == "" {
|
||||||
return returnData
|
return returnData
|
||||||
}
|
}
|
||||||
|
@ -110,30 +118,35 @@ func GetTemplateSwitchInfo(templateId int64, templateJsonStr *string, templateMa
|
||||||
IfShow: v.Visible,
|
IfShow: v.Visible,
|
||||||
Text: v.Text,
|
Text: v.Text,
|
||||||
DefaultValue: "your phone",
|
DefaultValue: "your phone",
|
||||||
|
UserDisabled: true,
|
||||||
}
|
}
|
||||||
case "Address": //地址
|
case "Address": //地址
|
||||||
returnData.MaterialData.Address = Address{
|
returnData.MaterialData.Address = Address{
|
||||||
IfShow: v.Visible,
|
IfShow: v.Visible,
|
||||||
Text: v.Text,
|
Text: v.Text,
|
||||||
DefaultValue: "your address",
|
DefaultValue: "your address",
|
||||||
|
UserDisabled: true,
|
||||||
}
|
}
|
||||||
case "Website":
|
case "Website":
|
||||||
returnData.MaterialData.Website = Website{
|
returnData.MaterialData.Website = Website{
|
||||||
IfShow: v.Visible,
|
IfShow: v.Visible,
|
||||||
Text: v.Text,
|
Text: v.Text,
|
||||||
DefaultValue: "your website",
|
DefaultValue: "your website",
|
||||||
|
UserDisabled: true,
|
||||||
}
|
}
|
||||||
case "QRcode":
|
case "QRcode":
|
||||||
returnData.MaterialData.QRcode = QRcode{
|
returnData.MaterialData.QRcode = QRcode{
|
||||||
IfShow: v.Visible,
|
IfShow: v.Visible,
|
||||||
Text: v.Text,
|
Text: v.Text,
|
||||||
DefaultValue: "your qrcode content",
|
DefaultValue: "your qrcode content",
|
||||||
|
UserDisabled: true,
|
||||||
}
|
}
|
||||||
case "Slogan":
|
case "Slogan":
|
||||||
returnData.MaterialData.Slogan = Slogan{
|
returnData.MaterialData.Slogan = Slogan{
|
||||||
IfShow: v.Visible,
|
IfShow: v.Visible,
|
||||||
Text: v.Text,
|
Text: v.Text,
|
||||||
DefaultValue: "your slogan",
|
DefaultValue: "your slogan",
|
||||||
|
UserDisabled: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user