移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.3 KiB

2 months ago
<template>
<view class="container">
<view class="fit-content"></view>
<view class="operation" v-if="isCustom">
<slot></slot>
</view>
<view v-else>
<view class="operation" v-if="isTab">
<text class="title">{{ title }}</text>
</view>
<view class="operation wd-flex wd-flex-row wd-items-center" style="gap: 10px" v-else @tap="goback()">
<view class="icon-box">
<u-icon name="arrow-left" size="12"></u-icon>
</view>
<text class="title wd-text-16">{{ title }}</text>
</view>
</view>
</view>
2 months ago
</template>
<script>
export default {
name: 's-header',
data() {
return {}
},
props: {
title: String,
isTab: {
type: Boolean,
default: false
},
isCustom: {
type: Boolean,
default: false
}
},
methods: {
goback() {
uni.switchTab({
url: '/pages/owner'
})
}
}
2 months ago
}
</script>
<style lang="scss" scoped>
.container {
background-color: #fff;
box-shadow: 0 1px 2px 1px $cs-shadow-color;
.fit-content {
height: 6vh;
}
.operation {
padding: 5px 10px;
padding-bottom: 15px;
.title {
color: #000;
}
.icon-box {
padding: 5px;
border-radius: 50%;
box-shadow: 0 0 4px 2px $cs-shadow-color;
}
}
2 months ago
}
</style>