|
|
|
@ -431,22 +431,22 @@ |
|
|
|
// data.punishDataList = res.data; |
|
|
|
res.rows.forEach(res => { |
|
|
|
var obj = {} |
|
|
|
var textArr = ""; |
|
|
|
var textArr = []; |
|
|
|
obj = res; |
|
|
|
|
|
|
|
var arr = res.c206011.split(","); |
|
|
|
for (const key in arr) { |
|
|
|
if (arr[key] == "01") textArr += "警告,"; |
|
|
|
if (arr[key] == "02") textArr += "通报批评,"; |
|
|
|
if (arr[key] == "03") textArr += "罚款,"; |
|
|
|
if (arr[key] == "04") textArr += "没收违法所得,"; |
|
|
|
if (arr[key] == "05") textArr += "没收违法财产,"; |
|
|
|
if (arr[key] == "06") textArr += "责令停业整改,"; |
|
|
|
if (arr[key] == "07") textArr += "暂扣许可证件,"; |
|
|
|
if (arr[key] == "08") textArr += "行政拘留,"; |
|
|
|
if (arr[key] == "09") textArr += "吊销许可证件,"; |
|
|
|
if (arr[key] == "01") textArr.push("警告"); |
|
|
|
if (arr[key] == "02") textArr.push("通报批评"); |
|
|
|
if (arr[key] == "03") textArr.push("罚款"); |
|
|
|
if (arr[key] == "04") textArr.push("没收违法所得"); |
|
|
|
if (arr[key] == "05") textArr.push("没收违法财产"); |
|
|
|
if (arr[key] == "06") textArr.push("责令停业整改"); |
|
|
|
if (arr[key] == "07") textArr.push("暂扣许可证件"); |
|
|
|
if (arr[key] == "08") textArr.push("行政拘留"); |
|
|
|
if (arr[key] == "09") textArr.push("吊销许可证件"); |
|
|
|
} |
|
|
|
obj.cfzl = textArr; |
|
|
|
obj.cfzl = textArr.join(","); |
|
|
|
|
|
|
|
data.forceDataList.push(obj); |
|
|
|
}) |
|
|
|
|