Explorar el Código

将商品名字单独采用关键字检查

Guos hace 1 día
padre
commit
6cbb8b7602
Se han modificado 1 ficheros con 2 adiciones y 3 borrados
  1. 2 3
      src/api/hisStore/storeProduct.js

+ 2 - 3
src/api/hisStore/storeProduct.js

@@ -182,13 +182,12 @@ export function getExemptSecondMedicalDeviceList() {
 }
 
 //产品成分校验
-export function selectForbiddenKeywords(ingredient, productName) {
+export function selectForbiddenKeywords(keywords) {
   return request({
     url: '/store/store/storeProduct/selectForbiddenKeywords',
     method: 'post',
     data: {
-        ingredient: ingredient,
-        productName:  productName
+      keywords: keywords
     }
   })
 }