Commit edeea7e7 authored by 黄奎's avatar 黄奎

bug修改

parent 9afa17cf
...@@ -260,7 +260,7 @@ namespace Mall.Module.TradePavilion ...@@ -260,7 +260,7 @@ namespace Mall.Module.TradePavilion
}; };
if (selectItem.IsMultiple) if (selectItem.IsMultiple)
{ {
List<string> valueList = JsonHelper.DeserializeObject<List<string>>(dropdownObj.GetStringValue("OptionValue")); List<int> valueList = Common.ConvertHelper.StringToList(dropdownObj.GetStringValue("OptionValue").Split(','));
if (valueList != null && valueList.Count > 0) if (valueList != null && valueList.Count > 0)
{ {
selectItem.OptionValue = string.Join(",", valueList); selectItem.OptionValue = string.Join(",", valueList);
......
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