pad-app/components/head-view/head-view.vue

43 lines
656 B
Vue
Raw Normal View History

2023-07-06 17:08:59 +08:00
<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;
2023-07-12 18:06:16 +08:00
border-bottom: 1px solid #999999;
2023-07-06 17:08:59 +08:00
height: 40px;
line-height: 40px;
font-size: 18px;
text-align: center;
.icon {
position: absolute;
top: 3px;
left: 10px;
}
}
2023-07-12 18:06:16 +08:00
</style>