Authored by shuaiguo

Merge branch 'refs/heads/develop'

... ... @@ -13,12 +13,10 @@ export const getImgUrl = function(src, width = 300, height = 300, mode = 2) {
}).replace(/https?:/, '') + '/interlace/1' : '';
};
export const replaceHttp = function(src) {
return src.replace(/https?:/, '');
};
export const debounce = (idle, action) => { // 函数去抖动,超过一定时间才会执行,如果周期内触发,充值计时器
let last;
... ... @@ -34,7 +32,6 @@ export const debounce = (idle, action) => { // 函数去抖动,超过一定时
};
};
export const throttle = (delay, action) => { // 函数节流器,定义函数执行间隔,按频率触发函数
let last = 0;
... ...
... ... @@ -21,7 +21,7 @@
</div>
</template>
</cube-slide>
<div class="qiugou" v-if="isQiugouEnabled" @click="qiugou"></div>
<!-- <div class="qiugou" v-if="isQiugouEnabled" @click="qiugou"></div> -->
</div>
<div class="info-basic">
... ... @@ -100,7 +100,7 @@
<div class="fav" @click="_toggleFav"><i class="iconfont"
:class="[isFav ? 'icon-star-fill': 'icon-star-outline']"/><span>收藏</span></div>
<cube-button class="sell" @click="sell">出售</cube-button>
<cube-button class="buy active" @click="buy">购买</cube-button>
<cube-button class="buy active" @click="qiugou">求购</cube-button>
</div>
<buy-sheet v-if="showBidSheet" @hide="onBidSheetHide" :productId="productId"/>
<size-request-sheet v-if="showSizeRequestSheet" @hide="onSizeRequestHide" :productId="productId"/>
... ...
{
"name": "xianyu-ufo-app-web",
"version": "1.6.4",
"version": "1.6.6",
"private": true,
"description": "Xianyu Project With Express",
"repository": {
... ...