feat: 心路历程功能提交。

This commit is contained in:
tianyongbao
2024-06-04 17:21:04 +08:00
parent 2b281fe098
commit 1d94d25209
19 changed files with 1902 additions and 25 deletions

View File

@@ -0,0 +1,41 @@
<template>
<view class="navbar">
<u-navbar
leftIconSize="40rpx"
leftIconColor="#333333"
:title="title"
:autoBack="true"
:border="border"
:titleStyle="titleStyle"
:placeholder="true"
>
</u-navbar>
</view>
</template>
<script>
export default {
props: {
title: {
type: String,
default: ''
},
border: {
type: Boolean,
default: false
}
},
data() {
return {
titleStyle: {
color: '#252525',
fontSize: '39rpx',
fontWeight: 'bold'
}
}
}
}
</script>
<style>
</style>