37 lines
625 B
Vue
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>
|