Merge branch 'dev_vite' of ssh://18.167.251.121:10002/aidlab/aida_front into dev_vite

This commit is contained in:
X1627315083@163.com
2026-04-27 09:39:29 +08:00
3 changed files with 6 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
VITE_USER_NODE_ENV = 'development'
VITE_USER_NODE_ENV = 'development_cloud'
# VITE_APP_BASE_URL = 'https://aida.com.hk/test'
# VITE_APP_BASE_URL = 'http://18.167.251.121:10088'
# VITE_APP_BASE_URL = 'https://api.aida.com.hk'

View File

@@ -30,9 +30,9 @@ const seller: Module<Seller, RootState> = {
actions: {
get_isSeller({ commit }) {
Https.axiosGet(Https.httpUrls.checkSellerDesigner).then(rv => {
commit('set_isSeller', !!rv)
})
// Https.axiosGet(Https.httpUrls.checkSellerDesigner).then(rv => {
// commit('set_isSeller', !!rv)
// })
},
}
}

View File

@@ -18,7 +18,8 @@
</template>
<script setup>
import { ref, computed } from "vue"
import { Https } from "@/tool/https"
import { ref, computed,onMounted,onUnmounted } from "vue"
import { useRoute, useRouter } from "vue-router"
import toolTipBox from "./toolTipBox.vue"
import myEvent from "@/tool/myEvents.js"