源文件
This commit is contained in:
27
jeepay-ui-uapp-merchant/App.vue
Normal file
27
jeepay-ui-uapp-merchant/App.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<!--
|
||||
|
||||
App.vue本身不是页面,这里不能编写视图元素,也就是没有<template>
|
||||
-->
|
||||
<script setup>
|
||||
import { ref, reactive } from 'vue';
|
||||
import appConfig from '@/config/appConfig.js';
|
||||
import { onLaunch } from '@dcloudio/uni-app';
|
||||
import { checkCurrVersion, getExtStoreId } from '@/commons/utils/versionManage.js';
|
||||
|
||||
onLaunch(() => {
|
||||
// console.log(uni.getExtConfigSync(),'uni.getExtConfigSync()')
|
||||
getExtStoreId();
|
||||
// appConfig.env.JEEPAY_BASE_URL = "https://b.rscygroup.com"
|
||||
|
||||
// 检查版本
|
||||
checkCurrVersion();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
/** 每个页面公共css */
|
||||
@import '@/commons/style/global.scss';
|
||||
|
||||
/** uni 组件样式覆盖 */
|
||||
@import '@/commons/style/uni-overwrite.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user