PAMapp/pages/index.vue
@@ -270,7 +270,6 @@ @Watch('myConsultantList') onMyConsultantListChange() { this.consultantList = (this.myConsultantList || []) .filter(item => item.contactStatus !== 'contacted') .map((item) => ({ ...item, formatDate: new Date(item.updateTime || item.createTime)})) .sort((preItem, nextItem) => +nextItem.formatDate - +preItem.formatDate);