43 lines
620 B
Vue
43 lines
620 B
Vue
|
<template>
|
||
|
<view class="headInfo">
|
||
|
<uni-icons class="icon" type="back" size="21" @click="toBack" />
|
||
|
{{title}}
|
||
|
<uni-icons type="bottom" size="18" />
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "headView",
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
toBack() {
|
||
|
uni.navigateBack('-1')
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.headInfo {
|
||
|
position: relative;
|
||
|
background-color: #fff;
|
||
|
height: 40px;
|
||
|
line-height: 40px;
|
||
|
font-size: 18px;
|
||
|
text-align: center;
|
||
|
|
||
|
.icon {
|
||
|
position: absolute;
|
||
|
top: 3px;
|
||
|
left: 10px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</style>
|