Browse Source

解决健管师没有职称时显示undefined的问题

raolu 7 years ago
parent
commit
204981a38f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      js/buz/order-tracking.js

+ 2 - 1
js/buz/order-tracking.js

@ -107,7 +107,8 @@ function getHealthDoctorList(isRefresh){
            align: 'right'
        }],
        onClickRow: function(row, $el){
            $("#docInfo").text(row.name+row.jobName);
            var jobName = row.jobName || "";
            $("#docInfo").text(row.name+jobName);
            $("#confirmModal").modal('toggle');
            selectDoctor = row.code;
        }