Sfoglia il codice sorgente

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

raolu 7 anni fa
parent
commit
8a5231a88a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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
            }
        },