detail.vue 6.9 KB
Newer Older
芊里 已提交
1 2 3 4 5
<template>
	<!--
	 本页面模板教程:https://ext.dcloud.net.cn/plugin?id=2717
	 uni-list 文档:https://ext.dcloud.net.cn/plugin?id=24
	 uniCloud 文档:https://uniapp.dcloud.io/uniCloud/README
L
123  
linju 已提交
6
	 unicloud-db 组件文档:https://uniapp.dcloud.net.cn/uniCloud/unicloud-db-component
芊里 已提交
7 8 9
	 DB Schema 规范:https://uniapp.dcloud.net.cn/uniCloud/schema
	 -->
	<view class="article">
L
123  
linju 已提交
10
		<unicloud-db v-slot:default="{data, loading, error, options}" :options="formData" :collection="collection" :field="field"
芊里 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
		 :getone="true" :where="where" :manual="true" ref="detail" @load="loadData">
			<template v-if="!loading && data">
				<view class="article-title">{{title}}</view>
				<uni-list :border="false">
					<uni-list-item thumbSize="lg" :thumb="data.image">
						<!-- 通过body插槽定义作者信息内容 -->
						<view slot="body" class="header-content">
							<view class="uni-title">{{data.author && data.author[0].username}}</view>
							<view class="uni-note">更新于 {{data.last_modify_date | beforTime}} </view>
						</view>
						<view slot="footer" class="footer">
							<button @click="followClick" class="footer-button">关注</button>
						</view>
					</uni-list-item>
				</uni-list>
				<view class="banner">
					<!-- 文章开头,缩略图 -->
					<image class="banner-img" :src="data.avatar" mode="widthFix"></image>
					<!-- 文章摘要 -->
					<view class="banner-title">
						<text class="uni-ellipsis">{{data.excerpt}}</text>
					</view>
				</view>
				<!-- 新闻详情:使用 uParse 解析富文本 -->
				<view class="article-content">
					<u-parse :content="data.content" :noData="options.noData"></u-parse>
				</view>
			</template>
L
123  
linju 已提交
39
		</unicloud-db>
芊里 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
		<uni-popup ref="sharePopup" type="bottom">
			<uni-popup-share @select="selectShareItem"></uni-popup-share>
		</uni-popup>
	</view>
</template>

