修改bug,更改字体图标

This commit is contained in:
mabo
2021-05-18 18:03:00 +08:00
parent c3ed622031
commit 6d0e7b3825
45 changed files with 135 additions and 7493 deletions

View File

@@ -54,6 +54,12 @@ Vue.prototype.setStore = setStore;
Vue.prototype.getStore = getStore;
Vue.prototype.removeStore = removeStore;
Vue.prototype.md5 = md5;
Vue.prototype.linkTo = function (goodsId, skuId, link='https://pc-b2b2c.pickmall.cn') { // 跳转买家端商品
window.open(`${link}/goodsDetail?goodsId=${goodsId}&skuId=${skuId}`, '_blank')
};
Vue.prototype.wapLinkTo = function (goodsId, skuId) { // app端二维码
return `https://m-b2b2c.pickmall.cn/pages/product/goods?id=${skuId}&goodsId=${goodsId}`
};
Array.prototype.remove = function(from, to) {
var rest = this.slice((to || from) + 1 || this.length);