Commit 5bfb1a6b by Sxy

feat: 食品

parent ee01ac9a
......@@ -57,6 +57,10 @@ class AliHandler {
params.businessType = "wangwen";
params.businessName = "wangwen"
}
if (actionBody.type_code == "food") {
params.businessType = "food";
params.businessName = "food"
}
}
var rtn = await rc.execPost3({ "d": params }, requrl);
......@@ -512,16 +516,19 @@ class AliHandler {
if (data.needsolution.bizType == "wangwen") {
obj.businessType = "wangwen";
}
if (data.needsolution.bizType == "food") {
obj.businessType = "food";
}
}
if (data.needsolution.typeName) { //产品名称
if (data.needsolution.typeName == "icp申请") {
obj.businessName = "icp";
}
if (data.needsolution.typeName == "edi申请") {
} else if (data.needsolution.typeName == "edi申请") {
obj.businessName = "edi";
}
if (data.needsolution.typeName == "文网文") {
} else if (data.needsolution.typeName == "文网文") {
obj.businessName = "文网文";
} else {
obj.businessName = data.needsolution.typeName
}
}
if (data.skuCode) { //产品的sku
......
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