|
@@ -17,7 +17,7 @@
|
|
|
<img src="/img/base/loading.gif">
|
|
|
</div>
|
|
|
<template v-else>
|
|
|
- <div class="wrap">
|
|
|
+ <div class="wrap clear">
|
|
|
|
|
|
<!-- <template>-->
|
|
|
<!-- <ul class="secondTitle " v-if="isPC">-->
|
|
@@ -57,11 +57,10 @@
|
|
|
<ul class="mainTab" v-if="mainflag">
|
|
|
<li v-for="(item,index) in tabList" @click='handleChild(item)' :class="currentID2 ==index?'addstyle':' '">{{item.name}}</li>
|
|
|
</ul>
|
|
|
-
|
|
|
+ <div class="shopList-tips">
|
|
|
+ <p>说明:仅限采美会员可查看价格及联系方式</p>
|
|
|
+ </div>
|
|
|
<div class="shopList">
|
|
|
- <div class="shopList-tips">
|
|
|
- <p>说明:仅限采美会员可查看价格及联系方式</p>
|
|
|
- </div>
|
|
|
<div class="Listitem" v-if="isShow" v-for="(item, index) in tabchildList">
|
|
|
<a class="itemImg onhref" :href="'/flea-market-'+item.productId+'.html'" target="_blank">
|
|
|
<img :src="item.imageList[0]" :class="item.sold==1?'activeImg':''" class="bigImg">
|
|
@@ -91,7 +90,7 @@
|
|
|
</span>
|
|
|
<span v-else>
|
|
|
<span v-if="item.sold == 1"> </span>
|
|
|
- <span v-else>¥{{ item.price }}</span>
|
|
|
+ <span v-else>¥{{ item.price > 0 ? item.price : '议价' }}</span>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="shijian">
|
|
@@ -133,19 +132,19 @@
|
|
|
<div v-if="(!isPC) && !hasNextPage" class="noMore">---- 没有更多了 ----</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <div class="pageWrap clear" v-if="isPC">
|
|
|
- <a v-if="listQuery.pageNum>1" class="prev" @click="toPagination(listQuery.pageNum*1-1)" href="javascript:void(0);"></a>
|
|
|
- <template v-for="n in showPageBtn">
|
|
|
- <a v-if="n" :class="{ 'on': (n==listQuery.pageNum) }" @click="toPagination(n)" href="javascript:void(0);">{{ n }}</a>
|
|
|
- <template v-else>···</template>
|
|
|
- </template>
|
|
|
- <a v-if="listQuery.pageNum<pageTotal" class="next" @click="toPagination(listQuery.pageNum*1+1)" href="javascript:void(0);"> </a>
|
|
|
- <span>共<b v-text="pageTotal>1?pageTotal:1"></b>页</span>
|
|
|
- <span>跳至</span>
|
|
|
- <input v-model="pageInput" @blur="checkNum()" />
|
|
|
- <span>页</span>
|
|
|
- <a class="btn" href="javascript:void(0);" @click="toPagination(pageInput)">点击跳转</a>
|
|
|
- </div>
|
|
|
+<!-- <div class="pageWrap clear" v-if="isPC">-->
|
|
|
+<!-- <a v-if="listQuery.pageNum>1" class="prev" @click="toPagination(listQuery.pageNum*1-1)" href="javascript:void(0);"></a>-->
|
|
|
+<!-- <template v-for="n in showPageBtn">-->
|
|
|
+<!-- <a v-if="n" :class="{ 'on': (n==listQuery.pageNum) }" @click="toPagination(n)" href="javascript:void(0);">{{ n }}</a>-->
|
|
|
+<!-- <template v-else>···</template>-->
|
|
|
+<!-- </template>-->
|
|
|
+<!-- <a v-if="listQuery.pageNum<pageTotal" class="next" @click="toPagination(listQuery.pageNum*1+1)" href="javascript:void(0);"> </a>-->
|
|
|
+<!-- <span>共<b v-text="pageTotal>1?pageTotal:1"></b>页</span>-->
|
|
|
+<!-- <span>跳至</span>-->
|
|
|
+<!-- <input v-model="pageInput" @blur="checkNum()" />-->
|
|
|
+<!-- <span>页</span> -->
|
|
|
+<!-- <a class="btn" href="javascript:void(0);" @click="toPagination(pageInput)">点击跳转</a>-->
|
|
|
+<!-- </div>-->
|
|
|
</div>
|
|
|
|
|
|
|