detail
This commit is contained in:
36
src/apps/AppWalkask/components/detail.vue
Normal file
36
src/apps/AppWalkask/components/detail.vue
Normal 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>
|
||||
Reference in New Issue
Block a user