imeik-bizui 1.9.2 → 1.9.3
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/FieldApplyDeparmentSelect/index.vue +1 -1
- package/dist/bizui/src/FieldExpertSelect/index.vue +2 -2
- package/dist/imeik-bizui.common.js +120 -113
- 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 +120 -113
- 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
|
@@ -269,7 +269,7 @@ export default {
|
|
|
269
269
|
if (res.code === 200) {
|
|
270
270
|
getTagModelUrl(res?.data[0]?.tagValueUrl).then((valData) => {
|
|
271
271
|
if (valData.code === 200) {
|
|
272
|
-
this.options = valData?.data || []
|
|
272
|
+
this.options = valData?.data.filter(item => item.dicValue === '201') || []
|
|
273
273
|
this.$nextTick(() => {
|
|
274
274
|
callback && callback()
|
|
275
275
|
})
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<div class="expertOther">
|
|
29
29
|
<p v-if="!row.doctorNumber">-</p>
|
|
30
30
|
<div v-if="Array.isArray(row.doctorOrg)">
|
|
31
|
-
<
|
|
31
|
+
<div v-for="(item, index) in row.doctorOrg" :key="index">{{ item }}</div>
|
|
32
32
|
</div>
|
|
33
33
|
</div>
|
|
34
34
|
</template>
|
|
@@ -223,7 +223,7 @@ export default {
|
|
|
223
223
|
type: 'slot',
|
|
224
224
|
slot: 'organizations',
|
|
225
225
|
attrs: {
|
|
226
|
-
'min-width': '
|
|
226
|
+
'min-width': '140'
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
229
|
{
|