58 lines
910 B
Vue
58 lines
910 B
Vue
<template>
|
|
<view class="container" >
|
|
<!-- 自定义头部导航栏 -->
|
|
<!-- <ZdyNavbar :title="data.navbar.title" :bgColor="data.navbar.bgColor" :isAdd="true" :isSearch="$system=='Android'">
|
|
</ZdyNavbar> -->
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 自定义头部
|
|
// import ZdyNavbar from "@/components/navbar/navbar.vue"
|
|
|
|
import {
|
|
ref,
|
|
reactive,
|
|
watch,
|
|
nextTick,
|
|
getCurrentInstance
|
|
} from "vue";
|
|
import {
|
|
onLoad,
|
|
onShow,
|
|
onReady,
|
|
onPullDownRefresh,
|
|
onReachBottom
|
|
} from "@dcloudio/uni-app";
|
|
const {
|
|
appContext,
|
|
proxy
|
|
} = getCurrentInstance();
|
|
const data = reactive({
|
|
navbar: {
|
|
title: "微信",
|
|
bgColor: '#EDEDED',
|
|
}
|
|
})
|
|
onLoad((option) => {
|
|
})
|
|
onReady(()=>{
|
|
|
|
})
|
|
onShow(() => {})
|
|
onPullDownRefresh(() => {
|
|
setTimeout(() => {
|
|
uni.stopPullDownRefresh();
|
|
}, 1000);
|
|
})
|
|
onReachBottom(() => {
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|