<script>
	import uParse from '@/components/u-parse/parse.vue';
	import { friendlyDate } from '@/common/utils.js';
	export default {
		components: {
			uParse
		},
		data() {
			return {
				// 当前显示 _id
				id:"",
				title:'',
				// 数据表名
				collection: 'opendb-news-articles,uni-id-users',
				// 查询字段,多个字段用 , 分割
				field: 'author{username, _id},_id,avatar,excerpt,last_modify_date, comment_count, like_count,title,content',
				formData: {
					noData: '<p style="text-align:center;color:#666">详情加载中...</p>'
				}, 
			}
		},filters:{
			beforTime(number){
				if(number)return friendlyDate(+number);
				return '';
			}
		},
		computed:{
			//拼接where条件
L
123  
linju 已提交
74
			//查询条件 ,更多详见 :https://uniapp.dcloud.net.cn/uniCloud/unicloud-db?id=jsquery
芊里 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
			where(){
				return `_id =="${this.id}"`
			}
		},
		onLoad(event) {
			//获取真实新闻id,通常 id 来自上一个页面
			if(event.id){
				this.id = event.id
			}
			//若上一页传递了标题过来,则设置导航栏标题
			if(event.title){
				this.title = event.title
				uni.setNavigationBarTitle({
					title:event.title
				})
			}
		},
		onNavigationBarButtonTap(event) {
			if(event.type == 'share'){
				this.shareClick();
			}
		},
		onReady() {
			// 开始加载数据,修改 where 条件后才开始去加载 clinetDB 的数据 ,需要等组件渲染完毕后才开始执行 loadData,所以不能再 onLoad 中执行
			if(this.id){// ID 不为空,则发起查询
				this.$refs.detail.loadData()
			}else{
				uni.showToast({
					icon:'none',
					title:'出错了,新闻ID为空'
				})
			}
		},
		methods: {
			loadData(data){
				//如果上一页未传递标题过来(如搜索直达详情),则从新闻详情中读取标题
				if(this.title == '' && data[0].title){
					this.title = data[0].title
					uni.setNavigationBarTitle({
						title:data[0].title
					})
				}
			},
			/**
			 * followClick
			 * 点击关注
			 */
			followClick(){
				uni.showToast({
					title: '点击关注',
					icon: 'none'
				});
			},
			/**
			 * 分享该文章
			 */
			shareClick(){
				//#ifdef APP-PLUS
				this.$refs.sharePopup.open();
				//#endif
				//#ifndef APP-PLUS || H5
				uni.setClipboardData({
				    data: 'http://uniapp.dcloud.io/',
				    success: function () {
				        uni.showToast({
				        	title: '已复制到剪切板',
				        	icon: 'none'
				        });
				    }
				});
				//#endif
				// #ifdef H5
				let value = 'http://uniapp.dcloud.io/';
				const textarea = document.createElement('textarea');
				textarea.value = value;
				textarea.readOnly = true;
				document.body.appendChild(textarea);
				textarea.select();
				textarea.setSelectionRange(0, value.length);
				document.execCommand('copy');
				textarea.remove();
				uni.showToast({
					title: '已复制到剪切板',
					icon: 'none'
				});
				// #endif
			},
			selectShareItem({item, index}, done){
				
				//#ifdef APP-PLUS
				if(item.name == 'more'){
					// "其他"选项
					uni.setClipboardData({
					    data: 'http://uniapp.dcloud.io/',
					    success: function () {
					        uni.showToast({
					        	title: '已复制到剪切板',
					        	icon: 'none'
					        });
					    }
					});
				} else {
					uni.share({
					    provider: "weixin",
					    scene: "WXSceneSession",
					    type: 0,
					    href: "http://uniapp.dcloud.io/",
					    title: "uni-app分享",
					    summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!",
					    imageUrl: "https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-uni-app-doc/d8590190-4f28-11eb-b680-7980c8a877b8.png",
					    success: function (res) {
					        console.log("success:" + JSON.stringify(res));
					    },
					    fail: function (err) {
					        console.log("fail:" + JSON.stringify(err));
					    }
					});
				}
				//#endif
				//#ifndef APP-PLUS
				uni.showToast({
					title: '仅app端支持分享',
					icon: 'none'
				});
				//#endif
				done();
			}
		}
	}
</script>

<style>
	.header-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		font-size: 14px;
	}

	/* 标题 */
	.uni-title {
		display: flex;
		margin-bottom: 5px;
		font-size: 14px;
		font-weight: bold;
		color: #3b4144;
	}

	/* 描述 额外文本 */
	.uni-note {
		color: #999;
		font-size: 12px;
	}

	.footer {
		display: flex;
		align-items: center;
	}

	.footer-button {
		display: flex;
		align-items: center;
		font-size: 12px;
		height: 30px;
		color: #fff;
		background-color: #ff5a5f;
	}

	.banner {
		position: relative;
		margin: 0 15px;
		height: 180px;
		overflow: hidden;
	}

	.banner-img {
		position: absolute;
		width: 100%;
	}

	.banner-title {
		display: flex;
		align-items: center;
		position: absolute;
		padding: 0 15px;
		width: 100%;
		bottom: 0;
		height: 30px;
		font-size: 14px;
		color: #fff;
		background: rgba(0, 0, 0, 0.4);
		overflow: hidden;
		box-sizing: border-box;
	}

	.uni-ellipsis {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.article-title {
		padding: 20px 15px;
		padding-bottom: 0;
	}

	.article-content {
		padding: 15px;
		font-size: 15px;
		overflow: hidden;
	}
</style>