```
<template>
<view class="ts-column ts-flex-item">
<swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000">
<swiper-item>
<view class="swiper-item">
<ts-banner class="ts-row ts-flex-item" image="http://via.placeholder.com/750x375" :height="350"></ts-banner>
</view>
</swiper-item>
<swiper-item>
<view class="swiper-item">
<ts-banner class="ts-row ts-flex-item" image="http://via.placeholder.com/750x375" :height="350"></ts-banner>
</view>
</swiper-item>
<swiper-item>
<view class="swiper-item">
<ts-banner class="ts-row ts-flex-item" image="http://via.placeholder.com/750x375" :height="350"></ts-banner>
</view>
</swiper-item>
<swiper-item>
<view class="swiper-item">
<ts-banner class="ts-row ts-flex-item" image="http://via.placeholder.com/750x375" :height="350"></ts-banner>
</view>
</swiper-item>
<swiper-item>
<view class="swiper-item">
<ts-banner class="ts-row ts-flex-item" image="http://via.placeholder.com/750x375" :height="350"></ts-banner>
</view>
</swiper-item>
</swiper>
<ts-search-bar :keywords="keywords" @search="onSearch"></ts-search-bar>
<view class="ts-row">
<ts-segmented-control class="ts-row ts-flex-item" :values="tabs" styleType="text" @clickItem="onClickItem"></ts-segmented-control>
</view>
<view class="ts-column" v-for="(item ,index) in searchResult" :key="index">
<navigator :url="'/pages/app/lost/events/detail?id='+item.id">
<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">{{item.linkman}}</text>
<text class="ts-h6 ts-padding-left">{{item.mobile}}</text>
</view>
<view style="justify-content: center; align-items: center;">
<ts-tag :text="item.type" type="error"></ts-tag>
</view>
</view>
</view>
<view class="ts-section-body">
<view class="ts-row ts-h2 ts-text-bold ts-ellipsis">
{{item.title}}
</view>
<view class="ts-row ts-padding-top" style="flex-wrap: wrap;">
<view class="ts-row ts-padding-right ts-padding-bottom" v-for="(img,idx) in item.images" :key="idx" style="width: 210upx; height: 210upx;">
<image :src="img" style="width: 100%; height: 100%;"></image>
</view>
</view>
<view class="ts-row ts-ellipsis-3" style="flex-wrap: wrap;">
{{item.description}}
</view>
<ts-line></ts-line>
<view class="ts-row">
<view>地址:</view>
<view>{{item.address}}</view>
</view>
<view class="ts-row">
<view>时间:</view>
<view>{{item.create_time}}</view>
</view>
</view>
</view>
</navigator>
<ts-gap></ts-gap>
</view>
<ts-load-more :loadingType="loadingType" @tap="loadMoreSearcheResult"></ts-load-more>
<ts-gap></ts-gap>
<ts-fab :pattern="pattern" :content="content" horizontal="left" vertical="bottom" direction="horizontal" @trigger="trigger"
ref="fab"></ts-fab>
</view>
</template>
<script>
import * as api from "@/common/api/lost"
export default {
data() {
return {
currentTab: 0,
tabs: ['全部', '丢失', '捡到'],
searchResult: [],
type: '全部',
keywords: '',
page: 0,
loadingType: 0,
//FAB属性
pattern: {
color: '#7A7E83',
backgroundColor: '#fff',
selectedColor: '#007AFF',
buttonColor: '#007AFF'
},
content: [{
iconPath: '/static/tabbar/fun.png',
selectedIconPath: '/static/tabbar/funHL.png',
text: '发布',
active: false
},
{
iconPath: '/static/tabbar/my.png',
selectedIconPath: '/static/tabbar/myHL.png',
text: '我的',
active: false
},
]
}
},
async onReachBottom() {
await this.loadMoreSearcheResult();
},
async onLoad() {
await this.loadMoreSearcheResult();
},
methods: {
previewImage(imageList) {
//预览图片
uni.previewImage({
urls: imageList
});
},
trigger(e) {
console.log(e);
this.content[e.index].active = !e.item.active;
if (e.index === 0) {
uni.navigateTo({
url: '/pages/app/lost/publish/index'
})
} else if (e.index === 1) {
uni.switchTab({
url: '/pages/tabbar/my/index'
})
}
},
async onSearch(keywords) {
this.keywords = keywords;
await this.doSearch();
},
async doSearch() {
this.page = 0;
this.loadingType = 0;
this.searchResult = [];
let types = ['', '丢失', '捡到'];
this.type = types[this.currentTab];
await this.loadMoreSearcheResult();
},
async loadMoreSearcheResult() {
//上拉的状态:0-loading前;1-loading中;2-没有更多了
if (this.loadingType !== 0) {
return;
}
this.loadingType = 1;
this.page = this.page + 1;
let res = await api.event.getList({
page: this.page,
key: this.keywords,
type: this.type === "全部" ? '' : this.type,
pageSize: 10,
});
if (res.errno === 0) {
const data = res.data;
if (data && data.data) {
// console.log(data);
this.searchResult = this.searchResult.concat(data.data);
}
if (data.totalPages === data.currentPage) {
this.loadingType = 2; //2-没有更多了
} else {
this.loadingType = 0; //开启新一轮加载
}
} else {
console.log(res.errmsg);
}
},
async onClickItem(index) {
if (this.currentTab !== index) {
this.currentTab = index;
await this.doSearch();
}
}
}
}
</script>
<style>
</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设计规范