🐞 fix(ID1001372 【微信一键登录】--登录条款无法点击):
This commit is contained in:
parent
b2fb31f316
commit
68a19a8d8c
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user