|
@@ -175,7 +175,7 @@ export default function Component(props: { records: any[] }) {
|
|
|
{
|
|
{
|
|
|
item.records.map((record, j) => {
|
|
item.records.map((record, j) => {
|
|
|
return <View style={{ position: 'relative', zIndex: j == selIndex[1] ? 3 : 2 }} key={j}><RecordItem delete={() => deleteRecord(record)} onClick={(e) => {
|
|
return <View style={{ position: 'relative', zIndex: j == selIndex[1] ? 3 : 2 }} key={j}><RecordItem delete={() => deleteRecord(record)} onClick={(e) => {
|
|
|
- if (process.env.TARO_ENV == 'weapp') {
|
|
|
|
|
|
|
+ if (process.env.TARO_ENV == 'weapp' && e && e.stopPropagation) {
|
|
|
e.stopPropagation()
|
|
e.stopPropagation()
|
|
|
}
|
|
}
|
|
|
tapItem(index, j)
|
|
tapItem(index, j)
|
|
@@ -210,7 +210,7 @@ export default function Component(props: { records: any[] }) {
|
|
|
</RecordItem>
|
|
</RecordItem>
|
|
|
{
|
|
{
|
|
|
index == selIndex[0] && j == selIndex[1] &&
|
|
index == selIndex[0] && j == selIndex[1] &&
|
|
|
- <View style={{ display: 'flex', flexDirection: 'column', zIndex: 10, position: 'absolute', alignItems: 'center', top: rpxToPx(125), left: 30 }}>
|
|
|
|
|
|
|
+ <View style={{ display: 'flex', flexDirection: 'column', zIndex: 100, position: 'absolute', alignItems: 'center', top: rpxToPx(125), left: 30 }}>
|
|
|
<Image src={require('@assets/images/pointer.png')} style={{ width: 32, height: 12, marginBottom: -2 }} />
|
|
<Image src={require('@assets/images/pointer.png')} style={{ width: 32, height: 12, marginBottom: -2 }} />
|
|
|
<View style={{
|
|
<View style={{
|
|
|
backgroundColor: '#505050',
|
|
backgroundColor: '#505050',
|