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:
@@ -173,8 +173,8 @@
|
||||
<vxe-column
|
||||
title="诊断类别"
|
||||
align="center"
|
||||
field="diagSrtNo"
|
||||
width="180"
|
||||
field="medTypeCode"
|
||||
width="160"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-form-item
|
||||
@@ -200,7 +200,7 @@
|
||||
title="诊断名称"
|
||||
align="center"
|
||||
field="name"
|
||||
>
|
||||
min-width="180" max-width="300" >
|
||||
<template #default="scope">
|
||||
<el-form-item
|
||||
:prop="`diagnosisList.${scope.rowIndex}.name`"
|
||||
@@ -285,7 +285,7 @@
|
||||
title="诊断时间"
|
||||
align="center"
|
||||
field="diagnosisTime"
|
||||
width="150"
|
||||
width="180"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-form-item>
|
||||
@@ -297,7 +297,7 @@
|
||||
title="诊断代码"
|
||||
align="center"
|
||||
field="ybNo"
|
||||
width="180"
|
||||
width="160"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-form-item>
|
||||
|
||||
@@ -99,14 +99,14 @@
|
||||
height="100%"
|
||||
ref="prescriptionRef"
|
||||
:data="filterPrescriptionList"
|
||||
:row-config="{ keyField: 'uniqueKey', expandRowKeys: expandOrder }"
|
||||
:row-config="{ keyField: 'uniqueKey' }" :expand-config="{ trigger: 'row', expandRowKeys: expandOrder }"
|
||||
border
|
||||
@cell-click="clickRow"
|
||||
@cell-dblclick="clickRowDb"
|
||||
v-loading="loading"
|
||||
@checkbox-change="handleSelectionChange"
|
||||
>
|
||||
<vxe-column type="expand" width="1" style="width: 0">
|
||||
<vxe-column type="expand" width="40">
|
||||
<template #content="scope">
|
||||
<OrderForm
|
||||
:row="scope.row"
|
||||
@@ -2757,6 +2757,24 @@ defineExpose({ getListInfo, getDiagnosisInfo });
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
// 展开行内容样式
|
||||
:deep(.vxe-table--expanded) {
|
||||
.vxe-table--expanded-cell {
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
// 确保下拉框在表格内正常显示
|
||||
:deep(.vxe-table) {
|
||||
.vxe-body--column {
|
||||
.el-select,
|
||||
.el-input,
|
||||
.el-input-number {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.inpatientDoctor-order-container {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user