🐞 fix(ID1001367): 【内部小程序】--点色卡订单详情页面,个别字体没显示,订单编号没复制按钮

【【内部小程序】--点色卡订单详情页面,个别字体没显示,订单编号没复制按钮】https://www.tapd.cn/53459131/bugtrace/bugs/view?bug_id=1153459131001001367
This commit is contained in:
xuan 2023-02-28 10:51:05 +08:00
parent 5e7af08483
commit a33097c363
4 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ const Cell: FC<CellPropsType> = (props) => {
<View>{title}</View>
</View>
<View className={styles.desc}>
<Text className={classNames(styles.descText, customDescClassName)}>{desc}</Text>
<View className={classNames(styles.descText, customDescClassName)}>{desc}</View>
{isLink && <IconFont name="icon-chakanquanbukehu" size={46} color="inherit"></IconFont>}
</View>
</View>

View File

@ -1,5 +1,5 @@
export default {
navigationBarTitleText: '色卡详情',
navigationBarTitleText: '色卡订单详情',
enablePullDownRefresh: true,
backgroundTextStyle: 'dark',
}

View File

@ -219,7 +219,7 @@ const ColorCardDetail = () => {
<Cell title="订单编号:" desc={
<>
<Text className={styles.orderInfoDetail__desc}>{order.order_no}</Text>
<Tag type="primary" onClick={() => handleCopy(order.order_no)}></Tag>
<Tag type="primary" size="small" plain circle onClick={() => handleCopy(order.order_no)}></Tag>
</>
}
></Cell>

View File

@ -219,7 +219,7 @@ const SampleCuttingDetail = () => {
<Cell title="订单编号:" desc={
<>
<Text className={styles.orderInfoDetail__desc}>{order?.order_no}</Text>
<Tag type="primary" onClick={() => handleCopy(order?.order_no)}></Tag>
<Tag type="primary" size="small" plain circle onClick={() => handleCopy(order?.order_no)}></Tag>
</>
}
></Cell>