| | |
| | | /** 查询记录列表 */ |
| | | getList() { |
| | | this.loading = true; |
| | | let _this = this; |
| | | // console.log(this.queryParams) |
| | | // listProperty(this.addDateRange(this.queryParams, this.dateRange)).then(response => { |
| | | listDoctor(this.queryParams).then(response => { |
| | | // alert(123) |
| | | // console.log(response.data) |
| | | this.doctorList = response.data.data; |
| | | this.total = response.data.total; |
| | | this.loading = false; |
| | | if(response.msg=="您没加入到对应的家庭,请联系管理员") |
| | | { |
| | | _this.$modal.msgSuccess("您没加入到对应的家庭,请联系管理员"); |
| | | _this.loading = false; |
| | | }else{ |
| | | _this.doctorList = response.data.data; |
| | | _this.total = response.data.total; |
| | | _this.loading = false; |
| | | } |
| | | } |
| | | ); |
| | | listType(this.queryParams).then(response => { |