This commit is contained in:
dev
2025-10-28 09:25:46 +08:00
commit 9431e325df
1089 changed files with 143917 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<s-layout navbar="normal" onShareAppMessage>
</s-layout>
</template>
<script setup>
import tenantId from '@/sheep/config/tenantId';
onLoad(async () => {
uni.showLoading({
title: '加载中...',
mask: true
})
Promise.all([tenantId.getTenantByWebsite(), sheep.$store('user').getLocation()])
.then(() => {
// 加载Shopro底层依赖
ShoproInit();
sheep.$store('dict').getDictData()
uni.hideLoading()
uni.switchTab({
url: '/pages/index/index'
})
}, err => {
uni.hideLoading()
console.log(err)
})
})
</script>