From 5b4ea9995b33f13e04374522600d56c98e8590fa Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Fri, 27 Oct 2023 10:42:52 +0800 Subject: [PATCH] fix --- utils/template_switch_info/template_switch.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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", } } }