Files
dvcp_v2_wxcp_app/src/apps/AppWalkask/components/detail.vue
花有清香月有阴 4e996d2928 detail
2021-12-08 18:33:21 +08:00

37 lines
625 B
Vue

<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>