123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- <template>
- <view class="content">
-
- <view class="top-content">
- <view class="search-box">
- <view class="inner">
- <image src="/static/images/icon_search.png" mode=""></image>
- <input type="text" v-model="searchValue" @confirm="doSearch" placeholder="输入关键字搜索" placeholder-class="placeholder">
- </view>
- </view>
- <view class="tag-box">
- <scroll-view scroll-x="true" >
- <view class="tag-scroll">
- <view v-for="(item,index) in cates" :key="index" @click="choseCate(item)" :class="choseCateId == item.cateId?'tag active':'tag'" >{{ item.cateName }}</view>
- </view>
- </scroll-view>
- </view>
- </view>
- <!-- 数据列表 -->
-
- <view class="prom-list">
- <mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
- <view class="item" v-for="(item,index) in dataList" :key="index">
- <view class="info-box" @click="showDetail(item)">
- <view class="info-text">
- <view class="title">{{ item.title }}</view>
- <view class="time">{{item.publishTime}}</view>
- </view>
- <image class="img" :src="item.imageUrl" mode="aspectFill"></image>
- </view>
- <view class="hand-box" >
- <view class="left" @click="showDetail(item)">
- <view class="head-box" v-if="item.viewsList!=null&&item.viewsList.length>0">
- <view class="head-item" v-for="(subitem,j) in item.viewsList" :key="j">
- <image class="img" :src="getImgSrc(subitem)" mode=""></image>
- </view>
- </view>
- <view class="hand-item">
- <image class="eyes" src="/static/images/icon_eyes.png" mode=""></image>
- <text class="text">{{item.views}}</text>
- </view>
- <view class="hand-item">
- <image class="share" src="/static/images/icon_share_gray.png" mode=""></image>
- <text class="text">0</text>
- </view>
- </view>
- <view class="share-btn" @click="openShare(item)">立即分享</view>
- </view>
- </view>
- </mescroll-body>
- </view>
-
- <!-- 分享弹窗 -->
- <u-popup :show="show" @close="closeShare" >
- <view class="share-content">
- <view class="share-inner">
- <view class="share-item" @click="wxShare">
- <image src="/static/images/icon_wx.png" mode=""></image>
- <text class="text">微信</text>
- </view>
- <view class="share-item" @click="wxLineShare">
- <image src="/static/images/icon_pyq.png" mode=""></image>
- <text class="text">朋友圈</text>
- </view>
- <!-- <view class="share-item">
- <image src="/static/images/icon_xcxhb.png" mode=""></image>
- <text class="text">小程序海报</text>
- </view>
- <view class="share-item">
- <image src="/static/images/icon_xccard.png" mode=""></image>
- <text class="text">小程序卡片</text>
- </view>
- <view class="share-item">
- <image src="/static/images/icon_code.png" mode=""></image>
- <text class="text">二维码</text>
- </view> -->
- <view class="share-item">
- <image src="/static/images/icon_copy_link.png" mode=""></image>
- <text class="text">复制链接</text>
- </view>
- </view>
- <view class="cancel-btn" @click="closeShare">取消</view>
- </view>
- </u-popup>
-
- </view>
- </template>
- <script>
-
- import { getArticleCate,getArticleList } from '@/api/article'
- import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
- import { qconfig } from '@/utils/config';
- export default {
- mixins: [MescrollMixin],
- data() {
- return {
- show:false,
- shareItem:null,
- cates:[],
- choseCateId:0,
- searchValue: '',
- mescroll:null,
- //下拉刷新
- downOption: {
- use:true,
- auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
- },
- // 上拉加载的配置
- upOption: {
- onScroll:true,
- use: true, // 是否启用上拉加载; 默认true
- page: {
- num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
- size: 10 // 每页数据的数量,默认10
- },
- noMoreSize: 10, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
- empty: {
- icon:'/static/images/no_data.png',
- tip: '暂无数据'
- },
- textNoMore:'已经到底了'
- },
- // 列表数据
- dataList: [],
- defImg:"../../static/images/detault_head.jpg",
- }
- },
- onShow() {
- this.getArticleCate();
- },
- methods: {
- openShare(item) {
- this.show = true
- this.shareItem=item;
- },
- closeShare() {
- this.show = false
- },
- doSearch(){
- this.mescroll.resetUpScroll()
- },
- getArticleCate(){
- var that=this;
- let data = {};
- getArticleCate(data).then(
- res => {
- if(res.code==200){
- this.cates=res.data;
- }else{
- uni.showToast({
- icon:'none',
- title: "请求失败",
- });
- }
- },
- rej => {}
- );
- },
- mescrollInit(mescroll) {
- this.mescroll = mescroll;
- },
- /*下拉刷新的回调 */
- downCallback(mescroll) {
- mescroll.resetUpScroll()
- },
- upCallback(page) {
- //联网加载数据
- var that = this;
- var data = {
- keyword:this.searchValue,
- cateId:this.choseCateId,
- page: page.num,
- pageSize: page.size
- };
- getArticleList(data).then(res => {
- if(res.code==200){
- //设置列表数据
- if (page.num == 1) {
- that.dataList = res.data.list;
- } else {
- that.dataList = that.dataList.concat(res.data.list);
- }
- that.mescroll.endBySize(res.data.list.length, res.data.total);
- }else{
- uni.showToast({
- icon:'none',
- title: "请求失败",
- });
- that.dataList = null;
- that.mescroll.endErr();
- }
- });
- },
-
- // 关键词选择
- choseCate(item) {
- this.choseCateId = item.cateId;
- this.mescroll.resetUpScroll()
- },
- // 查看详情
- showDetail(item) {
- uni.navigateTo({
- url: './detail?articleId=' + item.articleId
- });
- },
- wxShare(){
- // #ifdef APP-PLUS
- if(!plus.runtime.isAgreePrivacy()) {
- uni.showToast({
- title: "请同意隐私政策",
- icon: "none",
- position: 'top',
- duration: 2000
- })
- return;
- }
- // #endif
- uni.share({
- provider: "weixin",
- scene: "WXSceneSession",
- type: 5,
- imageUrl: this.shareItem.imageUrl, //分享封面图片
- title: this.shareItem.title, // 分享标题
- //summary: "微信分享示例", // 分享内容文字
- miniProgram:{
- id:qconfig.miniProgramId,
- path:"pages/healthy/detail?articleId="+this.shareItem.articleId,
- type:0,//0-正式版; 1-测试版; 2-体验版。 默认值为0。
- webUrl:"https://uniapp.dcloud.io"
- },
- success: function(res) {
- uni.showToast({
- title: "分享成功",
- icon: 'none'
- });
- },
- fail: function(err) {
- // 此处是调起微信分享失败的回调
- }
- });
-
- },
- wxLineShare(){
-
- },
- getImgSrc(item){
- var imgSrc=this.defImg;
- if(item!=null && item.avatar!=null){
- imgSrc=item.avatar;
- }
- return imgSrc;
- }
-
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #F7F7F7;
- }
- </style>
- <style scoped lang="scss">
-
- .top-content{
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 11;
- background: #FFFFFF;
- .search-box{
- height: 104upx;
- padding: 0 30upx;
- display: flex;
- align-items: center;
- .inner{
- box-sizing: border-box;
- width: 100%;
- height: 72upx;
- background: #F7F7F7;
- border-radius: 36upx;
- display: flex;
- align-items: center;
- padding: 0 30upx;
- image{
- width: 28upx;
- height: 28upx;
- margin-right: 20upx;
- }
- input{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- flex: 1;
- }
- .placeholder{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #BBBBBB;
- }
- }
- }
-
- .tag-box{
- height: 106upx;
- padding: 0 30upx;
- .tag-scroll{
- height: 106upx;
- display: flex;
- align-items: center;
- .tag{
- flex-shrink: 0;
- height: 58upx;
- line-height: 56upx;
- padding: 0 24upx;
- background: #F5FFFE;
- border: 2upx solid #8AD5CE;
- border-radius: 14upx;
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF5C03;
- margin-right: 20upx;
- &:last-child{
- margin-right: 0;
- }
- &.active{
- color: #FFFFFF;
- background: #2BC7B9;
- border: 1px solid #2BC7B9;
- }
- }
- }
- }
- }
- .prom-list{
- padding: 230upx 20upx 20upx;
- .item{
- background: #FFFFFF;
- border-radius: 16upx;
- margin-bottom: 20upx;
- padding: 40upx 30upx;
- &:last-child{
- margin-bottom: 0;
- }
- .info-box{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .info-text{
- width: calc(100% - 254upx);
- height: 170upx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- line-height: 50upx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .time{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- }
- }
- .img{
- width: 224upx;
- height: 171upx;
- background: #E0E0E0;
- border-radius: 16upx;
- overflow: hidden;
- }
- }
- .hand-box{
- margin-top: 50upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left{
- display: flex;
- align-items: center;
- .head-box{
- display: flex;
- margin-right: 26upx;
- .head-item{
- width: 48upx;
- height: 48upx;
- background: #F6F7FB;
- border: 2upx solid #FFFFFF;
- border-radius: 50%;
- overflow: hidden;
- margin-left: -10upx;
- &:first-child{
- margin-left: 0;
- }
- .img{
- width: 100%;
- height: 100%;
- }
- }
- }
- .hand-item{
- display: flex;
- align-items: center;
- margin-right: 40upx;
- &:last-child{
- margin-right: 0;
- }
- .eyes{
- width: 27upx;
- height: 22upx;
- margin-right: 18upx;
- }
- .share{
- width: 24upx;
- height: 24upx;
- margin-right: 12upx;
- }
- .text{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- }
- }
- }
- .share-btn{
- padding: 0 25upx;
- height: 60upx;
- line-height: 60upx;
- background: #FF5C03;
- border-radius: 12upx;
- font-size: 26upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- }
- }
-
-
- .share-content{
- background-color: #FFF;
- border-radius: 40upx 40upx 0px 0px;
- .share-inner{
- padding: 70upx 0 0 0;
- display: flex;
- flex-wrap: wrap;
- .share-item{
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 66upx;
- image{
- width: 80upx;
- height: 80upx;
- margin-bottom: 20upx;
- }
- .text{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 1;
- }
- }
- }
- .cancel-btn{
- height: 96upx;
- line-height: 96upx;
- text-align: center;
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- border-top: 2upx solid #E8E8E8;
- background-color: #FFF;
- }
- }
- </style>
|