fix: 问题修复
This commit is contained in:
@@ -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: "费用",
|
||||
|
||||
Reference in New Issue
Block a user