Ver Fonte

提交代码 修改报错

743180155@qq.com há 1 ano atrás
pai
commit
6d1e7d6d52

+ 1 - 1
src/pages/client/clientPackage/goodsEstimation.vue

@@ -31,7 +31,7 @@
       }
     },
     onLoad(option){
-      this.queryParams.orderId = option.orderList.orderSn
+      this.queryParams.orderId = option.orderList.orderId
       this.queryParams.goodsId = option.goodsList.goodsId
       this.queryParams.merchantId = option.orderList.merchantId
     },

+ 6 - 4
src/pages/client/clientPackage/orderAll.vue

@@ -80,11 +80,15 @@
         type: 0,
         type_name: '',
         size: 20,
-        // 订单状态:0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单
+        // 订单状态:0->待付款;1->已付款;2->已发货;3->已完成;4->已关闭;5->无效订单
         list: [{
             name: '待付款',
             type: 0,
           },
+		  {
+		    name: '已付款',
+		    type: 1,
+		  },
           {
             name: '待发货',
             type: 2,
@@ -191,9 +195,7 @@
       // 点击跳转到商品评价
       handlerSkipComment(item, itm) {
         uni.navigateTo({
-          url: `/pages/client/clientPackage/goodsEstimation?orderList=${JSON.stringify(
-          item,
-        )}&goodsList=${JSON.stringify(itm)}`,
+          url: `/pages/client/clientPackage/goodsEstimation?orderList=${JSON.stringify(item)}&goodsList=${JSON.stringify(itm)}`,
         });
       },
     },

+ 4 - 0
src/pages/client/clientUser/myGroup.vue

@@ -143,6 +143,10 @@
           font-size: 28rpx;
           font-weight: bold;
           color: #000;
+		  width: 100%;
+		  text-overflow: ellipsis;
+		  white-space: nowrap;
+		  overflow: hidden;
         }
 
         .person-item:last-child {

+ 2 - 2
src/utils/request.js

@@ -13,9 +13,9 @@ import {
 
 // 每次请求都创建一个新的实例
 const instance = axios.create({
-	baseURL: "https://test.api.chelvc.com",
+	// baseURL: "https://test.api.chelvc.com",
 	// baseURL: "http://192.168.68.77:11000",
-	// baseURL: "https://358175z5l5.yicp.fun",
+	baseURL: "https://358175z5l5.yicp.fun",
 	timeout: 10000,
 	adapter: UniAdapter
 });