fix: 问题修复

This commit is contained in:
huxuejian 2026-03-20 09:57:08 +08:00
parent 24c6c7b2fe
commit 9e16db7f02
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,6 @@
<template> <template>
<view v-if="member" class="flex p-15 bg-white shadow-lg"> <full-page v-if="member">
<view class="flex p-15 bg-white shadow-lg">
<view class="flex-grow w-0 mr-10 leading-normal"> <view class="flex-grow w-0 mr-10 leading-normal">
<view class="flex items-center"> <view class="flex items-center">
<view class="mr-5 flex-shrink-0 text-xl text-dark font-semibold">{{ member.anotherName }}</view> <view class="mr-5 flex-shrink-0 text-xl text-dark font-semibold">{{ member.anotherName }}</view>
@ -62,7 +63,7 @@
<image :src="qrcode" :show-menu-by-longpress="true" class="h-full w-full"></image> <image :src="qrcode" :show-menu-by-longpress="true" class="h-full w-full"></image>
</view> </view>
</view> </view>
<view class="safe-bottom-padding"></view> </full-page>
</template> </template>
<script setup> <script setup>
import { computed, ref, watch } from 'vue'; import { computed, ref, watch } from 'vue';
@ -73,6 +74,8 @@ import useJob from '@/hooks/useJob';
import api from '@/utils/api'; import api from '@/utils/api';
import { toast } from '@/utils/widget'; import { toast } from '@/utils/widget';
import FullPage from '@/components/full-page.vue';
const corpId = ref(''); const corpId = ref('');
const userid = ref(''); const userid = ref('');
const showQrcode = ref(false); const showQrcode = ref(false);

View File

@ -1,4 +1,5 @@
<template> <template>
<full-page>
<view v-if="team" class="p-15"> <view v-if="team" class="p-15">
<view class="flex items-center"> <view class="flex items-center">
<view class="flex-shrink-0 mr-10"> <view class="flex-shrink-0 mr-10">
@ -69,8 +70,8 @@
</view> </view>
</view> </view>
</template> </template>
<view class="safe-bottom-padding"></view>
</view> </view>
</full-page>
</template> </template>
<script setup> <script setup>
import { computed, ref, watch } from 'vue'; import { computed, ref, watch } from 'vue';
@ -79,6 +80,7 @@ import useJob from '@/hooks/useJob';
import api from '@/utils/api'; import api from '@/utils/api';
import groupAvatar from '@/components/group-avatar.vue'; import groupAvatar from '@/components/group-avatar.vue';
import FullPage from '@/components/full-page.vue';
const corpId = ref(''); const corpId = ref('');
const teamId = ref(''); const teamId = ref('');