This commit is contained in:
cansnow
2025-11-27 03:55:38 +08:00
parent 1626f0c52a
commit 198c3dd4a5
24 changed files with 2043 additions and 201 deletions
+31
View File
@@ -0,0 +1,31 @@
<template>
<div></div>
</template>
<script>
import util from "@/util";
import {mapState,mapMutations} from 'vuex';
const appinfo = uni.getAppBaseInfo();
export default {
name: 'Base',
data(){
return {
appinfo:appinfo,
userInfo :this.$store.getters.storeSelfInfo,
isDebug : process.env.NODE_ENV == 'development',
}
},
// computed: {
// ...mapState(['storeSelfInfo']),
// ...mapState(['config'])
// },
methods:util,
filters:{
toDate:util.toDate,
cdn:util.cdn,
formatAmount:util.formatAmount
}
};
</script>
<style></style>