37 lines
689 B
Vue
37 lines
689 B
Vue
|
<template class="content">
|
||
|
|
||
|
<view>12</view>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import ActiInfoList from '../common/activityList/index.vue'
|
||
|
import { onShow, onLoad ,onPullDownRefresh} from '@dcloudio/uni-app'
|
||
|
import { getDicts } from "@/api/system/dict/data"
|
||
|
import { ref, reactive, getCurrentInstance, toRefs } from 'vue'
|
||
|
import { useStore } from 'vuex';
|
||
|
const timeFormat = uni.$u.timeFormat;
|
||
|
const { proxy } = getCurrentInstance();
|
||
|
const newData = ref(new Date().getTime());
|
||
|
const iconConfig = proxy.iconConfig;
|
||
|
const tu21 = iconConfig.tu21;
|
||
|
|
||
|
|
||
|
onLoad((options) => {
|
||
|
|
||
|
|
||
|
|
||
|
})
|
||
|
|
||
|
onShow(() => {
|
||
|
console.log('Page onShow')
|
||
|
})
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
page{
|
||
|
background-color: #FBFBFB;
|
||
|
|
||
|
}
|
||
|
|
||
|
</style>
|