过滤高僧,法师文章内容背景色样式

This commit is contained in:
WindowBird 2025-09-18 16:21:16 +08:00
parent 5a340d574b
commit 909d6a8470
2 changed files with 529 additions and 495 deletions

View File

@ -5,19 +5,23 @@
<view class="container"> <view class="container">
<view class="header"> <view class="header">
<view class="content"> <view class="content">
<image class="monk-image" :src="monkInfo.imgUrl" mode="aspectFill"></image> <image
:src="monkInfo.imgUrl"
class="monk-image"
mode="aspectFill"
></image>
</view> </view>
</view> </view>
</view> </view>
<view class="body" :style="{ backgroundColor: CommonEnum.BASE_COLOR }"> <view :style="{ backgroundColor: CommonEnum.BASE_COLOR }" class="body">
<!-- 导航标签 --> <!-- 导航标签 -->
<view class="nav-tabs"> <view class="nav-tabs">
<view <view
v-for="(tab, index) in tabs" v-for="(tab, index) in tabs"
:key="index" :key="index"
class="nav-tab"
:class="{ active: activeTab === index }" :class="{ active: activeTab === index }"
class="nav-tab"
@click="switchTab(index)" @click="switchTab(index)"
> >
{{ tab.title }} {{ tab.title }}
@ -29,10 +33,10 @@
<view class="section-title"> <view class="section-title">
{{ tabs[activeTab].title }} {{ tabs[activeTab].title }}
</view> </view>
<view class="monk-basic" v-if="activeTab === 0"> <view v-if="activeTab === 0" class="monk-basic">
<text class="monk-name">{{ monkInfo.name }}</text> <text class="monk-name">{{ monkInfo.name }}</text>
<view class="duties-wrapper"> <view class="duties-wrapper">
<text class="monk-duties">{{ monkInfo.duties || '暂无记录' }}</text> <text class="monk-duties">{{ monkInfo.duties || "暂无记录" }}</text>
</view> </view>
</view> </view>
<view class="section-content" v-html="tabs[activeTab].content"></view> <view class="section-content" v-html="tabs[activeTab].content"></view>
@ -42,23 +46,23 @@
</template> </template>
<script> <script>
import CommonEnum from '../../enum/common' import CommonEnum from "../../enum/common";
import MonkEnum from '../../enum/monk' import MonkEnum from "../../enum/monk";
import { getMonkDetail } from '../../api/monk/monkDetail.js' import { getMonkDetail } from "../../api/monk/monkDetail.js";
import CustomNavbar from '../../components/custom-navbar/custom-navbar.vue' import CustomNavbar from "../../components/custom-navbar/custom-navbar.vue";
import BaseBackground from '../../components/base-background/base-background.vue' import BaseBackground from "../../components/base-background/base-background.vue";
export default { export default {
components: { components: {
CustomNavbar, CustomNavbar,
BaseBackground, BaseBackground,
}, },
computed: { computed: {
MonkEnum() { MonkEnum() {
return MonkEnum return MonkEnum;
}, },
CommonEnum() { CommonEnum() {
return CommonEnum return CommonEnum;
}, },
}, },
data() { data() {
@ -66,107 +70,120 @@
activeTab: 0, // activeTab: 0, //
tabs: [], tabs: [],
monkInfo: {}, monkInfo: {},
} };
}, },
onLoad() { onLoad() {
let id = uni.getStorageSync('abbotId') let id = uni.getStorageSync("abbotId");
// //
if (id) { if (id) {
this.fetchMonkDetail(id) this.fetchMonkDetail(id);
} }
}, },
methods: { methods: {
// //
switchTab(index) { switchTab(index) {
this.activeTab = index this.activeTab = index;
}, },
// //
async fetchMonkDetail(monkId) { async fetchMonkDetail(monkId) {
console.log('开始获取高僧详情, monkId:', monkId) console.log("开始获取高僧详情, monkId:", monkId);
try { try {
const res = await getMonkDetail(monkId) const res = await getMonkDetail(monkId);
console.log('高僧详情API响应:', res) console.log("高僧详情API响应:", res);
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
this.monkInfo = res.data this.monkInfo = res.data;
// //
this.updateTabsContent() this.updateTabsContent();
console.log('高僧详情加载完成:', this.monkInfo) console.log("高僧详情加载完成:", this.monkInfo);
} else { } else {
console.error('API响应异常:', res) console.error("API响应异常:", res);
uni.showToast({ uni.showToast({
title: res.msg || '获取详情失败', title: res.msg || "获取详情失败",
icon: 'none', icon: "none",
}) });
} }
} catch (error) { } catch (error) {
console.error('获取高僧详情失败:', error) console.error("获取高僧详情失败:", error);
uni.showToast({ uni.showToast({
title: '网络错误', title: "网络错误",
icon: 'none', icon: "none",
}) });
} }
}, },
// //
updateTabsContent() { updateTabsContent() {
this.tabs = [ this.tabs = [
{ {
title: '人物简介', title: "人物简介",
content: this.monkInfo.profile || '暂无简介', content:
this.monkInfo.profile.replace(/background-color:[^;"]*;?/g, "") ||
"暂无简介",
}, },
{ {
title: '人物经历', title: "人物经历",
content: this.monkInfo.experience || '暂无经历', content:
this.monkInfo.experience.replace(
/background-color:[^;"]*;?/g,
"",
) || "暂无经历",
}, },
{ {
title: '慈善事迹', title: "慈善事迹",
content: this.monkInfo.deeds || '暂无事迹', content:
this.monkInfo.deeds.replace(/background-color:[^;"]*;?/g, "") ||
"暂无事迹",
}, },
{ {
title: '寺庙贡献', title: "寺庙贡献",
content: this.monkInfo.contribution || '暂无贡献', content:
this.monkInfo.contribution.replace(
/background-color:[^;"]*;?/g,
"",
) || "暂无贡献",
}, },
] ];
}, },
}, },
} };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.page { .page {
width: 100%; width: 100%;
min-height: 100vh; min-height: 100vh;
background: transparent; /* 透明背景,让背景图片显示 */ background: transparent; /* 透明背景,让背景图片显示 */
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;
/* 移除padding-top因为导航栏已经处理了状态栏适配 */ /* 移除padding-top因为导航栏已经处理了状态栏适配 */
} }
.bg-image { .bg-image {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
z-index: -1; z-index: -1;
} }
.header { .header {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.body { .body {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
//background-color: v-bind('CommonEnum.BASE_COLOR'); /* 使 */ //background-color: v-bind('CommonEnum.BASE_COLOR'); /* 使 */
} }
.content {
.content {
padding: 20rpx; padding: 20rpx;
position: relative; position: relative;
z-index: 1; z-index: 1;
@ -174,9 +191,9 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.monk-image { .monk-image {
width: 660rpx; width: 660rpx;
height: 290rpx; height: 290rpx;
background: #d8d8d8; /* 灰色占位背景 */ background: #d8d8d8; /* 灰色占位背景 */
@ -185,9 +202,9 @@
margin: 20rpx auto; margin: 20rpx auto;
border: 20px darkviolet; /* 紫色边框 */ border: 20px darkviolet; /* 紫色边框 */
object-fit: cover; object-fit: cover;
} }
.monk-info { .monk-info {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 30rpx; padding: 30rpx;
@ -203,9 +220,9 @@
margin-right: 30rpx; margin-right: 30rpx;
border: 4rpx solid #695347; /* 深棕色边框 */ border: 4rpx solid #695347; /* 深棕色边框 */
} }
} }
.monk-basic { .monk-basic {
flex: 1; flex: 1;
.monk-name { .monk-name {
@ -229,9 +246,9 @@
padding: 8rpx 16rpx; padding: 8rpx 16rpx;
margin-top: 10rpx; margin-top: 10rpx;
} }
} }
.nav-tabs { .nav-tabs {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
//background-color: rgba(255, 255, 255, 0.95); /* */ //background-color: rgba(255, 255, 255, 0.95); /* */
@ -240,9 +257,9 @@
margin: 20rpx 0; margin: 20rpx 0;
//box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1); /* */ //box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1); /* */
backdrop-filter: blur(10rpx); backdrop-filter: blur(10rpx);
} }
.nav-tab { .nav-tab {
padding: 15rpx 38rpx; /* 增加左右内边距让tab之间有更多间距 */ padding: 15rpx 38rpx; /* 增加左右内边距让tab之间有更多间距 */
font-size: 28rpx; font-size: 28rpx;
color: #666; /* 灰色文字 */ color: #666; /* 灰色文字 */
@ -256,9 +273,9 @@
-webkit-touch-callout: none; -webkit-touch-callout: none;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
} }
.nav-tab.active { .nav-tab.active {
color: #695347; /* 深棕色文字(激活状态) */ color: #695347; /* 深棕色文字(激活状态) */
//background-color: rgba(105, 83, 71, 0.1); //background-color: rgba(105, 83, 71, 0.1);
font-weight: bold; font-weight: bold;
@ -267,10 +284,10 @@
-webkit-touch-callout: none; -webkit-touch-callout: none;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
} }
.nav-tab.active::after { .nav-tab.active::after {
content: ''; content: "";
position: absolute; position: absolute;
bottom: -2rpx; bottom: -2rpx;
left: 50%; left: 50%;
@ -279,9 +296,9 @@
height: 4rpx; height: 4rpx;
background-color: #695347; /* 深棕色下划线(激活状态) */ background-color: #695347; /* 深棕色下划线(激活状态) */
border-radius: 2rpx; border-radius: 2rpx;
} }
.detail-section { .detail-section {
//background-color: rgba(255, 255, 255, 0.95); /* */ //background-color: rgba(255, 255, 255, 0.95); /* */
border-radius: 16rpx; border-radius: 16rpx;
padding: 30rpx; padding: 30rpx;
@ -314,5 +331,5 @@
margin-bottom: 16rpx; margin-bottom: 16rpx;
} }
} }
} }
</style> </style>

