【新增】增加商品列表dto类及查询方法,首页【商品组件】【商品tab组】【仿点餐界面】【栏目列表页】【推荐商品列表】进行替换。

【优化】优化普通商品及营销商品内页不同dom之间间距。微调其他页面样式
【调整】移除.net5升级到.net6保留的startup.cs文件,使用program.cs
This commit is contained in:
大灰灰
2022-11-06 05:38:42 +08:00
parent 84fbcfffbd
commit 45877f0d5c
23 changed files with 1316 additions and 819 deletions

View File

@@ -418,7 +418,7 @@ namespace CoreCms.Net.Configuration
/// 微信自定义交易组件-同步创建售后单
/// </summary>
public const string TransactionComponentAfterSaleCreateSync = "TransactionComponentAfterSaleCreateSyncQueue";
//用户相关
@@ -460,4 +460,18 @@ namespace CoreCms.Net.Configuration
}
/// <summary>
/// 当字段为空图片,替换前端的地址
/// </summary>
public static class EmptyOrNullImagePath
{
/// <summary>
/// 图片地址
/// </summary>
public static string GoodImage = "/static/images/common/empty.png";
}
}