liujie
2025-08-20 9a044f2f4b810a0f7a3d568998bfd2b13797427e
ManagementOKTravel/guns-admin/src/main/webapp/static/modular/system/financialStatement/paymentOrderStatistics/paymentOrderStatistics.js
@@ -21,8 +21,12 @@
         formatter: function (value, row) {
            if(row.orderType == 2) {
               return '出租车订单';
            } else {
            } else if(row.orderType==3){
               return '跨城出行订单';
            }else if(row.orderType==4){
               return '同城小件物流订单';
            }else {
               return '-';
            }
         }
      },
@@ -87,7 +91,7 @@
         content: Feng.ctxPath + '/tOrderTaxi/tOrderTaxi_update/' + id
      });
      this.layerIndex = index;
   }else {
   }else if(orderType==3){
      var index = layer.open({
         type: 2,
         title: '跨城出行订单详情',
@@ -97,6 +101,18 @@
         content: Feng.ctxPath + '/tOrderCrossCity/tOrderCrossCity_update/' + id
      });
      this.layerIndex = index;
   }else if(orderType==4){
      var index = layer.open({
         type: 2,
         title: '同城小件物流订单详情',
         area: ['100%', '100%'], //宽高
         fix: false, //不固定
         maxmin: true,
         content: Feng.ctxPath + '/tOrderLogistics/tOrderLogistics_detail/' + id
      });
      this.layerIndex = index;
   }else{
      Feng.info("未知订单类型!");
   }
};