65 lines
1.0 KiB
Vue
65 lines
1.0 KiB
Vue
<template>
|
|
<view class="container">
|
|
<!-- 自定义头部导航栏 -->
|
|
<ZdyNavbar :title="data.navbar.title"
|
|
:bgColor="data.navbar.bgColor" :isBack="true" />
|
|
<!-- 通话记录列表 -->
|
|
<callList type="ios"></callList>
|
|
<callList type="xiaomi"></callList>
|
|
<callList type="oppo"></callList>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 自定义头部
|
|
import ZdyNavbar from "@/components/nav-bar/nav-bar.vue"
|
|
import callList from "@/components/call-log/list/list.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> |