MaiXinRong 1 год назад
Родитель
Сommit
a64cdba26e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/lib/stage_im.js

+ 1 - 1
app/lib/stage_im.js

@@ -1044,7 +1044,7 @@ class StageIm {
         // 生成数据
         this._recursiveBuildImData(this.billsTree.children);
         // 排序
-        if (this.stage.im_type !== imType.tz.value && stage.im_type !== imType.bb.value) {
+        if (this.stage.im_type !== imType.tz.value && this.stage.im_type !== imType.bb.value) {
             this.ImData.sort(function(x, y) {
                 const iCode = self.ctx.helper.compareCode(x.code, y.code);
                 return iCode === 0 ? x.lIndex - y.lIndex : iCode;