1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view>
- <view class="search">
- <u-search placeholder="搜索商品名称" v-model="param.customerName" bgColor="white" @search="refresh()" :animation="true" actionText="取消" @clear="refresh()"></u-search>
- <view class="clear"></view>
- </view>
- <view class="goodsList">
- <view class="sort-list">
- <view class="sort-item" :class="{ active: item.check }" v-for="(item, index) in sort" :key="index" @click="select(item, index)">
- <text>{{ item.name }}</text>
- <text v-if="index > 0 && item.isAsc == 'desc'" class="icon"></text>
- <text v-if="index > 0 && item.isAsc == 'asc'" class="icon"></text>
- </view>
- <view class="type" @click="show = true">
- <text>分类</text>
- <text class="icon"></text>
- </view>
- <view class="clear"></view>
- </view>
- <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
- <view class="title">广西京东自营店南宁分店</view>
- <image src="../../../static/news.jpg" mode="aspectFill" class="pic"></image>
- <view class="con">
- <view class="productName omit">八角茴香(未磨)(可食用)</view>
- <view class="desc">50吨</view>
- <view class="price">¥ 5000</view>
- <view class="icon buy" v-if="user.userType == 2"></view>
- </view>
- <view class="clear"></view>
- </view>
- </view>
- <productType v-model="show"></productType>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- user: this.getUser(),
- show: false,
- sort: [{ name: '综合' }, { name: '日期' }, { name: '价格' }],
- list: [{}, {}, {}, {}],
- param: { pageNo: 1, pageSize: 10 },
- loadMore: true
- };
- },
- onLoad(e) {
- //this.getData();
- },
- methods: {
- getData() {
- this.http.request({
- url: '/level-one-server/app/TbGoodsTransit/getTransitList',
- data: this.param,
- loading: 'false',
- success: res => {
- this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
- this.list.push(...res.data.data);
- }
- });
- },
- detail(item) {
- uni.navigateTo({ url: '/pages/market/two/detail?id=' + item.id });
- },
- //刷新数据
- refresh() {
- this.loadMore = true;
- this.param.pageNum = 1;
- this.list = [];
- this.getData();
- }
- },
- //下拉刷新
- onPullDownRefresh() {
- setTimeout(() => {
- this.refresh();
- uni.stopPullDownRefresh();
- }, 1000);
- },
- //上拉加载
- onReachBottom() {
- if (this.loadMore) {
- this.param.pageNum++;
- this.getData();
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: $pg;
- }
- .search {
- padding: 12px 12px 0px 12px;
- }
- </style>
|