Bläddra i källkod

金额概况,具体数据为0时,显示空

MaiXinRong 5 år sedan
förälder
incheckning
28ab533727
1 ändrade filer med 9 tillägg och 9 borttagningar
  1. 9 9
      app/public/js/tender_list_info.js

+ 9 - 9
app/public/js/tender_list_info.js

@@ -333,39 +333,39 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
     html.push('</td>');
     // 0号台账合同
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.total_price);
+    html.push(node.total_price || '');
     html.push('</td>');
     // 本期完成
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.gather_tp);
+    html.push(node.gather_tp || '');
     html.push('</td>');
     // 截止本期合同
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.end_contract_tp);
+    html.push(node.end_contract_tp || '');
     html.push('</td>');
     // 截止本期变更
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.end_qc_tp);
+    html.push(node.end_qc_tp || '');
     html.push('</td>');
     // 截止本期完成
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.end_gather_tp);
+    html.push(node.end_gather_tp || '');
     html.push('</td>');
     // 截止上期完成
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.pre_gather_tp);
+    html.push(node.pre_gather_tp || '');
     html.push('</td>');
     // 预付款
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.advance_tp);
+    html.push(node.advance_tp || '');
     html.push('</td>');
     // 本期应付
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.yf_tp);
+    html.push(node.yf_tp || '');
     html.push('</td>');
     // 截止本期应付
     html.push('<td style="width: 6%" class="text-right">');
-    html.push(node.end_yf_tp);
+    html.push(node.end_yf_tp || '');
     html.push('</td>');
     html.push('</tr>');
     if (node.children) {