alipay-emulator/pages/bill/add-bill/add-bill.vue

48 lines
665 B
Vue

<template>
<view style="overflow: hidden;height: 100vh;">
<navBar isRightButton :title="data.navBar.title" :bgColor="data.navBar.bgColor" @right-click="onRightClick">
</navBar>
</view>
</template>
<script setup>
import navBar from '@/components/nav-bar/nav-bar.vue'
import {
reactive,
toRefs,
ref,
onMounted
} from 'vue'
import {
onShow,
} from '@dcloudio/uni-app'
const data = reactive({
navBar: {
title: '新增账单',
bgColor: '#F5F5F5',
},
})
let {
} = toRefs(data)
onShow(() => {
})
onMounted(() => {
})
</script>
<style>
@import "@/common/main.css";
page {
background-color: #F5F5F5;
}
</style>
<style lang="less" scoped></style>