This commit is contained in:
花有清香月有阴
2021-12-08 18:33:21 +08:00
parent a97e35644e
commit 4e996d2928
3 changed files with 53 additions and 6 deletions

View File

@@ -0,0 +1,36 @@
<template>
<div class="detail">
<u-navbar title="" back-icon-color="#fff" title-color="#fff" title-width="300" title-size="36" :background="backgroundNavbar"> </u-navbar>
<div>detail</div>
<AiBack></AiBack>
</div>
</template>
<script>
import AiBack from '../../../components/AiBack.vue'
export default {
name: 'detail',
components: { AiBack },
props: {},
data() {
return {
backgroundNavbar: {
backgroundColor: '#3975C6',
},
}
},
computed: {},
onLoad() {},
onShow() {},
methods: {},
}
</script>
<style lang="scss" scoped>
.detail {
height: 100%;
}
</style>