升级自定义交易组件常用商品接口,spu接口,品牌接口,订单接口,物流接口。

This commit is contained in:
大灰灰
2022-06-30 22:42:19 +08:00
parent 43a691d1be
commit dc408b8596
27 changed files with 1070 additions and 667 deletions

View File

@@ -1,4 +1,6 @@
namespace CoreCms.Net.Configuration
using System.Collections.Generic;
namespace CoreCms.Net.Configuration
{
public class GlobalConstVars
{
@@ -434,20 +436,17 @@
/// </summary>
public static string OrderPath(string orderId)
{
return "/pages/member/order/orderdetail?orderId=" + orderId;
return "/pages/member/order/detail/detail?orderId=" + orderId;
}
/// <summary>
/// 订单地址
/// 商品地址
/// </summary>
public static string GoodDetail(string goodId)
{
return "/pages/goods/goodDetails/goodDetails?id=" + goodId;
}
}
}