🐞 fix(ID1001344): 【内部商城】-功能{添加剪样}:剪样不能完全呈现,上划该页面无反应

【【内部商城】-功能{添加剪样}:剪样不能完全呈现,上划该页面无反应】 https://www.tapd.cn/53459131/bugtrace/bugs/view/1153459131001001344
This commit is contained in:
xuan 2023-02-24 19:10:51 +08:00
parent 78348efef9
commit bd53e19526
2 changed files with 32 additions and 23 deletions

View File

@ -30,6 +30,13 @@
"query": "id=1",
"launchMode": "default",
"scene": null
},
{
"name": "",
"pathName": "pages/sampleCutting/sampleCuttingList/index",
"query": "",
"launchMode": "default",
"scene": null
}
]
}

View File

@ -298,7 +298,8 @@ const SampleCuttingList = () => {
</View>
{
productList.length
? <View className={styles.productList}>
? <ScrollView scrollY style={{ flex: '1 1 auto', overflow: 'hidden', maxHeight: '60vh' }}>
<View className={styles.productList}>
{
productList?.map((item, index) => {
const isChecked = productMultipleSelection.some(mul => mul.product_color_id === item.product_color_id)
@ -322,6 +323,7 @@ const SampleCuttingList = () => {
})
}
</View>
</ScrollView>
: <Empty text="暂无数据" />
}