first commit

This commit is contained in:
编码猿
2024-09-27 00:57:27 +08:00
commit 18df0f5e4b
2548 changed files with 253280 additions and 0 deletions

View File

@@ -0,0 +1,141 @@
<template>
<yd-layout>
<yd-navbar slot="navbar" title="Combination">
<router-link to="/list" slot="left">
<yd-navbar-back-icon></yd-navbar-back-icon>
</router-link>
</yd-navbar>
<yd-pullrefresh :callback="loadList1" ref="prdemo">
<yd-infinitescroll :callback="loadList2" ref="lsdemo">
<yd-list theme="1" slot="list">
<yd-list-item v-for="item in list">
<img slot="img" :src="item.img">
<span slot="title">{{item.title}}</span>
<yd-list-other slot="other">
<div>
<span class="list-price"><em>¥</em>{{item.marketprice}}</span>
<span class="list-del-price">¥{{item.productprice}}</span>
</div>
<div>content</div>
</yd-list-other>
</yd-list-item>
</yd-list>
<span slot="doneTip">啦啦啦,啦啦啦,没有数据啦~~</span>
</yd-infinitescroll>
</yd-pullrefresh>
<yd-backtop></yd-backtop>
</yd-layout>
</template>
<script type="text/babel">
export default {
data() {
return {
page1: 1,
page2: 1,
pageSize: 10,
list: [
{
img: "http://img1.shikee.com/try/2016/06/23/14381920926024616259.jpg",
title: "标题标题标题标题标题",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/21/10172020923917672923.jpg",
title: "骆驼男装2016夏装男士短袖T恤 圆领衣服 印花男装体恤 半袖打底衫",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/23/15395220917905380014.jpg",
title: "条纹短袖T恤男士韩版衣服大码潮流男装夏季圆领体恤2016新款半袖",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/25/14244120933639105658.jpg",
title: "夏季青少年衣服男生潮牌t恤 男士 夏秋学生 日系棉短袖半袖男小衫",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/26/12365720933909085511.jpg",
title: "2016夏装新款时尚潮流短袖T恤男纯棉V领日系青少年韩版夏季上衣服",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/19/09430120929215230041.jpg",
title: "男装衣服男夏t恤 男士短袖t恤圆领夏季潮牌宽松原宿风半截袖男",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/06/03/12173920932544716516.jpg",
title: "superman短袖t恤日潮牌男士日韩夏装水洗做旧修身个性短袖t恤衣服",
marketprice: 56.23,
productprice: 89.36
},
{
img: "http://img1.shikee.com/try/2016/09/28/14575020926479478831.jpg",
title: "买一送二新款青少年潮男大码T恤 学生字半袖修身款衣服半截袖青年",
marketprice: 56.23,
productprice: 89.36
}
]
}
},
methods: {
loadList1() {
const url = 'http://list.ydui.org/getdata.php';
this.$http.jsonp(url, {params: {type: 'pulldown', page: this.page1}}).then((response) => {
setTimeout(() => {
const _list = response.body;
this.list = [..._list, ...this.list];
this.$dialog.toast({
mes: _list.length > 0 ? '为您更新了' + _list.length + '条内容' : '已是最新内容'
});
this.$refs.prdemo.$emit('ydui.pullrefresh.finishLoad');
this.page1++;
}, 1000);
});
},
loadList2() {
this.$http.jsonp('http://list.ydui.org/getdata.php?type=backposition', {
params: {
page: this.page2,
pagesize: this.pageSize
}
}).then(function (response) {
setTimeout(() => { // 请求太快了,延迟一下方便看效果!
const _list = response.body;
this.list = [...this.list, ..._list];
if (_list.length < this.pageSize || this.page2 >= 4) {
// 所有数据加载完毕
this.$refs.lsdemo.$emit('ydui.infinitescroll.loadedDone');
return;
}
// 单次请求数据完毕
this.$refs.lsdemo.$emit('ydui.infinitescroll.finishLoad');
this.page2++;
}, 1000);
});
}
}
}
</script>