fix: 问题修复

This commit is contained in:
2025-11-15 19:08:19 +08:00
parent 93f08d5a9f
commit 79b2e9869f
24 changed files with 872 additions and 529 deletions

View File

@@ -400,15 +400,49 @@ function OrderMsg(props) {
},
{
title: "报名人电话",
content: registrant_phone,
// content: registrant_phone,
content: registrant_phone ? (
<Text
selectable={true} // 支持长按复制
style={{
color: "#007AFF",
// textDecoration: "underline",
cursor: "pointer",
}}
onClick={() => {
Taro.makePhoneCall({ phoneNumber: registrant_phone });
}}
>
{registrant_phone}
</Text>
) : (
"-"
),
},
{
title: "组织人微信号",
content: wechat_contact,
content: wechat_contact || "-",
},
{
title: "组织人电话",
content: wechat_contact,
// content: wechat_contact,
content: wechat_contact ? (
<Text
selectable={true} // 支持长按复制
style={{
color: "#007AFF",
// textDecoration: "underline",
cursor: "pointer",
}}
onClick={() => {
Taro.makePhoneCall({ phoneNumber: wechat_contact });
}}
>
{wechat_contact}
</Text>
) : (
"-"
),
},
{
title: "费用",