Browse Source

bug fixes

plf 3 years ago
parent
commit
f763d0cd13

+ 1 - 5
src/main/java/com/caimei365/commodity/service/impl/SecondHandServiceImpl.java

@@ -124,11 +124,7 @@ public class SecondHandServiceImpl implements SecondHandService {
         // 二手仪器分类
         String instrumentType = second.getInstrumentType();
         if ("1".equals(instrumentType)) {
-            typeStr += "-轻光电";
-        } else if ("2".equals(instrumentType)) {
-            typeStr += "-重光电";
-        } else if ("3".equals(instrumentType)) {
-            typeStr += "-耗材配件";
+            typeStr += "-美容仪器";
         }
         second.setTypeStr(typeStr);
         return ResponseJson.success(second);