feat: 抽屉中的数据加载问题优化

This commit is contained in:
zoujing 2025-09-16 21:07:54 +08:00
parent 69fe1b80c8
commit cead891e69

View File

@ -36,8 +36,7 @@
</template>
<script setup>
import { ref } from "vue";
import { onShow } from "@dcloudio/uni-app";
import { ref, onMounted } from "vue";
import { getLoginUserPhone } from "@/request/api/LoginApi";
//
@ -60,8 +59,8 @@ const menuList = ref([
{ label: "订阅消息", type: "action", action: "subscribeMessage" },
]);
// -
onShow(() => {
//
onMounted(() => {
getLoginUserPhoneInfo();
});