| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <template>
- <!--
- 本页面模板教程:https://ext.dcloud.net.cn/plugin?id=2672
- uni-list 文档:https://ext.dcloud.net.cn/plugin?id=24
- uniCloud 文档:https://uniapp.dcloud.io/uniCloud/README
- unicloud-db 组件文档:https://uniapp.dcloud.io/uniCloud/unicloud-db
- DB Schema 规范:https://uniapp.dcloud.net.cn/uniCloud/schema
- -->
- <view class="list">
- <customNav :shownav="true" :title="$t('index.mendianliebiao')" titledetl=""></customNav>
- <!-- 刷新页面后的顶部提示框 -->
- <!-- 当前弹出内容没有实际逻辑 ,可根据当前业务修改弹出提示 -->
- <view class="tips" :class="{ 'tips-ani': tipShow }">{{$t('index.liebiaogengxin')}}</view>
- <!--
- <unicloud-db ref="udb" v-slot:default="{data, loading, error, options}" :options="formData" :collection="collection"
- :field="field" @load="load">
- -->
- <!-- 基于 uni-list 的页面布局 -->
- <uni-list>
- <!-- to 属性携带参数跳转详情页面,当前只为参考 -->
- <uni-list-item :border="false" class="uni-list-item--waterfall" v-for="(item,index) in mendianList"
- :key="index" v-on:click="gotoDetail(item.id)" :clickable="clickable">
- <view slot="body" class="shop">
- <view class="item_content">
- <imageconver :isremen="true" :isyouhui="false" :youhuinote="''" class="mainimage"
- :imagSrc="item.image"></imageconver>
- <!-- <image class="mainimage" :src="item.image=='/static/defimages/ddd.png'?item.image:baseUrl+item.image" mode="scaleToFill" @error="imageError(index)"></image> -->
- <view class="buyBTact">
- <text class="title">{{item.posName}}</text>
- <!-- <view class="viewinrow">
- <image class="xingxing" src="/static/images/xingxing@3x.png" mode="widthFix"></image>
- <text class="pingfentext">4.5</text>
- </view> -->
- </view>
- <view class="">
- <text class="Dishes">{{item.area}}</text>
- </view>
- <view class="contentInRowS">
- <text class="textfontB5">{{$t('index.manX')}}
- {{$formPr(item.posPrice)}}{{$t('locale.huobidw')}}</text>
- <text class="textfontB5" style="color:#00A6FF;">{{$formPr(item.juli)}}Km</text>
- </view>
- </view>
- </view>
- </uni-list-item>
- </uni-list>
- <!-- 通过 loadMore 组件实现上拉加载效果,如需自定义显示内容,可参考:https://ext.dcloud.net.cn/plugin?id=29 -->
- <uni-load-more v-if="loading || status === 'noMore' " :status="status" />
- <!--</unicloud-db>-->
- </view>
- </template>
- <script>
- import api from "@/pages/api/api.js";
- export default {
- components: {},
- data() {
- return {
- // 数据表名
- //collection: 'opendb-mall-goods',
- // 查询字段,多个字段用 , 分割
- //field: 'goods_thumb,name,goods_tip,tag,goods_price,comment_count,month_sell_count,shop_name',
- formData: {
- status: 'loading', // 加载状态
- },
- tipShow: false, // 是否显示顶部提示框
- data: '',
- mendianList: {},
- status: 'more',
- loading: true,
- latitude: 0,
- longitude: 0,
- typeID: '',
- serverType: '',
- clickable: true,
- page: 1,
- juli: 0
- };
- },
- onLoad(option) {
- console.log('option', option);
- var tempjuli = uni.getStorageSync('FuWujuli');
- if ('' == tempjuli || null == tempjuli || undefined == tempjuli) {
- this.juli = 10;
- } else {
- this.juli = tempjuli;
- }
- this.typeID = option.id;
- this.serverType = option.serverType;
- this.latitude = option.latitude;
- this.longitude = option.longitude;
- if (null == this.serverType || undefined == this.serverType || '' == this.serverType) {
- this.getmendianlist(1);
- this.status = 'more';
- } else {
- this.getserverlist(1);
- this.status = 'more';
- }
- this.formData.status = 'loading'
- },
- methods: {
- /*
- load(data, ended) {
- if (ended) {
- this.formData.status = 'noMore'
- }
- },
- */
- gotoDetail(e) {
- console.log(e);
- uni.navigateTo({
- url: '/pages/shanpinxungou/shangjia/shangjiaView?id=' + e
- })
- },
- getmendianlist(page) {
- this.tipShow = true;
- var data;
- if (null == this.typeID || undefined == this.typeID || '' == this.typeID) {
- data = {
- longitude: this.longitude,
- latitude: this.latitude,
- page: page,
- area: '',
- sort: '',
- juli: this.juli
- }
- } else {
- data = {
- longitude: this.longitude,
- latitude: this.latitude,
- page: page,
- area: '',
- sort: this.typeID,
- juli: this.juli
- }
- }
- //console.log(data)
- api('getmendianlist', data,
- r => {
- console.log(r.data.data);
- if (this.page == 1) {
- this.mendianList = r.data.data;
- } else {
- if (r.data.data && r.data.data.length > 0) {
- this.mendianList = this.mendianList.concat(r.data.data)
- } else {
- this.status = 'noMore';
- }
- }
- //console.log(this.mendianList)
- uni.stopPullDownRefresh()
- this.tipShow = false
- }, failc => {
- console.log(failc)
- uni.stopPullDownRefresh()
- this.tipShow = false
- })
- },
- getserverlist(page) {
- this.formData.status = 'more';
- this.tipShow = true;
- var data = {
- longitude: this.longitude,
- latitude: this.latitude,
- page: page,
- area: '',
- serverType: this.serverType,
- juli: this.juli
- };
- console.log('getserverlist', data);
- api('getaddressList', data,
- r => {
- console.log(r.data.data);
- if (this.page == 1) {
- this.mendianList = r.data.data;
- } else {
- if (r.data.data.length > 0) {
- var temp = this.mendianList;
- for (var i = 0; i < r.data.data.length; i++) {
- temp.push(r.data.data[i]);
- }
- this.mendianList = temp;
- } else {
- this.status = 'noMore';
- }
- }
- uni.stopPullDownRefresh()
- this.tipShow = false
- }, failc => {
- uni.stopPullDownRefresh()
- this.tipShow = false
- })
- },
- },
- /**
- * 下拉刷新回调函数
- */
- onPullDownRefresh() {
- this.getmendianlist(1);
- this.status = 'more';
- },
- /**
- * 上拉加载回调函数
- */
- onReachBottom() {
- this.page = this.page + 1;
- this.getmendianlist(this.page);
- },
- };
- </script>
- <style lang="scss">
- @import '@/common/uni-ui.scss';
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #efeff4;
- min-height: 100%;
- height: auto;
- }
- .tips {
- color: #67c23a;
- font-size: 14px;
- line-height: 40px;
- text-align: center;
- background-color: #f0f9eb;
- height: 0;
- opacity: 0;
- transform: translateY(-100%);
- transition: all 0.3s;
- }
- .tips-ani {
- transform: translateY(0);
- height: 40px;
- opacity: 1;
- }
- .shop {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- // 默认加入 scoped ,所以外面加一层提升权重
- .list {
- .uni-list--waterfall {
- /* #ifndef H5 || APP-VUE */
- // 小程序 编译后会多一层标签,而其他平台没有,所以需要特殊处理一下
- ::v-deep .uni-list {
- /* #endif */
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- padding: 5rpx;
- box-sizing: border-box;
- /* #ifdef H5 || APP-VUE */
- // h5 和 app-vue 使用深度选择器,因为默认使用了 scoped ,所以样式会无法穿透
- ::v-deep
- /* #endif */
- .uni-list-item--waterfall {
- width: 50%;
- box-sizing: border-box;
- .uni-list-item__container {
- padding: 0rpx;
- flex-direction: column;
- }
- }
- /* #ifndef H5 || APP-VUE */
- }
- /* #endif */
- }
- }
- .item_content {
- background: white;
- width: 100%;
- height: 390rpx;
- margin-right: 20rpx;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- }
- .mainimage {
- width: 100%;
- height: 300rpx;
- display: block;
- border-radius: 0rpx;
- }
- .viewinrow {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .buyBTact {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .title {
- padding-top: 8rpx;
- width: 100%;
- text-align: left;
- font-size: 32rpx;
- line-height: 32rpx;
- font-weight: initial
- }
- .Dishes {
- width: 100%;
- text-align: left;
- font-size: 28rpx;
- line-height: 28rpx;
- color: darkgray;
- }
- .price {
- width: 100%;
- text-align: left;
- font-size: 28rpx;
- line-height: 28rpx;
- color: #E02F73;
- }
- .xingxing {
- width: 40rpx;
- height: 40rpx;
- }
- .pingfentext {
- width: 100%;
- text-align: left;
- font-size: 28rpx;
- line-height: 28rpx;
- color: black;
- }
- </style>
|