![](https://box.kancloud.cn/69d26803f8833ad4e8fc6ef2fb45bc62_417x741.png)
```
<template>
<view class="ts-column">
<view class="banner">
<image class="banner-img" :mode="imageMode" :src="cover"></image>
<view class="banner-title">{{pageData.title}}</view>
</view>
<view class="ts-section">
<view class="ts-section-title">
<view class="ts-row">
<view class="ts-flex-item" style="align-items: flex-end;">
<text class="ts-h2 ts-text-bold">{{pageData.linkman}}</text>
<text class="ts-h6 ts-padding-left">{{pageData.mobile}}</text>
</view>
<view style="justify-content: center; align-items: center;">
<ts-badge :text="pageData.type" type="error"></ts-badge>
</view>
</view>
</view>
<view class="ts-section-body">
<view class="ts-row ts-h2 ts-text-bold ts-ellipsis">
{{pageData.title}}
</view>
<view class="ts-row" style="flex-wrap: wrap;">
{{pageData.description}}
</view>
<ts-line></ts-line>
<view class="ts-row">
<view>地址:</view>
<view>{{pageData.address}}</view>
</view>
<view class="ts-row">
<view>时间:</view>
<view>{{pageData.create_time}}</view>
</view>
<view class="ts-column ts-padding-top ts-center" v-for="(img,idx) in pageData.images" :key="idx">
<image :src="img" style="width: 100%;" :mode="imageMode"></image>
</view>
</view>
</view>
</view>
</template>
<script>
import * as api from "@/common/api"
function _handleShareChannels(provider) {
let channels = [];
for (let i = 0, len = provider.length; i < len; i++) {
switch (provider[i]) {
case 'weixin':
channels.push({
text: '分享到微信好友',
id: 'weixin',
sort: 0
});
channels.push({
text: '分享到微信朋友圈',
id: 'weixin',
sort: 1
});
break;
default:
break;
}
}
channels.sort(function(x, y) {
return x.sort - y.sort;
});
return channels;
}
export default {
data() {
return {
title: 'list-triplex-row',
id: 0, //项目ID
isLoading: false,
providerList: [],
pageData: {
title: '详情',
},
imageMode: 'widthFix',
}
},
computed: {
cover() {
if (this.pageData.images && this.pageData.images.length > 0) {
return this.pageData.images[0];
} else {
return 'http://via.placeholder.com/750x250'
}
}
},
onLoad(e) {
this.id = parseInt(e.id)
this.getDetail();
setTimeout(() => {
uni.setNavigationBarTitle({
title: this.pageData.title
});
}, 500)
},
onShareAppMessage() {
return {
title: this.banner.title,
path: DETAIL_PAGE_PATH + '?detailDate=' + JSON.stringify(this.banner)
}
},
onNavigationBarButtonTap(event) {
const buttonIndex = event.index;
if (buttonIndex === 0) {
// 分享 H5 的页面
const shareProviders = [];
uni.getProvider({
service: 'share',
success: (result) => {
// 目前仅考虑分享到微信
if (result.provider && result.provider.length && ~result.provider.indexOf('weixin')) {
const channels = _handleShareChannels(result.provider);
uni.showActionSheet({
itemList: channels.map(channel => {
return channel.text;
}),
success: (result) => {
const tapIndex = result.tapIndex;
uni.share({
provider: 'weixin',
type: 0,
title: this.banner.title,
scene: tapIndex === 0 ? 'WXSceneSession' : 'WXSenceTimeline',
href: 'https://uniapp.dcloud.io/h5' + DETAIL_PAGE_PATH + '?detailDate=' + JSON.stringify(this.banner),
imageUrl: 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/share-logo@3.png'
});
}
});
} else {
uni.showToast({
title: '未检测到可用的微信分享服务'
});
}
},
fail: (error) => {
uni.showToast({
title: '获取分享服务失败'
});
}
});
}
},
methods: {
getDetail() {
//阻止重复加载网络请求
if (this.isLoading) {
// uni.stopPullDownRefresh();
return;
}
this.isLoading = true;
api.event.getInfo(this.id, {}).then(res => {
if (res.errno === 0) {
this.pageData = res.data;
this.isLoading = false;
} else {
console.log(res.errmsg);
}
});
}
}
}
</script>
<style>
.banner {
/* height: 360upx; */
/* overflow: hidden; */
position: relative;
background-color: #ccc;
display: flex;
flex: 1;
flex-direction: row;
}
.banner-img {
/* width: 100%; */
display: flex;
flex: 1;
}
.banner-title-wraper {
background-color: #ccc;
height: 100upx;
flex: 1;
display: flex;
flex-direction: row;
padding: 20upx;
}
.banner-title {
max-height: 84upx;
overflow: hidden;
position: absolute;
/* left: 30upx; */
bottom: 30upx;
width: 100%;
font-size: 32upx;
font-weight: 400;
line-height: 42upx;
color: white;
z-index: 11;
font-weight: bold;
background-color: rgba(0, 0, 0, 0.6);
padding: 20upx;
}
.article-meta {
padding: 20upx 40upx;
display: flex;
flex-direction: row;
justify-content: flex-start;
color: gray;
}
.article-text {
font-size: 26upx;
line-height: 50upx;
margin: 0 20upx;
}
.article-author,
.article-time {
font-size: 30upx;
}
.article-content {
padding: 0 30upx;
overflow: hidden;
font-size: 30upx;
margin-bottom: 30upx;
}
</style>
```
- 内容介绍
- EcmaScript基础
- 快速入门
- 常量与变量
- 字符串
- 函数的基本概念
- 条件判断
- 数组
- 循环
- while循环
- for循环
- 函数基础
- 对象
- 对象的方法
- 函数
- 变量作用域
- 箭头函数
- 闭包
- 高阶函数
- map/reduce
- filter
- sort
- Promise
- 基本对象
- Arguments 对象
- 剩余参数
- Map和Set
- Json基础
- RegExp
- Date
- async
- callback
- promise基础
- promise-api
- promise链
- async-await
- 项目实践
- 标签系统
- 远程API请求
- 面向对象编程
- 创建对象
- 原型继承
- 项目实践
- Classes
- 构造函数
- extends
- static
- 项目实践
- 模块
- import
- export
- 项目实践
- 第三方扩展库
- immutable
- Vue快速入门
- 理解MVVM
- Vue中的MVVM模型
- Webpack+Vue快速入门
- 模板语法
- 计算属性和侦听器
- Class 与 Style 绑定
- 条件渲染
- 列表渲染
- 事件处理
- 表单输入绑定
- 组件基础
- 组件注册
- Prop
- 自定义事件
- 插槽
- 混入
- 过滤器
- 项目实践
- 标签编辑
- 移动客户端开发
- uni-app基础
- 快速入门程序
- 单页程序
- 底部Tab导航
- Vue语法基础
- 模版语法
- 计算属性与侦听器
- Class与Style绑定
- 样式与布局
- Box模型
- Flex布局
- 内置指令
- 基本指令
- v-model与表单
- 条件渲染指令
- 列表渲染指令v-for
- 事件与自定义属性
- 生命周期
- 项目实践
- 学生实验
- 贝店商品列表
- 加载更多数据
- 详情页面
- 自定义组件
- 内置组件
- 表单组件
- 技术专题
- 状态管理vuex
- Flyio
- Mockjs
- SCSS
- 条件编译
- 常用功能实现
- 上拉加载更多数据
- 数据加载综合案例
- Teaset UI组件库
- Teaset设计
- Teaset使用基础
- ts-tag
- ts-badge
- ts-button
- ta-banner
- ts-list
- ts-icon
- ts-load-more
- ts-segmented-control
- 代码模版
- 项目实践
- 标签组件
- 失物招领客户端原型
- 发布页面
- 检索页面
- 详情页面
- 服务端开发技术
- 服务端开发环境配置
- Koajs快速入门
- 快速入门
- 常用Koa中间件介绍
- 文件上传
- RestfulApi
- 一个复杂的RESTful例子
- 使用Mockjs生成模拟数据
- Thinkjs快速入门
- MVC模式
- Thinkjs介绍
- 快速入门
- RESTful服务
- RBAC案例
- 关联模型
- 应用开发框架
- 服务端开发
- PC端管理界面开发
- 移动端开发
- 项目实践
- 失物招领项目
- 移动客户端UI设计
- 服务端设计
- 数据库设计
- Event(事件)
- 客户端设计
- 事件列表页面
- 发布页面
- 事件详情页面
- API设计
- image
- event
- 微信公众号开发
- ui设计规范