🐞 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 styles from './index.module.scss'
import Popup from '@/components/popup'
import { goLink } from '@/common/common'
export interface Param {
show: boolean
@ -11,7 +12,7 @@ export default (props: Param) => {
return <Popup show={props.show} showTitle={false} onClose={() => props.onClose?.()}>
<View className={styles.remind_con}>
<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?.()}>
<Text></Text>
</View>