mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
【新增】新增微信扫码支付功能,对接PC端。
【新增】增加DTO类库,将逐步完善dto层。 【修复】修复【分类】切换后,切换回来未清零原始数据,导致更新数据重复的问题。 【调整】移除模板库功能,防止出现审核因为模板库页面存在而导致的审核失败。暂将模板库的代码存放到会员QQ群内,方便下载使用。 【调整】代码生成器【Repository.tpl】移除Cache手动增删改,【SqlSugarSetup】增加sqlsugar自动检测增删改后清理二级缓存。 【调整】后端新增秒杀独立组件,用于区分团购及秒杀的差异,首页新增秒杀组件。 【优化】重写首页所有组件样式及接口数据获取效率。 【优化】优化拼团,秒杀,团购,接龙数据获取逻辑,提升列表及详情页面数据获取效率。 【优化】调整拼团,秒杀,团购,服务商品推广海报为新式海报效果。增加服务商品推广海报。 【优化】清理h5相关代码判断,移除h5支付组件,提高响应速度。 【优化】移除小程序前端冗余代码。加快代码执行效率。
This commit is contained in:
@@ -417,19 +417,19 @@ namespace CoreCms.Net.Configuration
|
||||
public enum OrderStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单正常
|
||||
/// 进行中
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-btn-normal layui-btn-xs'>订单正常</button>")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-normal layui-btn-xs'>进行中</button>")]
|
||||
Normal = 1,
|
||||
/// <summary>
|
||||
/// 订单完成
|
||||
/// 已完结
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-xs'>订单完成</button>")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-xs'>已完结</button>")]
|
||||
Complete = 2,
|
||||
/// <summary>
|
||||
/// 订单取消
|
||||
/// 已取消
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-disabled layui-btn-xs'>订单取消</button>")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-disabled layui-btn-xs'>已取消</button>")]
|
||||
Cancel = 3
|
||||
}
|
||||
|
||||
@@ -439,19 +439,19 @@ namespace CoreCms.Net.Configuration
|
||||
public enum OrderStatusDescription
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单正常
|
||||
/// 进行中
|
||||
/// </summary>
|
||||
[Description("正常(-)")]
|
||||
[Description("进行中(-)")]
|
||||
Normal = 1,
|
||||
/// <summary>
|
||||
/// 订单完成
|
||||
/// 已完结
|
||||
/// </summary>
|
||||
[Description("完成(√)")]
|
||||
[Description("已完结(√)")]
|
||||
Complete = 2,
|
||||
/// <summary>
|
||||
/// 订单取消
|
||||
/// 已取消
|
||||
/// </summary>
|
||||
[Description("取消(×)")]
|
||||
[Description("已取消(×)")]
|
||||
Cancel = 3
|
||||
}
|
||||
|
||||
@@ -1696,15 +1696,15 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
public enum WeiChatPayTradeType
|
||||
{
|
||||
[Description("JSAPI")]
|
||||
[Description("JSAPI(小程序支付)")]
|
||||
JSAPI = 1,
|
||||
[Description("JSAPI_OFFICIAL")]
|
||||
[Description("JSAPI_OFFICIAL(公众号支付)")]
|
||||
JSAPI_OFFICIAL = 2,
|
||||
[Description("NATIVE")]
|
||||
[Description("NATIVE(扫码支付)")]
|
||||
NATIVE = 3,
|
||||
[Description("APP")]
|
||||
[Description("APP(APP支付)")]
|
||||
APP = 4,
|
||||
[Description("MWEB")]
|
||||
[Description("MWEB(H5支付)")]
|
||||
MWEB = 5
|
||||
}
|
||||
|
||||
@@ -1944,6 +1944,11 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
[Description("12接龙")]
|
||||
Solitaire = 12,
|
||||
/// <summary>
|
||||
/// 13服务商品
|
||||
/// </summary>
|
||||
[Description("13服务商品")]
|
||||
ServiceGoods = 13,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user