|
|
@@ -344,7 +344,10 @@ export default function Component(props: { type: string, data: any, time: any, s
|
|
|
}
|
|
|
|
|
|
|
|
|
- function goDetail() {
|
|
|
+ function goDetail(e) {
|
|
|
+ if (process.env.TARO_ENV=='weapp'){
|
|
|
+ e.stopPropagation()
|
|
|
+ }
|
|
|
if (!user.isLogin) {
|
|
|
jumpPage('/pages/account/ChooseAuth', 'ChooseAuth', navigation)
|
|
|
return
|
|
|
@@ -422,11 +425,12 @@ export default function Component(props: { type: string, data: any, time: any, s
|
|
|
(props.data.scenario.name == 'SLEEP' || props.data.scenario.name == 'FAST_SLEEP') && <Text className="duration_value" style={{ color: global.sleepColor ? global.sleepColor : ColorType.sleep }}>{sleepDuration()}</Text>
|
|
|
}
|
|
|
</View>
|
|
|
- {
|
|
|
+ <Image className="arrow2" src={require('@/assets/images/arrow3.png')} />
|
|
|
+ {/* {
|
|
|
!props.showStage && <View className="record_arrow_bg" style={{ backgroundColor: global.isDebug ? 'red' : 'transparent' }}>
|
|
|
<View style={{ flex: 1 }} />
|
|
|
- <Image className="arrow2" src={require('@/assets/images/arrow3.png')} />
|
|
|
- </View>}
|
|
|
+
|
|
|
+ </View>} */}
|
|
|
|
|
|
|
|
|
</View>
|