MaiXinRong 9 months ago
parent
commit
0332d59ded
3 changed files with 4 additions and 3 deletions
  1. 1 1
      app/public/js/ledger.js
  2. 1 1
      app/public/js/stage_audit.js
  3. 2 1
      app/view/revise/info_modal.ejs

+ 1 - 1
app/public/js/ledger.js

@@ -4201,7 +4201,7 @@ $(document).ready(function() {
             li.remove();
             for (const a of data2) {
                 const aLi = $('li[auditorId=' + a.audit_id + ']');
-                $('span', aLi).text(a.audit_order + ' ' + a.name + ' ');
+                $('div:first', aLi).text(a.audit_order);
             }
 
             // 如果是重新上报

+ 1 - 1
app/public/js/stage_audit.js

@@ -178,7 +178,7 @@ $(document).ready(function () {
             li.remove();
             for (const rst of result) {
                 const aLi = $('li[auditorId=' + rst.aid + ']');
-                $('span', aLi).text(rst.order + ' ' + rst.name + ' ');
+                $('div:first', aLi).text(rst.order);
             }
 
             // 如果是重新上报

+ 2 - 1
app/view/revise/info_modal.ejs

@@ -781,7 +781,8 @@
                 li.remove();
                 for (const a of data2) {
                     const aLi = $('li[auditorId=' + a.audit_id + ']');
-                    $('span', aLi).text(a.audit_order + ' ' + a.name + ' ');
+                    aLi.children
+                    $('div:first', aLi).text(a.audit_order);
                 }
 
                 // 如果是重新上报