需要开发 IM

This commit is contained in:
cbb
2025-12-30 17:52:19 +08:00
parent 8fe2079446
commit d0cf491201
23 changed files with 515 additions and 61 deletions

View File

@@ -1,4 +1,6 @@
<script setup>
import { navigateTo } from '@/utils/router'
const isShow = defineModel({
type: Boolean,
default: false
@@ -20,9 +22,13 @@
@click="isShow = false"
></image>
<text class="text">我已阅读并同意</text>
<text class="on">用户权益</text>
<text class="on" @click="navigateTo('/pages/login/protocol')">
用户权益
</text>
<text class="text"></text>
<text class="on">隐私政策</text>
<text class="on" @click="navigateTo('/pages/login/regime')">
隐私政策
</text>
</view>
</template>