imeik-bizui 1.8.3 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,7 +41,7 @@
41
41
  <ImOneLineDot :text="formatPhone(row.doctorPhone)">手机号:{{ formatPhone(row.doctorPhone) }}</ImOneLineDot>
42
42
  <ImOneLineDot :text="row.doctorType">类型:{{ row.doctorType }}</ImOneLineDot>
43
43
  <ImOneLineDot :text="row.doctorPost">职称:{{ row.doctorPost }}</ImOneLineDot>
44
- <ImOneLineDot :text="row.doctorExpertType">医生类专家类别:{{ row.doctorExpertType }}</ImOneLineDot>
44
+ <ImOneLineDot v-if="row.doctorExpertType" :text="row.doctorExpertType">医生类专家类别:{{ row.doctorExpertType }}</ImOneLineDot>
45
45
  </div>
46
46
  </div>
47
47
  </template>
@@ -455,6 +455,7 @@ export default {
455
455
  handleChangeIdentity(val, row) {
456
456
  const sceneInfo = row.shenfenList_new.find((item) => item.value === val)
457
457
  this.$set(row, 'standardAmount', sceneInfo.standardAmount)
458
+ console.log(row, '测试')
458
459
  },
459
460
  // 修改专家回调
460
461
  changedoctorName(row, type) {
@@ -479,6 +480,7 @@ export default {
479
480
  if (!type) {
480
481
  this.$set(row, 'doctorServiceSceneCode', '')
481
482
  this.$set(row, 'describe', '')
483
+ this.$set(row, 'identity', '')
482
484
  this.setDefaultRoleInfo(row)
483
485
  }
484
486
  },
@@ -506,6 +508,9 @@ export default {
506
508
  value: item.value?.split('_')[1] ?? item.value ?? ''
507
509
  })) ?? []
508
510
  this.$set(row, 'shenfenList_new', shenfenList_new)
511
+ if (!row.doctorExpertType) {
512
+ this.handleChangeIdentity('', row)
513
+ }
509
514
  }
510
515
  this.checkStandardAmountsIsBeyond(row)
511
516
  },