mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:53:25 +08:00
# 2022-02-09
### 1.3.5 开源社区版(会员专业版同步修改): 无 ### 0.1.5 会员专业版: 【升级】nuget升级常用组件到最新版本。 【修复】服务商品列表图片组件从image调整为u--image组件。#I4RUC6 【优化】规范coreshop-goods.vue组件for循环未定义key的问题。 【修复】修复因升级uview版本导致【商品选项卡goodTabBar组件】切换失效的问题。 【新增】微信自定义交易组件增加【商品审核结果回调】,【类目审核结果回调】微信服务器消息推送处理。 【优化】调整自定义交易组件sku价格为decimal(18, 2)类型,方便小数处理。 【优化】微信自定义交易组件增加图片同步至微信侧功能。 【优化】重命名一些方法名称大小写。 【新增】首页设计轮播图增加高度设置功能。#I4SWEA 【修复】优化在苹果6/7/8plus及安卓一些机型出现分享海报弹窗文字被遮挡的问题。#I4SWCA
This commit is contained in:
@@ -109,7 +109,6 @@ namespace CoreCms.Net.Configuration
|
||||
QiNiuKoDo = 3,
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 本地存储位置
|
||||
/// </summary>
|
||||
@@ -121,6 +120,7 @@ namespace CoreCms.Net.Configuration
|
||||
API = 1
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region User用户相关===========================================================================
|
||||
@@ -772,6 +772,24 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
#region MyRegion
|
||||
/// <summary>
|
||||
/// 购物车数量设置方式(1是直接增加/2是赋值)
|
||||
/// </summary>
|
||||
public enum CartSetNumType
|
||||
{
|
||||
/// <summary>
|
||||
/// 增加
|
||||
/// </summary>
|
||||
Increase = 1,
|
||||
/// <summary>
|
||||
/// 设置
|
||||
/// </summary>
|
||||
Set = 2
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region OrderLog订单日志=====================================================
|
||||
|
||||
/// <summary>
|
||||
@@ -2731,7 +2749,6 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region 接龙相关
|
||||
|
||||
public enum SolitaireStatus
|
||||
@@ -2751,6 +2768,7 @@ namespace CoreCms.Net.Configuration
|
||||
#endregion
|
||||
|
||||
#region redis缓存类型
|
||||
|
||||
public enum AccessTokenEnum
|
||||
{
|
||||
|
||||
@@ -2771,5 +2789,44 @@ namespace CoreCms.Net.Configuration
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 自定义交易组件
|
||||
|
||||
/// <summary>
|
||||
/// 售后订单状态
|
||||
/// </summary>
|
||||
public enum ShopAftersaleAddStatus
|
||||
{
|
||||
未受理 = 0,
|
||||
用户取消 = 1,
|
||||
商家受理中 = 2,
|
||||
商家逾期未处理 = 3,
|
||||
商家拒绝退款 = 4,
|
||||
商家拒绝退货退款 = 5,
|
||||
待买家退货 = 6,
|
||||
退货退款关闭 = 7,
|
||||
待商家收货 = 8,
|
||||
商家退款中 = 11,
|
||||
商家逾期未退款 = 12,
|
||||
退款完成 = 13,
|
||||
退货退款完成 = 14,
|
||||
换货完成 = 15,
|
||||
待商家发货 = 16,
|
||||
待用户确认收货 = 17,
|
||||
商家拒绝换货 = 18,
|
||||
商家已收到货 = 19
|
||||
}
|
||||
/// <summary>
|
||||
/// 售后类型
|
||||
/// </summary>
|
||||
public enum ShopAftersaleAddType
|
||||
{
|
||||
退款 = 0,
|
||||
退款退货 = 1,
|
||||
换货 = 2
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user