2025-07-30 16:14:56 +08:00
|
|
|
|
<template>
|
2025-07-31 11:09:02 +08:00
|
|
|
|
<view class="page">
|
2025-07-31 09:27:55 +08:00
|
|
|
|
<custom-navbar title="高僧详情" />
|
2025-07-31 14:42:22 +08:00
|
|
|
|
<base-background />
|
2025-07-30 16:37:13 +08:00
|
|
|
|
<view class="container">
|
|
|
|
|
|
<view class="header">
|
|
|
|
|
|
<view class="content">
|
2025-09-18 16:21:16 +08:00
|
|
|
|
<image
|
|
|
|
|
|
:src="monkInfo.imgUrl"
|
|
|
|
|
|
class="monk-image"
|
|
|
|
|
|
mode="aspectFill"
|
|
|
|
|
|
></image>
|
2025-07-30 16:37:13 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
<view :style="{ backgroundColor: CommonEnum.BASE_COLOR }" class="body">
|
2025-07-31 11:09:02 +08:00
|
|
|
|
<!-- 导航标签 -->
|
|
|
|
|
|
<view class="nav-tabs">
|
|
|
|
|
|
<view
|
2025-08-14 11:22:53 +08:00
|
|
|
|
v-for="(tab, index) in tabs"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:class="{ active: activeTab === index }"
|
2025-09-18 16:21:16 +08:00
|
|
|
|
class="nav-tab"
|
2025-08-14 11:22:53 +08:00
|
|
|
|
@click="switchTab(index)"
|
2025-07-31 11:09:02 +08:00
|
|
|
|
>
|
|
|
|
|
|
{{ tab.title }}
|
|
|
|
|
|
</view>
|
2025-07-30 16:37:13 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-07-31 11:09:02 +08:00
|
|
|
|
<!-- 内容区域 -->
|
|
|
|
|
|
<view class="detail-section">
|
|
|
|
|
|
<view class="section-title">
|
|
|
|
|
|
{{ tabs[activeTab].title }}
|
|
|
|
|
|
</view>
|
2025-09-18 16:21:16 +08:00
|
|
|
|
<view v-if="activeTab === 0" class="monk-basic">
|
2025-08-14 11:22:53 +08:00
|
|
|
|
<text class="monk-name">{{ monkInfo.name }}</text>
|
2025-07-31 11:09:02 +08:00
|
|
|
|
<view class="duties-wrapper">
|
2025-09-18 16:21:16 +08:00
|
|
|
|
<text class="monk-duties">{{ monkInfo.duties || "暂无记录" }}</text>
|
2025-07-31 11:09:02 +08:00
|
|
|
|
</view>
|
2025-07-30 16:37:13 +08:00
|
|
|
|
</view>
|
2025-07-31 11:09:02 +08:00
|
|
|
|
<view class="section-content" v-html="tabs[activeTab].content"></view>
|
2025-07-30 16:37:13 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-30 16:14:56 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-09-18 16:21:16 +08:00
|
|
|
|
import CommonEnum from "../../enum/common";
|
|
|
|
|
|
import MonkEnum from "../../enum/monk";
|
|
|
|
|
|
import { getMonkDetail } from "../../api/monk/monkDetail.js";
|
|
|
|
|
|
import CustomNavbar from "../../components/custom-navbar/custom-navbar.vue";
|
|
|
|
|
|
import BaseBackground from "../../components/base-background/base-background.vue";
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
components: {
|
|
|
|
|
|
CustomNavbar,
|
|
|
|
|
|
BaseBackground,
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
MonkEnum() {
|
|
|
|
|
|
return MonkEnum;
|
2025-07-30 16:37:13 +08:00
|
|
|
|
},
|
2025-09-18 16:21:16 +08:00
|
|
|
|
CommonEnum() {
|
|
|
|
|
|
return CommonEnum;
|
2025-08-14 11:22:53 +08:00
|
|
|
|
},
|
2025-09-18 16:21:16 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
activeTab: 0, // 当前激活的标签索引
|
|
|
|
|
|
tabs: [],
|
|
|
|
|
|
monkInfo: {},
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
|
// 获取传递的参数
|
|
|
|
|
|
if (options.id) {
|
|
|
|
|
|
this.fetchMonkDetail(options.id);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 切换标签
|
|
|
|
|
|
switchTab(index) {
|
|
|
|
|
|
this.activeTab = index;
|
2025-07-30 16:37:13 +08:00
|
|
|
|
},
|
2025-09-18 16:21:16 +08:00
|
|
|
|
// 获取高僧详情
|
|
|
|
|
|
async fetchMonkDetail(monkId) {
|
|
|
|
|
|
console.log("开始获取高僧详情, monkId:", monkId);
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const res = await getMonkDetail(monkId);
|
|
|
|
|
|
console.log("高僧详情API响应:", res);
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
if (res.code === 200 && res.data) {
|
|
|
|
|
|
this.monkInfo = res.data;
|
|
|
|
|
|
// 更新标签内容
|
|
|
|
|
|
this.updateTabsContent();
|
|
|
|
|
|
console.log("高僧详情加载完成:", this.monkInfo);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
console.error("API响应异常:", res);
|
2025-08-14 11:22:53 +08:00
|
|
|
|
uni.showToast({
|
2025-09-18 16:21:16 +08:00
|
|
|
|
title: res.msg || "获取详情失败",
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
2025-07-30 16:37:13 +08:00
|
|
|
|
}
|
2025-09-18 16:21:16 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("获取高僧详情失败:", error);
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: "网络错误",
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2025-08-14 11:22:53 +08:00
|
|
|
|
},
|
2025-09-18 16:21:16 +08:00
|
|
|
|
// 更新标签内容
|
|
|
|
|
|
updateTabsContent() {
|
|
|
|
|
|
this.tabs = [
|
|
|
|
|
|
{
|
|
|
|
|
|
title: "人物简介",
|
|
|
|
|
|
content:
|
|
|
|
|
|
this.monkInfo.profile.replace(/background-color:[^;"]*;?/g, "") ||
|
|
|
|
|
|
"暂无简介",
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: "人物经历",
|
|
|
|
|
|
content:
|
|
|
|
|
|
this.monkInfo.experience.replace(
|
|
|
|
|
|
/background-color:[^;"]*;?/g,
|
|
|
|
|
|
"",
|
|
|
|
|
|
) || "暂无经历",
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: "慈善事迹",
|
|
|
|
|
|
content:
|
|
|
|
|
|
this.monkInfo.deeds.replace(/background-color:[^;"]*;?/g, "") ||
|
|
|
|
|
|
"暂无事迹",
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: "寺庙贡献",
|
|
|
|
|
|
content:
|
|
|
|
|
|
this.monkInfo.contribution.replace(
|
|
|
|
|
|
/background-color:[^;"]*;?/g,
|
|
|
|
|
|
"",
|
|
|
|
|
|
) || "暂无贡献",
|
|
|
|
|
|
},
|
|
|
|
|
|
];
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
2025-07-30 16:14:56 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.page {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
background: transparent; /* 透明背景,让背景图片显示 */
|
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
|
/* 移除padding-top,因为导航栏已经处理了状态栏适配 */
|
|
|
|
|
|
}
|
2025-07-31 14:42:22 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.bg-image {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.header {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.body {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
//background-color: v-bind('CommonEnum.BASE_COLOR'); /* 使用枚举中的基调颜色 */
|
|
|
|
|
|
}
|
2025-07-30 16:37:13 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.content {
|
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
2025-07-30 16:37:13 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.monk-image {
|
|
|
|
|
|
width: 660rpx;
|
|
|
|
|
|
height: 290rpx;
|
|
|
|
|
|
background: #d8d8d8; /* 灰色占位背景 */
|
|
|
|
|
|
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin: 20rpx auto;
|
|
|
|
|
|
border: 20px darkviolet; /* 紫色边框 */
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
2025-07-30 16:37:13 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.monk-info {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
|
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
backdrop-filter: blur(10rpx);
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.monk-avatar {
|
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
|
border-radius: 60rpx;
|
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
|
border: 4rpx solid #695347; /* 深棕色边框 */
|
2025-07-30 16:14:56 +08:00
|
|
|
|
}
|
2025-09-18 16:21:16 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.monk-basic {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
|
|
.monk-name {
|
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #695347; /* 深棕色文字 */
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin-bottom: 10rpx;
|
2025-08-14 11:22:53 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.monk-duties {
|
2025-08-14 11:22:53 +08:00
|
|
|
|
font-size: 28rpx;
|
2025-09-18 16:21:16 +08:00
|
|
|
|
color: #8b7355; /* 中棕色文字 */
|
|
|
|
|
|
display: block;
|
2025-08-14 11:22:53 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.duties-wrapper {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
background-color: #f5f5f5; /* 浅灰色背景 */
|
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
|
padding: 8rpx 16rpx;
|
|
|
|
|
|
margin-top: 10rpx;
|
2025-08-14 11:22:53 +08:00
|
|
|
|
}
|
2025-09-18 16:21:16 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.nav-tabs {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
//background-color: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
|
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
|
padding: 10rpx 0; /* 增加左右内边距,让tab之间有更多空间 */
|
|
|
|
|
|
margin: 20rpx 0;
|
|
|
|
|
|
//box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1); /* 黑色阴影 */
|
|
|
|
|
|
backdrop-filter: blur(10rpx);
|
|
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.nav-tab {
|
|
|
|
|
|
padding: 15rpx 38rpx; /* 增加左右内边距,让tab之间有更多间距 */
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #666; /* 灰色文字 */
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
/* 移除点击反馈效果 */
|
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.nav-tab.active {
|
|
|
|
|
|
color: #695347; /* 深棕色文字(激活状态) */
|
|
|
|
|
|
//background-color: rgba(105, 83, 71, 0.1);
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
/* 移除点击反馈效果 */
|
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
2025-08-14 11:22:53 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.nav-tab.active::after {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
bottom: -2rpx;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
width: 60%;
|
|
|
|
|
|
height: 4rpx;
|
|
|
|
|
|
background-color: #695347; /* 深棕色下划线(激活状态) */
|
|
|
|
|
|
border-radius: 2rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.detail-section {
|
|
|
|
|
|
//background-color: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
|
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
backdrop-filter: blur(10rpx);
|
|
|
|
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #695347; /* 深棕色文字 */
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
border-left: 6rpx solid #695347; /* 深棕色左边框 */
|
|
|
|
|
|
padding-left: 20rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
.title-icon {
|
|
|
|
|
|
width: 24rpx;
|
|
|
|
|
|
height: 24rpx;
|
|
|
|
|
|
margin-right: 10rpx;
|
2025-07-30 16:14:56 +08:00
|
|
|
|
}
|
2025-09-18 16:21:16 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
.section-content {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #666; /* 灰色文字 */
|
|
|
|
|
|
line-height: 1.6;
|
2025-07-30 16:14:56 +08:00
|
|
|
|
|
2025-09-18 16:21:16 +08:00
|
|
|
|
p {
|
|
|
|
|
|
margin-bottom: 16rpx;
|
2025-07-30 16:14:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-18 16:21:16 +08:00
|
|
|
|
}
|
2025-07-30 16:14:56 +08:00
|
|
|
|
</style>
|