This commit is contained in:
2025-03-26 19:10:41 +08:00
parent 9463635e03
commit 3c85d9e0e7
28 changed files with 907 additions and 147 deletions

View File

@@ -4,8 +4,10 @@ import BulletChat from "./BulletChat.vue";
import {ref} from "vue";
import AccountLogin from "./AccountLogin.vue";
import PhoneLogin from "./PhoneLogin.vue";
import WXOfficialAccount from "../../components/WXOfficialAccount.vue";
const currentTab = ref(0);
const showWX = ref(false);
const tabs = [
{
name: '手机号登录',
@@ -38,6 +40,8 @@ const tabs = [
<PhoneLogin v-if="currentTab === 0"></PhoneLogin>
<AccountLogin v-else></AccountLogin>
</view>
<w-x-official-account v-model:show="showWX"></w-x-official-account>
</template>
<style lang="scss" scoped>