imeik-bizui 1.6.0 → 1.6.1
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 +8 -6
- package/dist/imeik-bizui.common.js +81 -81
- 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 +81 -81
- package/dist/imeik-bizui.umd.js.gz +0 -0
- package/dist/imeik-bizui.umd.min.js +4 -4
- package/dist/imeik-bizui.umd.min.js.gz +0 -0
- package/package.json +1 -1
|
@@ -22,11 +22,13 @@
|
|
|
22
22
|
<template slot="otherInfo" slot-scope="{ row }">
|
|
23
23
|
<div class="expertOther">
|
|
24
24
|
<p v-if="!row.doctorNumber">-</p>
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
<div v-else>
|
|
26
|
+
<ImOneLineDot :text="row.doctorNumber">专家编号:{{ row.doctorNumber }}</ImOneLineDot>
|
|
27
|
+
<ImOneLineDot :text="formatPhone(row.doctorPhone)">手机号:{{ formatPhone(row.doctorPhone) }}</ImOneLineDot>
|
|
28
|
+
<ImOneLineDot :text="row.doctorType">类型:{{ row.doctorType }}</ImOneLineDot>
|
|
29
|
+
<ImOneLineDot :text="row.doctorPosition">职业:{{ row.doctorPosition }}</ImOneLineDot>
|
|
30
|
+
<ImOneLineDot :text="row.doctorPost">职称:{{ row.doctorPost }}</ImOneLineDot>
|
|
31
|
+
</div>
|
|
30
32
|
</div>
|
|
31
33
|
</template>
|
|
32
34
|
<!-- 角色等级 -->
|
|
@@ -417,7 +419,7 @@ export default {
|
|
|
417
419
|
if (!type) {
|
|
418
420
|
this.$set(row, 'doctorServiceSceneCode', '')
|
|
419
421
|
this.$set(row, 'describe', '')
|
|
420
|
-
row.roleList = doctorInfo.doctorRoleInfoList.map(item => ({ value: item.roleCode, label: item.roleName }))
|
|
422
|
+
row.roleList = doctorInfo.doctorRoleInfoList.map((item) => ({ value: item.roleCode, label: item.roleName }))
|
|
421
423
|
this.setDefaultRoleInfo(row)
|
|
422
424
|
}
|
|
423
425
|
},
|