diff --git a/utils/template_switch_info/template_switch.go b/utils/template_switch_info/template_switch.go index 260509e5..5d985e46 100644 --- a/utils/template_switch_info/template_switch.go +++ b/utils/template_switch_info/template_switch.go @@ -97,31 +97,31 @@ func GetTemplateSwitchInfo(templateId int64, templateJsonStr *string, templateMa returnData.MaterialData.Phone = Phone{ IfShow: v.Visible, Text: v.Text, - DefaultValue: "000 xxx xxx 1111", + DefaultValue: "your phone", } case "Address": //地址 returnData.MaterialData.Address = Address{ IfShow: v.Visible, Text: v.Text, - DefaultValue: "USA", + DefaultValue: "your address", } case "Website": returnData.MaterialData.Website = Website{ IfShow: v.Visible, Text: v.Text, - DefaultValue: "https://www.xxxxxx.com", + DefaultValue: "your website", } case "QRcode": returnData.MaterialData.QRcode = QRcode{ IfShow: v.Visible, Text: v.Text, - DefaultValue: "qrcode xxxxxxx", + DefaultValue: "your qrcode content", } case "Slogan": returnData.MaterialData.Slogan = Slogan{ IfShow: v.Visible, Text: v.Text, - DefaultValue: "slogan xxxxxxx", + DefaultValue: "your slogan", } } }