You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
353 lines
9.3 KiB
353 lines
9.3 KiB
<template>
|
|
<view>
|
|
<view class='newsDetail'>
|
|
<view class='title'>{{articleInfo.title}}</view>
|
|
<view class='list acea-row row-middle'>
|
|
<view class='label'>{{articleInfo.author}}</view>
|
|
<view class='item'></text>{{articleInfo.create_time}}</view>
|
|
<!-- <view class='item'><text class='iconfont icon-liulan'></text>{{articleInfo.visit}}</view> -->
|
|
</view>
|
|
<view class='conters'>
|
|
<!-- <rich-text :nodes="content" class="conter"></rich-text> -->
|
|
<jyf-parser :html="content.replace(/<br\/>/ig, '')" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
</view>
|
|
<view class="picTxt acea-row row-between-wrapper" v-if="store_info.id">
|
|
<view class="pictrue">
|
|
<image :src="store_info.image"></image>
|
|
</view>
|
|
<view class="text">
|
|
<view class="name line1">{{store_info.store_name}}</view>
|
|
<view class="money font-color">
|
|
¥<text class="num">{{store_info.price}}</text>
|
|
</view>
|
|
<view class="y_money">¥{{store_info.ot_price}}</view>
|
|
</view>
|
|
<navigator :url="'/pages/goods_details/index?id='+store_info.id" hover-class="none" class="label"><text class="span">查看商品</text></navigator>
|
|
</view>
|
|
<!-- #ifdef H5 -->
|
|
<!-- <button class="bnt bg-color" hover-class='none' @click="listenerActionSheet" v-if="this.$wechat.isWeixin()">和好友一起分享</button> -->
|
|
<button class="bnt bg-color" hover-class='none' @click="listenerActionSheet">和好友一起分享</button>
|
|
<!-- #endif -->
|
|
<!-- #ifdef MP -->
|
|
<button class="bnt bg-color" open-type="share" hover-class='none'>和好友一起分享</button>
|
|
<!-- #endif -->
|
|
</view>
|
|
<shareInfo @setShareInfoStatus="setShareInfoStatus" :shareInfoStatus="shareInfoStatus"></shareInfo>
|
|
<home></home>
|
|
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
import parser from "@/components/jyf-parser/jyf-parser";
|
|
import {
|
|
getArticleDetails,shareArticle
|
|
} from '@/api/api.js';
|
|
import { getCheck } from '@/api/user.js';
|
|
import shareInfo from '@/components/shareInfo';
|
|
import home from '@/components/home';
|
|
import authorize from '@/components/Authorize';
|
|
import { mapGetters } from "vuex";
|
|
import { configMap } from "@/utils";
|
|
const app = getApp();
|
|
export default {
|
|
components: {
|
|
shareInfo,
|
|
home,
|
|
"jyf-parser": parser,
|
|
authorize,
|
|
},
|
|
data() {
|
|
return {
|
|
id: 0,
|
|
articleInfo: [],
|
|
store_info: {},
|
|
content: '',
|
|
shareInfoStatus: false,
|
|
tagStyle: {
|
|
img: 'width:100%;display:block;'
|
|
},
|
|
type:'',
|
|
isAuto: false, //没有授权的不会自动授权
|
|
isShowAuth: false, //是否隐藏授权
|
|
realInfo:{},
|
|
shareId:0,
|
|
shareType:0
|
|
};
|
|
},
|
|
computed:{
|
|
...configMap({margin_ico_switch: 0,margin_ico: '',site_name: '',share_pic: ''}, mapGetters(['isLogin','uid','viewColor'])),
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function(options) {
|
|
this.getCheck();
|
|
let uid = app.globalData.uid
|
|
if (options.hasOwnProperty('shareId') && options.hasOwnProperty('shareType')) {
|
|
this.shareId = options.shareId;
|
|
this.type = options.shareType;
|
|
let uid = app.globalData.uid
|
|
console.log(uid)
|
|
if (this.shareId != uid) {
|
|
this.handelShareArticle(false)
|
|
}
|
|
|
|
}
|
|
if (options.hasOwnProperty('id')) {
|
|
this.id = options.id;
|
|
} else {
|
|
// #ifndef H5
|
|
uni.navigateBack({
|
|
delta: 1
|
|
});
|
|
// #endif
|
|
// #ifdef H5
|
|
history.back();
|
|
// #endif
|
|
}
|
|
},
|
|
onShow: function() {
|
|
this.getArticleOne();
|
|
},
|
|
methods: {
|
|
getCheck:function(){
|
|
let that = this;
|
|
getCheck().then(res =>{
|
|
that.$set(that, 'realInfo', res.data);
|
|
if(that.realInfo.real_name.length == 0 || that.realInfo.card.length == 0 || that.realInfo.age.length == 0 || that.realInfo.spread_phone.length == 0){
|
|
that.$util.Tips({
|
|
title: '请补全身份信息',
|
|
icon: 'error'
|
|
});
|
|
setTimeout(function(){
|
|
uni.reLaunch({
|
|
url: '/pages/users/user_modify_mes/index'
|
|
});
|
|
},500)
|
|
}
|
|
})
|
|
},
|
|
getArticleOne: function() {
|
|
let that = this;
|
|
if (that.isLogin === false) {
|
|
// this.isAuto = true;
|
|
// this.isShowAuth = true
|
|
that.$util.Tips({
|
|
title: '未登录'
|
|
});
|
|
setTimeout(() => {
|
|
// uni.navigateBack({
|
|
// delta: 1
|
|
// });
|
|
uni.navigateTo({
|
|
url: '/pages/users/login/index'
|
|
})
|
|
}, 1000);
|
|
}else{
|
|
getArticleDetails(that.id).then(res => {
|
|
uni.setNavigationBarTitle({
|
|
title: res.data.title.substring(0, 7) + "..."
|
|
});
|
|
that.$set(that, 'articleInfo', res.data);
|
|
that.$set(that, 'store_info', res.data.store_info ? res.data.store_info : {});
|
|
|
|
if(that.articleInfo.articleCategory.title === '视频'){
|
|
that.type = '2'
|
|
}else if(that.articleInfo.articleCategory.title === '推文'){
|
|
that.type = '3'
|
|
}
|
|
that.content = res.data.content.content;
|
|
// #ifdef H5
|
|
if (this.$wechat.isWeixin()) {
|
|
this.setShareInfo();
|
|
}
|
|
// #endif
|
|
});
|
|
}
|
|
},
|
|
listenerActionSheet() {
|
|
let that = this;
|
|
that.getCheck();
|
|
that.shareInfoStatus = true;
|
|
that.handelShareArticle()
|
|
},
|
|
setShareInfoStatus() {
|
|
this.shareInfoStatus = false
|
|
},
|
|
|
|
handelShareArticle(isShare = true) {
|
|
let uid = app.globalData.uid
|
|
let that = this
|
|
shareArticle(that.type,that.shareId).then(res =>{
|
|
if (isShare) {
|
|
that.$util.Tips({
|
|
title:res.message
|
|
})
|
|
}
|
|
})
|
|
.catch(err=>{
|
|
if (isShare) {
|
|
that.$util.Tips({
|
|
title: err
|
|
})
|
|
}
|
|
})
|
|
|
|
},
|
|
setShareInfo: function() {
|
|
let uid = this.$store.state.app.uid
|
|
let href = location.href+"&shareId="+uid+"&shareType="+this.type
|
|
let configAppMessage = {
|
|
desc: this.articleInfo.synopsis,
|
|
title: this.articleInfo.title,
|
|
link: href,
|
|
imgUrl: this.articleInfo.image_input,
|
|
success: function() {
|
|
// 在这里调用 shareArticle 方法
|
|
// this.shareArticle(this.articleInfo.id);
|
|
// conso.log('test');
|
|
}
|
|
};
|
|
console.log(href)
|
|
this.$wechat.wechatEvevt([
|
|
"updateAppMessageShareData",
|
|
"updateTimelineShareData"
|
|
], configAppMessage).then(res => {
|
|
// this.shareArticle(this.articleInfo.id);
|
|
// console.log('test shareArticle');
|
|
}).catch(err => {
|
|
// console.log(err);
|
|
// console.log('2');
|
|
});
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #fff !important;
|
|
}
|
|
.newsDetail .title {
|
|
padding: 0 30rpx;
|
|
font-size: 34rpx;
|
|
color: #282828;
|
|
font-weight: bold;
|
|
margin: 45rpx 0 23rpx 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.newsDetail .list {
|
|
margin: 0 30rpx;
|
|
padding-bottom: 25rpx;
|
|
}
|
|
.newsDetail .list .label {
|
|
font-size: 30rpx;
|
|
color: #B1B2B3;
|
|
}
|
|
.newsDetail .list .item {
|
|
margin-left: 27rpx;
|
|
font-size: 30rpx;
|
|
color: #B1B2B3;
|
|
}
|
|
.newsDetail .list .item .iconfont {
|
|
font-size: 28rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.newsDetail .list .item .iconfont.icon-shenhezhong {
|
|
font-size: 26rpx;
|
|
}
|
|
.newsDetail .conters {
|
|
padding: 0 30rpx;
|
|
font-size: 32rpx;
|
|
line-height: 1.7;
|
|
/deep/ img{
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
.newsDetail .picTxt {
|
|
width: 690rpx;
|
|
height: 200rpx;
|
|
border-radius: 20rpx;
|
|
border: 1px solid #e1e1e1;
|
|
position: relative;
|
|
margin: 30rpx auto 0 auto;
|
|
}
|
|
.newsDetail .picTxt .pictrue {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
}
|
|
.newsDetail .picTxt .pictrue image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20rpx 0 0 20rpx;
|
|
display: block;
|
|
}
|
|
.newsDetail .picTxt .text {
|
|
width: 460rpx;
|
|
}
|
|
.newsDetail .picTxt .text .name {
|
|
font-size: 30rpx;
|
|
color: #282828;
|
|
}
|
|
.newsDetail .picTxt .text .money {
|
|
font-size: 24rpx;
|
|
margin-top: 40rpx;
|
|
font-weight: bold;
|
|
}
|
|
.newsDetail .picTxt .text .money .num {
|
|
font-size: 36rpx;
|
|
}
|
|
.newsDetail .picTxt .text .y_money {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
text-decoration: line-through;
|
|
}
|
|
.newsDetail .picTxt .label {
|
|
position: absolute;
|
|
background-color: #303131;
|
|
width: 160rpx;
|
|
height: 50rpx;
|
|
right: -7rpx;
|
|
border-radius: 25rpx 0 6rpx 25rpx;
|
|
text-align: center;
|
|
line-height: 50rpx;
|
|
bottom: 24rpx;
|
|
}
|
|
.newsDetail .picTxt .label .span {
|
|
background-image: linear-gradient(to right, #fff71e 0%, #f9b513 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.newsDetail .picTxt .label:after {
|
|
content: " ";
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border-bottom: 8rpx solid #303131;
|
|
border-right: 8rpx solid transparent;
|
|
top: -7rpx;
|
|
right: 0;
|
|
}
|
|
.newsDetail .bnt {
|
|
color: #fff;
|
|
font-size: 30rpx;
|
|
width: 690rpx;
|
|
height: 90rpx;
|
|
border-radius: 45rpx;
|
|
margin: 48rpx auto;
|
|
text-align: center;
|
|
line-height: 90rpx;
|
|
}
|
|
</style>
|
|
|