Commit 6b85c98a by zhiwj

修改门店标签的传值

parent 8336f56f
......@@ -72,8 +72,8 @@ public class StoreTagController {
@RequestMapping("/edit-store-tag")
public RestResponse edit(StoreTagDTO dto, MultipartFile file, Integer dataType) {
Map<String, Object> map = parseFile(file, dto.getStoreWidgetId());
if (dataType != null && dataType == 2) {
Map<String, Object> map = parseFile(file, dto.getStoreWidgetId());
Object msg = map.get("msg");
if (msg != null) {
return RestResponse.failure(ErrorCode.OPERATION_FAILED.getCode(), msg.toString());
......
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