|
@@ -627,9 +627,19 @@ var ServiceMaterial={
|
|
|
|
|
|
// 近6个月质量目标合格率比较(品质管理看板)
|
|
|
getLastSixMonthQualityTargetCompare: function () {
|
|
|
-
|
|
|
- return getService.methodGet("/fbsPuArrivalvouch/fbsArrivalVouchs/getLastSixMonthQualityTargetCompare");
|
|
|
-
|
|
|
+ //U8
|
|
|
+ // return getService.methodGet("/fbsPuArrivalvouch/fbsArrivalVouchs/getLastSixMonthQualityTargetCompare");
|
|
|
+ //后台维护
|
|
|
+ var list=MethodGetService.methodGet("/fbsPuArrivalvouch/fbsArrivalVouchs/getLastSixMonthQualityTargetCompareWeb");
|
|
|
+ $.each(list, function (index, item) {
|
|
|
+ item.label = item.month;
|
|
|
+ item.label1 = "质量目标";
|
|
|
+ item.sum1 = item.target;
|
|
|
+ item.label2 = "合格率";
|
|
|
+ item.sum2 = item.real;
|
|
|
+ });
|
|
|
+ return list;
|
|
|
+
|
|
|
// const list = [];
|
|
|
|
|
|
|