diff --git a/components/goods-batch-buy/goods-batch-buy.vue b/components/goods-batch-buy/goods-batch-buy.vue index 90c5a06d..52f83cc0 100644 --- a/components/goods-batch-buy/goods-batch-buy.vue +++ b/components/goods-batch-buy/goods-batch-buy.vue @@ -19,7 +19,12 @@ - + + + + + + {{ item.name }} @@ -53,8 +58,13 @@ - - + + + + + + + {{ item.name }} {{ propCurrencySymbol }}{{ item.base.price }} @@ -471,76 +481,96 @@ export default { }, }); }, + + // 规格图片预览事件 + spec_images_view_event(e) { + var value = e.currentTarget.dataset.value || null; + if (value != null) { + uni.previewImage({ + current: value, + urls: [value], + }); + } + } }, }; diff --git a/static/icon/iconfont.css b/static/icon/iconfont.css index 6b2bb44d..2654c7f6 100644 --- a/static/icon/iconfont.css +++ b/static/icon/iconfont.css @@ -14,6 +14,18 @@ -moz-osx-font-smoothing: grayscale; } +.icon-enlarge-four:before { + content: "\e602"; +} + +.icon-enlarge:before { + content: "\e64e"; +} + +.icon-enlarge-border:before { + content: "\e6f2"; +} + .icon-map-navigator:before { content: "\10183"; } diff --git a/static/icon/iconfont.ttf b/static/icon/iconfont.ttf index 1a421352..acbd8495 100644 Binary files a/static/icon/iconfont.ttf and b/static/icon/iconfont.ttf differ