🐞 fix(ID1001346): 【内部商城小程序】-【领取色卡】--添加色卡,提交订单后,跳转到色卡详情页,没显示色卡信息

【【内部商城小程序】-【领取色卡】--添加色卡,提交订单后,跳转到色卡详情页,没显示色卡信息】 https://www.tapd.cn/53459131/bugtrace/bugs/view/1153459131001001346
This commit is contained in:
xuan 2023-02-24 18:53:31 +08:00
parent 8bea176292
commit 78348efef9
3 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@ module.exports = {
terserOptions: { terserOptions: {
// compress: true, // 默认使用terser压缩 // compress: true, // 默认使用terser压缩
compress: { compress: {
drop_console: true, // 去掉打印 drop_console: false, // 去掉打印
}, // 默认使用terser压缩 }, // 默认使用terser压缩
// mangle: false, // mangle: false,
keep_classnames: true, // 不改变class名称 keep_classnames: true, // 不改变class名称

View File

@ -65,8 +65,7 @@ page {
} }
&__bottom { &__bottom {
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row wrap;
justify-content: space-between;
width: 100%; width: 100%;
} }
&__container { &__container {
@ -80,6 +79,8 @@ page {
flex-flow: column nowrap; flex-flow: column nowrap;
} }
&__right { &__right {
min-width: 100px;
text-align: right;
font-size: 28px; font-size: 28px;
} }
} }

View File

@ -195,7 +195,7 @@ const ColorCardDetail = () => {
<View className={styles.rightCont__bottom}> <View className={styles.rightCont__bottom}>
{ {
item.affiliation_product?.map((product_color, index) => { item.affiliation_product?.map((product_color, index) => {
return <Tag customStyle={{ marginRight: '5px', marginBottom: '2px', padding: '5px', background: '#e3ecff', color: '#558cff', borderColor: '#e3ecff' }} key={index} size="small" circle>{formatRemoveHashTag(product_color)}</Tag> return <Tag customStyle={{ marginRight: '5px', marginBottom: '2px', padding: '5px', background: '#e3ecff', color: '#558cff', borderColor: '#e3ecff' }} key={index} size="small" circle>{formatRemoveHashTag(product_color.code)}</Tag>
}) })
} }
</View> </View>