This commit is contained in:
Iruka 2025-01-03 17:25:17 +08:00
parent 1417615fcd
commit 84ee6fbbc9

View File

@ -1,43 +1,44 @@
<template>
<view>
<uni-card class="view-title" :title="title">
<text class="uni-body view-content">{{ content }}</text>
</uni-card>
</view>
<custom-nav-bar :left="true" :title="title" />
<view>
<uni-card class="view-title" :title="title">
<text class="uni-body view-content">{{ content }}</text>
</uni-card>
</view>
</template>
<script>
export default {
data() {
return {
title: '',
content: ''
}
},
onLoad(options) {
this.title = options.title
this.content = options.content
uni.setNavigationBarTitle({
title: options.title
})
}
}
export default {
data() {
return {
title: '',
content: ''
}
},
onLoad(options) {
this.title = options.title
this.content = options.content
// uni.setNavigationBarTitle({
// title: options.title
// })
}
}
</script>
<style scoped>
page {
background-color: #ffffff;
}
page {
background-color: #ffffff;
}
.view-title {
font-weight: bold;
}
.view-title {
font-weight: bold;
}
.view-content {
font-size: 26rpx;
padding: 12px 5px 0;
color: #333;
line-height: 24px;
font-weight: normal;
}
.view-content {
font-size: 26rpx;
padding: 12px 5px 0;
color: #333;
line-height: 24px;
font-weight: normal;
}
</style>