diff --git a/buyer/package.json b/buyer/package.json index 1c90bc93..b53d6d46 100644 --- a/buyer/package.json +++ b/buyer/package.json @@ -10,6 +10,7 @@ "dependencies": { "@amap/amap-jsapi-loader": "0.0.7", "axios": "^0.19.2", + "dplayer": "^1.27.1", "js-cookie": "^2.2.1", "less": "^2.7.0", "less-loader": "^5.0.0", diff --git a/buyer/src/assets/iconfont/play.svg b/buyer/src/assets/iconfont/play.svg new file mode 100644 index 00000000..31f09a4f --- /dev/null +++ b/buyer/src/assets/iconfont/play.svg @@ -0,0 +1 @@ + diff --git a/buyer/src/components/goodsDetail/ShowGoods.vue b/buyer/src/components/goodsDetail/ShowGoods.vue index ec42c3b7..089266aa 100644 --- a/buyer/src/components/goodsDetail/ShowGoods.vue +++ b/buyer/src/components/goodsDetail/ShowGoods.vue @@ -4,22 +4,15 @@
+
- -
-
- 实物商品 -
-
- 虚拟商品 + +
+ +
+

{{ skuDetail.goodsName }} + + 实物商品 + + + 虚拟商品 +

@@ -272,7 +277,8 @@ class="add-buy-car" v-if="$route.query.way !== 'POINT' && skuDetail.authFlag === 'PASS'" > - + + +
+ +
+
@@ -297,6 +309,7 @@ diff --git a/seller/src/views/shop/shopSetting.vue b/seller/src/views/shop/shopSetting.vue index 85aa5d25..2f0ccc1a 100644 --- a/seller/src/views/shop/shopSetting.vue +++ b/seller/src/views/shop/shopSetting.vue @@ -272,8 +272,6 @@ import liliMap from "@/views/my-components/map/index"; import regionMap from "@/views/lili-components/region"; import * as RegExp from "@/libs/RegExp.js"; import Cookies from "js-cookie"; -import {editDeliverAddress, getDeliverAddress} from "../../api/shops"; - export default { name: "shopSetting", components: { @@ -298,7 +296,7 @@ export default { }, //库存预警form stockWarningForm: { - stockWarning: "", // 库存预警数量 + stockWarning: 0, // 库存预警数量 }, //im form udeskForm: { @@ -458,7 +456,7 @@ export default { Cookies.set("userInfoSeller", JSON.stringify(res.result)); //库存预警数赋值 this.$nextTick(() => { - this.stockWarningForm.stockWarning = res.result.stockWarning + ""; + this.stockWarningForm.stockWarning = res.result.stockWarning; }); if (res.result.merchantEuid) { //赋予坐席id @@ -479,7 +477,6 @@ export default { API_Shop.getDeliverAddress().then(res=>{ if(res.success){ if(res.result!= '' && res.result != null){ - console.log(89898999998) this.addressGoods = res.result; this.regionGoods = res.result.salesConsignorAddressPath; this.regionIdS = res.result.salesConsignorAddressId;