imeik-bizui 1.6.6 → 1.6.7
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.
- package/dist/bizui/src/FieldExpertSelect/index.vue +1 -2
- package/dist/imeik-bizui.common.js +85 -89
- package/dist/imeik-bizui.common.js.gz +0 -0
- package/dist/imeik-bizui.css +1 -1
- package/dist/imeik-bizui.css.gz +0 -0
- package/dist/imeik-bizui.umd.js +85 -89
- package/dist/imeik-bizui.umd.js.gz +0 -0
- package/dist/imeik-bizui.umd.min.js +2 -2
- package/dist/imeik-bizui.umd.min.js.gz +0 -0
- package/package.json +1 -1
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
<ImOneLineDot :text="row.doctorNumber">专家编号:{{ row.doctorNumber }}</ImOneLineDot>
|
|
27
27
|
<ImOneLineDot :text="formatPhone(row.doctorPhone)">手机号:{{ formatPhone(row.doctorPhone) }}</ImOneLineDot>
|
|
28
28
|
<ImOneLineDot :text="row.doctorType">类型:{{ row.doctorType }}</ImOneLineDot>
|
|
29
|
-
<ImOneLineDot :text="row.doctorPosition">职业:{{ row.doctorPosition }}</ImOneLineDot>
|
|
30
29
|
<ImOneLineDot :text="row.doctorPost">职称:{{ row.doctorPost }}</ImOneLineDot>
|
|
31
30
|
</div>
|
|
32
31
|
</div>
|
|
@@ -418,10 +417,10 @@ export default {
|
|
|
418
417
|
for (const key in doctorInfo) {
|
|
419
418
|
this.$set(row, key, doctorInfo[key])
|
|
420
419
|
}
|
|
420
|
+
row.roleList = doctorInfo.doctorRoleInfoList.map((item) => ({ value: item.roleCode, label: item.roleName }))
|
|
421
421
|
if (!type) {
|
|
422
422
|
this.$set(row, 'doctorServiceSceneCode', '')
|
|
423
423
|
this.$set(row, 'describe', '')
|
|
424
|
-
row.roleList = doctorInfo.doctorRoleInfoList.map((item) => ({ value: item.roleCode, label: item.roleName }))
|
|
425
424
|
this.setDefaultRoleInfo(row)
|
|
426
425
|
}
|
|
427
426
|
},
|