imeik-bizui 1.6.4 → 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/FieldCitySelect/index.vue +1 -1
- package/dist/bizui/src/FieldExpertSelect/index.vue +2 -3
- package/dist/imeik-bizui.common.js +88 -92
- 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 +88 -92
- 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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div :class="!attrs.isView ? 'w-full' : 'inline'">
|
|
3
3
|
<div v-if="attrs.isView">
|
|
4
4
|
<ImDiffText v-if="showDiff" :show-diff="showDiff" :old-value="myLabel" :no-absolute="true" :new-value="diffValue" />
|
|
5
|
-
<span :title="myLabel">{{ myLabel }}</span>
|
|
5
|
+
<span v-else :title="myLabel">{{ myLabel }}</span>
|
|
6
6
|
</div>
|
|
7
7
|
<el-cascader v-else v-model="myValue" :multiple="multiple" :props="props" :options="options" class="w-full" clearable filterable v-bind="$attrs" @change="onUpdate" v-on="listeners"></el-cascader>
|
|
8
8
|
</div>
|
|
@@ -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>
|
|
@@ -186,7 +185,7 @@ export default {
|
|
|
186
185
|
}
|
|
187
186
|
},
|
|
188
187
|
{
|
|
189
|
-
label: '
|
|
188
|
+
label: '执业机构',
|
|
190
189
|
prop: 'organizations',
|
|
191
190
|
type: 'slot',
|
|
192
191
|
slot: 'organizations',
|
|
@@ -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
|
},
|