fix(crontab): 将radio组件的label属性替换为value属性
- 更新day.vue中所有radio组件的label为value属性 - 更新hour.vue中所有radio组件的label为value属性 - 更新min.vue中所有radio组件的label为value属性 - 更新month.vue中所有radio组件的label为value属性 - 更新second.vue中所有radio组件的label为value属性 - 更新week.vue中所有radio组件的label为value属性 - 更新year.vue中所有radio组件的label为value属性 - 修复TableLayout/FormItem.vue中的radio组件属性 - 修改surgicalPatientHandover.vue中的radio组件属性 - 修复template3.vue中的type数据类型定义 - 更新clinicRoom/index.vue中的radio组件属性 - 修复editTemplate.vue中的radio组件属性 - 更新caseTemplatesStatistics/index.vue中的radio组件属性 - 修复organization/index.vue中的radio组件属性 - 更新ward/index.vue中的radio组件属性 - 移除chargeDialog.vue中radio的无效label属性 - 修复多个组件中的Array类型定义问题 - 调整outpatientregistration/index.vue中的列宽度配置 - 添加getConfigKey的导入声明 - 修复多个表单组件中的radio组件属性配置
This commit is contained in:
@@ -126,7 +126,6 @@
|
||||
v-for="item in charge_discount"
|
||||
:key="item.value"
|
||||
link
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-radio-group>
|
||||
|
||||
@@ -190,11 +190,11 @@ const props = defineProps({
|
||||
default: undefined,
|
||||
},
|
||||
chargeItemIds: {
|
||||
type: [],
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
medicineReturnList: {
|
||||
type: [],
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
details: {
|
||||
|
||||
@@ -195,11 +195,11 @@ const props = defineProps({
|
||||
default: undefined,
|
||||
},
|
||||
chargeItemIds: {
|
||||
type: [],
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
chrgBchnoList: {
|
||||
type: [],
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
chrgBchno: {
|
||||
|
||||
@@ -224,12 +224,12 @@ const props = defineProps({
|
||||
default: undefined,
|
||||
},
|
||||
chargeItemIds: {
|
||||
type: [],
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
eventType: {
|
||||
type: String,
|
||||
default: 1,
|
||||
default: '1',
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
@@ -815,11 +815,9 @@
|
||||
</template>
|
||||
</vxe-column>
|
||||
<vxe-column
|
||||
key="registerTime"
|
||||
title="操作"
|
||||
key="operation" title="操作"
|
||||
align="center"
|
||||
field="registerTime"
|
||||
do
|
||||
field="" width="150"
|
||||
>
|
||||
<template #default="scope">
|
||||
<!-- <el-tooltip
|
||||
@@ -1067,6 +1065,7 @@ import {
|
||||
updatePatientPhone,
|
||||
} from './components/outpatientregistration';
|
||||
import { listTicket, checkInTicket } from '@/api/appoinmentmanage/ticket';
|
||||
import {getConfigKey} from '@/api/system/config';
|
||||
import { invokeYbPlugin5000, invokeYbPlugin5001 } from '@/api/public';
|
||||
import patientInfoDialog from './components/patientInfoDialog';
|
||||
import PatientAddDialog from './components/patientAddDialog';
|
||||
|
||||
Reference in New Issue
Block a user