diff --git a/api/request.ts b/api/request.ts index 219aee6..69017c9 100644 --- a/api/request.ts +++ b/api/request.ts @@ -2,4 +2,4 @@ export const Url = 'http://localhost:9092/api' //后端接口文档 export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址 export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址 -export const baseUrl = testUrl \ No newline at end of file +export const baseUrl = Url \ No newline at end of file diff --git a/pages.json b/pages.json index a27d8da..3691c23 100644 --- a/pages.json +++ b/pages.json @@ -205,13 +205,6 @@ { "navigationBarTitleText" : "" } - }, - { - "path" : "pages/syy", - "style" : - { - "navigationBarTitleText" : "" - } } ], "globalStyle": { diff --git a/pages/Shopping-cart/component/addProduct.vue b/pages/Shopping-cart/component/addProduct.vue index a648c86..2d46cdc 100644 --- a/pages/Shopping-cart/component/addProduct.vue +++ b/pages/Shopping-cart/component/addProduct.vue @@ -82,11 +82,8 @@ cookie: wx.getStorageSync('cookie') }, data: { - userId: userInfo.value.id, goodId: productBrief.value.id, - quantity: quantity.value, - subtotal: productBrief.value.price * quantity.value, - isGoodType: productBrief.value.isGoodType + quantity: quantity.value } }) if (res.data.code === 1) { @@ -107,7 +104,7 @@ //减少商品 const decrease = () => { // console.log('index-->',index); - if (quantity.value > 0) { + if (quantity.value != 1) { quantity.value -= 1 } } diff --git a/pages/Shopping-cart/productmain/productmain.vue b/pages/Shopping-cart/productmain/productmain.vue index 6ab8d21..9c1532d 100644 --- a/pages/Shopping-cart/productmain/productmain.vue +++ b/pages/Shopping-cart/productmain/productmain.vue @@ -2,7 +2,7 @@