diff --git a/buyer/build/webpack.base.conf.js b/buyer/build/webpack.base.conf.js index 1642bb12..11e004fc 100644 --- a/buyer/build/webpack.base.conf.js +++ b/buyer/build/webpack.base.conf.js @@ -85,6 +85,14 @@ module.exports = { limit: 10000, name: utils.assetsPath('fonts/[name].[hash:7].[ext]') } + }, + { + test: /\.(cur)(\?.*)?$/, + loader: 'url-loader', + options: { + limit: 10000, + name: utils.assetsPath('cur/[name].[hash:7].[ext]') + } } ] }, diff --git a/buyer/src/components/coupon/Coupon.vue b/buyer/src/components/coupon/Coupon.vue index a54e8ead..bad97edc 100644 --- a/buyer/src/components/coupon/Coupon.vue +++ b/buyer/src/components/coupon/Coupon.vue @@ -6,7 +6,7 @@
{{item.price | unitPrice}} - {{item.discount}} + {{item.couponDiscount}} 满{{item.consumeThreshold}}元可用

使用范围:{{useScope(item.scopeType, item.storeName)}}

diff --git a/buyer/src/components/drawer/Drawer.vue b/buyer/src/components/drawer/Drawer.vue index d9c3e9b8..54db455f 100644 --- a/buyer/src/components/drawer/Drawer.vue +++ b/buyer/src/components/drawer/Drawer.vue @@ -38,7 +38,7 @@
{{coupon.price | unitPrice}} - {{coupon.discount}} + {{coupon.couponDiscount}} 满{{coupon.consumeThreshold}}元可用

使用范围:{{useScope(coupon.scopeType, coupon.storeName)}}

diff --git a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue index 99c878ae..30513434 100644 --- a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue +++ b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue @@ -56,8 +56,8 @@

{{item.content}}

-
-
+
diff --git a/buyer/src/components/header/Header.vue b/buyer/src/components/header/Header.vue index 79ef6eb0..0c621781 100644 --- a/buyer/src/components/header/Header.vue +++ b/buyer/src/components/header/Header.vue @@ -53,16 +53,19 @@
  • 我的订单
  • 我的足迹
  • -
  • +
  • {{cartNum < 100 ? cartNum : '99'}} - - - 购物车 + + + + 购物车 + + @@ -115,7 +118,7 @@