View File

@ -5,19 +5,23 @@
<view class="container"> <view class="container">
<view class="header"> <view class="header">
<view class="content"> <view class="content">
<image class="monk-image" :src="monkInfo.imgUrl" mode="aspectFill"></image> <image
:src="monkInfo.imgUrl"
class="monk-image"
mode="aspectFill"
></image>
</view> </view>
</view> </view>
</view> </view>
<view class="body" :style="{ backgroundColor: CommonEnum.BASE_COLOR }"> <view :style="{ backgroundColor: CommonEnum.BASE_COLOR }" class="body">
<!-- 导航标签 --> <!-- 导航标签 -->
<view class="nav-tabs"> <view class="nav-tabs">
<view <view
v-for="(tab, index) in tabs" v-for="(tab, index) in tabs"
:key="index" :key="index"
class="nav-tab"
:class="{ active: activeTab === index }" :class="{ active: activeTab === index }"
class="nav-tab"
@click="switchTab(index)" @click="switchTab(index)"
> >
{{ tab.title }} {{ tab.title }}
@ -29,10 +33,10 @@
<view class="section-title"> <view class="section-title">
{{ tabs[activeTab].title }} {{ tabs[activeTab].title }}
</view> </view>
<view class="monk-basic" v-if="activeTab === 0"> <view v-if="activeTab === 0" class="monk-basic">
<text class="monk-name">{{ monkInfo.name }}</text> <text class="monk-name">{{ monkInfo.name }}</text>
<view class="duties-wrapper"> <view class="duties-wrapper">
<text class="monk-duties">{{ monkInfo.duties || '暂无记录' }}</text> <text class="monk-duties">{{ monkInfo.duties || "暂无记录" }}</text>
</view> </view>
</view> </view>
<view class="section-content" v-html="tabs[activeTab].content"></view> <view class="section-content" v-html="tabs[activeTab].content"></view>
@ -42,23 +46,23 @@
</template> </template>
<script> <script>
import CommonEnum from '../../enum/common' import CommonEnum from "../../enum/common";
import MonkEnum from '../../enum/monk' import MonkEnum from "../../enum/monk";
import { getMonkDetail } from '../../api/monk/monkDetail.js' import { getMonkDetail } from "../../api/monk/monkDetail.js";
import CustomNavbar from '../../components/custom-navbar/custom-navbar.vue' import CustomNavbar from "../../components/custom-navbar/custom-navbar.vue";
import BaseBackground from '../../components/base-background/base-background.vue' import BaseBackground from "../../components/base-background/base-background.vue";
export default { export default {
components: { components: {
CustomNavbar, CustomNavbar,
BaseBackground, BaseBackground,
}, },
computed: { computed: {
MonkEnum() { MonkEnum() {
return MonkEnum return MonkEnum;
}, },
CommonEnum() { CommonEnum() {
return CommonEnum return CommonEnum;
}, },
}, },
data() { data() {
@ -66,106 +70,119 @@
activeTab: 0, // activeTab: 0, //
tabs: [], tabs: [],
monkInfo: {}, monkInfo: {},
} };
}, },
onLoad(options) { onLoad(options) {
// //
if (options.id) { if (options.id) {
this.fetchMonkDetail(options.id) this.fetchMonkDetail(options.id);
} }
}, },
methods: { methods: {
// //
switchTab(index) { switchTab(index) {
this.activeTab = index this.activeTab = index;
}, },
// //
async fetchMonkDetail(monkId) { async fetchMonkDetail(monkId) {
console.log('开始获取高僧详情, monkId:', monkId) console.log("开始获取高僧详情, monkId:", monkId);
try { try {
const res = await getMonkDetail(monkId) const res = await getMonkDetail(monkId);
console.log('高僧详情API响应:', res) console.log("高僧详情API响应:", res);
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
this.monkInfo = res.data this.monkInfo = res.data;
// //
this.updateTabsContent() this.updateTabsContent();
console.log('高僧详情加载完成:', this.monkInfo) console.log("高僧详情加载完成:", this.monkInfo);
} else { } else {
console.error('API响应异常:', res) console.error("API响应异常:", res);
uni.showToast({ uni.showToast({
title: res.msg || '获取详情失败', title: res.msg || "获取详情失败",
icon: 'none', icon: "none",
}) });
} }
} catch (error) { } catch (error) {
console.error('获取高僧详情失败:', error) console.error("获取高僧详情失败:", error);
uni.showToast({ uni.showToast({
title: '网络错误', title: "网络错误",
icon: 'none', icon: "none",
}) });
} }
}, },
// //
updateTabsContent() { updateTabsContent() {
this.tabs = [ this.tabs = [
{ {
title: '人物简介', title: "人物简介",
content: this.monkInfo.profile || '暂无简介', content:
this.monkInfo.profile.replace(/background-color:[^;"]*;?/g, "") ||
"暂无简介",
}, },
{ {
title: '人物经历', title: "人物经历",
content: this.monkInfo.experience || '暂无经历', content:
this.monkInfo.experience.replace(
/background-color:[^;"]*;?/g,
"",
) || "暂无经历",
}, },
{ {
title: '慈善事迹', title: "慈善事迹",
content: this.monkInfo.deeds || '暂无事迹', content:
this.monkInfo.deeds.replace(/background-color:[^;"]*;?/g, "") ||
"暂无事迹",
}, },
{ {
title: '寺庙贡献', title: "寺庙贡献",
content: this.monkInfo.contribution || '暂无贡献', content:
this.monkInfo.contribution.replace(
/background-color:[^;"]*;?/g,
"",
) || "暂无贡献",
}, },
] ];
}, },
}, },
} };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.page { .page {
width: 100%; width: 100%;
min-height: 100vh; min-height: 100vh;
background: transparent; /* 透明背景,让背景图片显示 */ background: transparent; /* 透明背景,让背景图片显示 */
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;
/* 移除padding-top因为导航栏已经处理了状态栏适配 */ /* 移除padding-top因为导航栏已经处理了状态栏适配 */
} }
.bg-image { .bg-image {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
z-index: -1; z-index: -1;
} }
.header { .header {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.body { .body {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
//background-color: v-bind('CommonEnum.BASE_COLOR'); /* 使 */ //background-color: v-bind('CommonEnum.BASE_COLOR'); /* 使 */
} }
.content {
.content {
padding: 20rpx; padding: 20rpx;
position: relative; position: relative;
z-index: 1; z-index: 1;
@ -173,9 +190,9 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.monk-image { .monk-image {
width: 660rpx; width: 660rpx;
height: 290rpx; height: 290rpx;
background: #d8d8d8; /* 灰色占位背景 */ background: #d8d8d8; /* 灰色占位背景 */
@ -184,9 +201,9 @@
margin: 20rpx auto; margin: 20rpx auto;
border: 20px darkviolet; /* 紫色边框 */ border: 20px darkviolet; /* 紫色边框 */
object-fit: cover; object-fit: cover;
} }
.monk-info { .monk-info {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 30rpx; padding: 30rpx;
@ -202,9 +219,9 @@
margin-right: 30rpx; margin-right: 30rpx;
border: 4rpx solid #695347; /* 深棕色边框 */ border: 4rpx solid #695347; /* 深棕色边框 */
} }
} }
.monk-basic { .monk-basic {
flex: 1; flex: 1;
.monk-name { .monk-name {
@ -228,9 +245,9 @@
padding: 8rpx 16rpx; padding: 8rpx 16rpx;
margin-top: 10rpx; margin-top: 10rpx;
} }
} }
.nav-tabs { .nav-tabs {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
//background-color: rgba(255, 255, 255, 0.95); /* */ //background-color: rgba(255, 255, 255, 0.95); /* */
@ -239,9 +256,9 @@
margin: 20rpx 0; margin: 20rpx 0;
//box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1); /* */ //box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1); /* */
backdrop-filter: blur(10rpx); backdrop-filter: blur(10rpx);
} }
.nav-tab { .nav-tab {
padding: 15rpx 38rpx; /* 增加左右内边距让tab之间有更多间距 */ padding: 15rpx 38rpx; /* 增加左右内边距让tab之间有更多间距 */
font-size: 28rpx; font-size: 28rpx;
color: #666; /* 灰色文字 */ color: #666; /* 灰色文字 */
@ -255,9 +272,9 @@
-webkit-touch-callout: none; -webkit-touch-callout: none;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
} }
.nav-tab.active { .nav-tab.active {
color: #695347; /* 深棕色文字(激活状态) */ color: #695347; /* 深棕色文字(激活状态) */
//background-color: rgba(105, 83, 71, 0.1); //background-color: rgba(105, 83, 71, 0.1);
font-weight: bold; font-weight: bold;
@ -266,10 +283,10 @@
-webkit-touch-callout: none; -webkit-touch-callout: none;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
} }
.nav-tab.active::after { .nav-tab.active::after {
content: ''; content: "";
position: absolute; position: absolute;
bottom: -2rpx; bottom: -2rpx;
left: 50%; left: 50%;
@ -278,9 +295,9 @@
height: 4rpx; height: 4rpx;
background-color: #695347; /* 深棕色下划线(激活状态) */ background-color: #695347; /* 深棕色下划线(激活状态) */
border-radius: 2rpx; border-radius: 2rpx;
} }
.detail-section { .detail-section {
//background-color: rgba(255, 255, 255, 0.95); /* */ //background-color: rgba(255, 255, 255, 0.95); /* */
border-radius: 16rpx; border-radius: 16rpx;
padding: 30rpx; padding: 30rpx;
@ -313,5 +330,5 @@
margin-bottom: 16rpx; margin-bottom: 16rpx;
} }
} }
} }
</style> </style>