Browse Source

第一次提交

v2
前端-胡立永 3 months ago
parent
commit
6206138deb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      service-uniapp-client/pages/technician/technicianDetail.vue

+ 2
- 2
service-uniapp-client/pages/technician/technicianDetail.vue View File

@ -240,8 +240,8 @@
this.reviewQueryParams.tenantId = this.technicianDetail.id
this.getReview(this.reviewQueryParams.fraction)
if (res.result.msgTechnician.images == '') { //
this.technicianImages = ['/static/technician/album.png']
if (!res.result.msgTechnician.images) { //
this.technicianImages = this.technicianDetail.image ? this.technicianDetail.image.split(',') : []
} else {
this.technicianImages = res.result.msgTechnician.images.split(',')
}


Loading…
Cancel
Save