Commit 28444f32 authored by 黄奎's avatar 黄奎

页面修改

parent 697b674c
...@@ -30,5 +30,11 @@ namespace Mall.Common.Enum.TradePavilion ...@@ -30,5 +30,11 @@ namespace Mall.Common.Enum.TradePavilion
/// </summary> /// </summary>
[EnumField("首发")] [EnumField("首发")]
SF = 4, SF = 4,
/// <summary>
/// 品牌
/// </summary>
[EnumField("品牌")]
PingPai = 5,
} }
} }
...@@ -89,7 +89,7 @@ namespace Mall.WebApi.Controllers.MallBase ...@@ -89,7 +89,7 @@ namespace Mall.WebApi.Controllers.MallBase
FormType = (Common.Enum.TradePavilion.CustomFormTypeEnum)parms.GetInt("FormType") FormType = (Common.Enum.TradePavilion.CustomFormTypeEnum)parms.GetInt("FormType")
}; };
var formData = parms.GetStringValue("FormData"); var formData = parms.GetStringValue("FormData");
List<FormDataItem> dataList = customFormModule.AnalyzeFormComponent(formData); List<FormDataItem> dataList = customFormModule.AnalyzeFormComponent(formData,isGetAnswer:true);
if (dataList != null && dataList.Count > 0) if (dataList != null && dataList.Count > 0)
{ {
model.FormData = Common.Plugin.JsonHelper.Serialize(dataList); model.FormData = Common.Plugin.JsonHelper.Serialize(dataList);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment