소스 검색

当所有没有数据时,将列表返回值改为数组。这样表格才能正常显示

raolu 7 년 전
부모
커밋
8a5231a88a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/buz/order-list.js

+ 1 - 1
js/buz/order-list.js

@ -152,7 +152,7 @@ function getHealthDoctorList(isRefresh){
        pageList: [5,8,10],
        responseHandler: function (res) {
            return {
                rows: res.data.doctors,
                rows: res.data.doctors || [],
                total: res.data.total
            }
        },