🐞 fix(ID1001372 【微信一键登录】--登录条款无法点击):

This commit is contained in:
czm 2023-02-28 14:38:57 +08:00
parent b2fb31f316
commit 68a19a8d8c

View File

@ -1,6 +1,7 @@
import { Text, View } from '@tarojs/components' import { Text, View } from '@tarojs/components'
import styles from './index.module.scss' import styles from './index.module.scss'
import Popup from '@/components/popup' import Popup from '@/components/popup'
import { goLink } from '@/common/common'
export interface Param { export interface Param {
show: boolean show: boolean
@ -11,7 +12,7 @@ export default (props: Param) => {
return <Popup show={props.show} showTitle={false} onClose={() => props.onClose?.()}> return <Popup show={props.show} showTitle={false} onClose={() => props.onClose?.()}>
<View className={styles.remind_con}> <View className={styles.remind_con}>
<View className={styles.title}>请阅读并同意以下条款</View> <View className={styles.title}>请阅读并同意以下条款</View>
<View className={styles.regulations_text}><Text>《面料优选服务条例》</Text>和<Text>《面料优选隐私政策》</Text></View> <View className={styles.regulations_text}><Text onClick={() => goLink('/pages/clauseDetail/index', { type: 'clause' })}>《面料优选服务条例》</Text>和<Text onClick={() => goLink('/pages/clauseDetail/index', { type: 'policy' })}>《面料优选隐私政策》</Text></View>
<View className={styles.btn_con} onClick={() => props.onSubmit?.()}> <View className={styles.btn_con} onClick={() => props.onSubmit?.()}>
<Text>同意并继续</Text> <Text>同意并继续</Text>
</View> </View>