| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <template>
- <view class="page">
- <!-- 引入FontAwesome -->
- <view>
- <link rel="stylesheet"
- href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
- </view>
- <!-- 文章头图区域 -->
- <view class="topUser">
- <image :src="home_image" class="home_image" mode="aspectFill"></image>
- <!-- 图片指示器 -->
- <view class="image-indicator" v-if="image_list.length > 1">
- <text>{{ selImg + 1 }}/{{ image_list.length }}</text>
- </view>
- <!-- 音乐类型时显示歌词 -->
- <view class="lyrics-overlay" v-if="articleInfo.task_type == 2">
- <text class="lyrics-text">{{ articleInfo.lyrics }}</text>
- </view>
- <!-- 音乐类型时显示播放按钮 -->
- <view class="play-button" v-if="articleInfo.task_type == 2 && articleInfo.result_audio" @click="toggleAudio">
- <text class="fa" :class="isPlaying ? 'fa-pause' : 'fa-play'"></text>
- </view>
- <!-- 缩略图列表 -->
- <view class="list">
- <view class="img" :class="selImg==index?'active':''" v-for="(item,index) in image_list" :key="index"
- @click="selPhoto(item,index)">
- <image :src="item" mode="aspectFill"></image>
- </view>
- </view>
- </view>
- <!-- 音频元素 -->
- <audio id="audioPlayer" :src="articleInfo.result_audio" style="display:none;"></audio>
- <!-- 文章内容区域 -->
- <view class="body">
- <!-- 文章标题与元信息 -->
- <view class="article-header">
- <view class="title">
- {{ articleInfo.title || '暂无标题' }}
- </view>
- <view class="meta-info">
- <view class="meta-item">
- <text class="fa fa-calendar"></text>
- <text class="meta-text">{{ articleInfo.create_time || '暂无时间' }}</text>
- </view>
- <view class="meta-item">
- <text class="fa fa-eye"></text>
- <text class="meta-text">{{ articleInfo.num_view || 0 }}次阅读</text>
- </view>
- <view class="meta-item" v-if="articleInfo.author">
- <text class="fa fa-user"></text>
- <text class="meta-text">{{ articleInfo.author }}</text>
- </view>
- </view>
- </view>
- <!-- 内容分隔线 -->
- <view class="divider"></view>
- <!-- 文章内容 -->
- <!-- <view class="article-content" v-if="articleInfo.type == 'user'">
- <view class="content">{{ articleInfo.content || '暂无内容' }}</view>
- </view> -->
- <view class="article-content">
- <view class="content">
- <rich-text :nodes="content" style="font-size: 14px;"></rich-text>
- </view>
- </view>
- <!-- 文章底部区域 -->
- <view class="article-footer">
- <view class="action-bar">
- <view class="action-item" @tap="likeArticle">
- <text class="fa" :class="articleInfo.is_like ? 'fa-thumbs-up liked' : 'fa-thumbs-o-up'"></text>
- <text class="action-text">{{ articleInfo.like_count || 0 }}</text>
- </view>
- <view class="action-item" @tap="openComment">
- <text class="fa fa-comment-o"></text>
- <text class="action-text">{{ tableTotal || 0 }}</text>
- </view>
- <view class="action-item" @tap="shareArticle">
- <text class="fa fa-share-alt"></text>
- <text class="action-text">分享</text>
- </view>
- </view>
- </view>
- <!-- 空白占位 -->
- <view class="list_info">
- <view class="blankHeight"></view>
- </view>
- </view>
- <!-- <view class="btn_submit" @click="chatTA()">
- <image class="icon" src="../../static/icon/icon_chat_white.png" mode="widthFix"></image>
- 私聊
- </view> -->
- <view class="thread2"></view>
- <view class="thread2"></view>
- <previewImage ref="previewImage" :opacity="0.8" :circular="true" :imgs="imgs" :descs="descs"></previewImage>
- <!-- 评论区域 -->
- <CommentSection ref="commentSection" :myInfo="myInfo" :userInfo="userInfo" :articleId="arcID"></CommentSection>
-
- <view class="thread2"></view>
- </view>
- </template>
- <script>
- import htmlParser from '../../common/html-parser'
- import previewImage from '@/components/kxj-previewImage/kxj-previewImage.vue'; //引用插件
- import CommentSection from '@/components/CommentSection/CommentSection.vue';
- function parseImgs(nodes) {
- nodes.forEach(node => {
- if (
- node.name === 'img' &&
- node.attrs &&
- node.attrs['data-img-size-val']
- ) {
- const sizes = node.attrs['data-img-size-val'].split(',')
- const width = uni.upx2px(720 * 0.9)
- const height = parseInt(width * (sizes[1] / sizes[0]))
- node.attrs.style = `width:${width};height:${height};`
- }
- if (Array.isArray(node.children)) {
- parseImgs(node.children)
- }
- })
- return nodes
- }
- export default {
- components: {
- previewImage,
- CommentSection,
- },
- data() {
- return {
- title: '',
- arcID: 0,
- selImg: 0,
- home_image: '',
- myinfo: {},
- tag_list: [],
- image_list: [],
- imgs: [],
- descs: [],
- list_wish: [],
- content: '',
- // 添加文章信息字段
- articleInfo: {
- title: '',
- content: '',
- create_time: '',
- images: '',
- view_count: 0,
- author: '',
- like_count: 0,
- is_like: false
- },
- myInfo: {
- user_id: 1, // 用户id
- user_name: "cc", // 用户名
- user_avatar: "https://img0.baidu.com/it/u=2836960144,3650263035&fm=253&fmt=auto&app=138&f=JPEG?w=474&h=474", // 用户头像地址
- },
- // 文章作者信息(提示: 一般来自localstorage, 如果是实时获取的话, 那么获取到数据后再v-if显示评论组件)
- userInfo: {
- user_id: 2, // 用户id
- user_name: "ikun", // 用户名
- user_avatar: "https://pic1.zhimg.com/80/v2-a79071a705f55c5d88f6c74e6111fe84_720w.webp", // 用户头像地址
- },
- deleteMode: "all", //删除模式
- // 评论总数
- tableTotal: 4,
- // 评论表
- tableData: [],
- isPlaying: false, // 添加播放状态
- audioPlayer: null, // 添加音频播放器实例
- }
- },
- onLoad(parms) {
- let self = this;
- this.arcID = parms.id || 393;
- },
- onShow() {
- uni.$emit('check_update');
- this.loadData();
- this.$nextTick(() => {
- if (this.$refs.commentSection) {
- this.$refs.commentSection.loadCommentData();
- }
- });
- },
- onReady() {
- // 初始化音频播放器
- this.audioPlayer = uni.createInnerAudioContext();
- this.audioPlayer.onEnded(() => {
- this.isPlaying = false;
- });
- },
- onUnload() {
- // 页面卸载时停止音频播放
- if (this.audioPlayer) {
- this.audioPlayer.stop();
- this.audioPlayer.destroy();
- }
- },
- methods: {
- onLinqu(item) {
- uni.navigateTo({
- url: '/pages/my/wishHelp?id=' + item.myid,
- })
- },
- selPhoto(item, sel) {
- this.selImg = sel;
- this.home_image = this.image_list[sel];
- },
- toArr(imgs) {
- let arr = imgs.split("|");
- return arr;
- },
- previewOpen(imgs1, index) {
- this.imgs = imgs1.split("|");
- setTimeout(() => this.$refs.previewImage.open(index), 0)
- // 传入当前选中的图片地址或序号
- return; //如需测试和uni原生预览差别可注释这两行
- },
- loadData() {
- uni.request({
- url: this.$apiHost + '/Work/getinfo',
- data: {
- uuid: getApp().globalData.uuid,
- id: this.arcID
- },
- header: {
- "content-type": "application/json",
- 'sign': getApp().globalData.headerSign
- },
- success: (res) => {
- console.log("文章信息:", res.data);
- if (res.data.success === "yes") {
- // 更新文章信息
- this.articleInfo = res.data.data;
- this.content = res.data.data.content;
- this.home_image = res.data.data.images;
- } else {
- uni.showToast({
- title: '获取信息失败',
- icon: 'none'
- });
- }
- },
- complete: (com) => {
- // uni.hideLoading();
- },
- fail: (e) => {
- console.log("请求失败:", e);
- uni.showToast({
- title: '网络请求失败',
- icon: 'none'
- });
- }
- });
- },
- // 唤起新评论弹框
- openComment() {
- if (this.$refs.commentSection) {
- this.$refs.commentSection.openComment();
- }
- },
- // 文章点赞
- likeArticle() {
- uni.request({
- url: this.$apiHost + '/Work/zanTA',
- data: {
- uuid: getApp().globalData.uuid,
- id: this.arcID
- },
- header: {
- "content-type": "application/json",
- 'sign': getApp().globalData.headerSign
- },
- success: (res) => {
- console.log("点赞结果:", res.data);
- if (res.data.success === "yes") {
- // 更新点赞状态
- if (!this.articleInfo.is_like) {
- this.articleInfo.like_count = (this.articleInfo.like_count || 0) + 1;
- this.articleInfo.is_like = true;
- uni.showToast({
- title: '点赞成功',
- icon: 'none'
- });
- } else {
- this.articleInfo.like_count = (this.articleInfo.like_count || 0) - 1;
- this.articleInfo.is_like = false;
- uni.showToast({
- title: res.data.str,
- icon: 'none'
- });
- }
- } else {
- uni.showToast({
- title: res.data.str,
- icon: 'none'
- });
- }
- },
- fail: (e) => {
- console.log("点赞失败:", e);
- uni.showToast({
- title: '网络请求失败',
- icon: 'none'
- });
- }
- });
- },
- // 分享文章
- shareArticle() {
- // 如果在微信小程序环境
- if (uni.getSystemInfoSync().platform === 'mp-weixin') {
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- });
- } else {
- // 其他环境,如APP
- uni.share({
- provider: "weixin",
- scene: "WXSceneSession",
- type: 0,
- title: this.articleInfo.title,
- summary: this.articleInfo.content.substring(0, 40) + "...",
- imageUrl: this.home_image,
- success: function(res) {
- console.log("分享成功:" + JSON.stringify(res));
- },
- fail: function(err) {
- console.log("分享失败:" + JSON.stringify(err));
- }
- });
- }
- },
- // 切换音频播放状态
- toggleAudio() {
- if (!this.articleInfo.result_audio) return;
- if (this.isPlaying) {
- this.audioPlayer.pause();
- this.isPlaying = false;
- } else {
- this.audioPlayer.src = this.articleInfo.result_audio;
- this.audioPlayer.play();
- this.isPlaying = true;
- }
- },
- }
- }
- </script>
- <style scoped lang="scss">
- @import 'workDetail.scss';
- </style>
|