vue2-client 1.16.37 → 1.16.38
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/package.json +112 -112
- package/src/base-client/components/common/HIS/HButtons/HButtons.vue +366 -366
- package/src/base-client/components/common/HIS/HForm/HForm.vue +1 -1
- package/src/base-client/components/common/HIS/HFormGroup/HFormGroup.vue +120 -120
- package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
- package/src/base-client/components/common/HIS/demo.vue +61 -61
- package/src/base-client/components/common/XReportGrid/XReportTrGroup.vue +824 -824
- package/src/base-client/components/common/XTable/XTable.vue +4 -0
- package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
- package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
- package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
- package/src/router/async/router.map.js +129 -129
@@ -865,6 +865,10 @@ export default {
|
|
865
865
|
if (item.slotType === 'action') {
|
866
866
|
item.fixed = 'right'
|
867
867
|
item.width = 70
|
868
|
+
} else if (item.slotType === 'index') {
|
869
|
+
item.fixed = 'left'
|
870
|
+
} else if (item.slotType === 'fixed') {
|
871
|
+
item.fixed = item.fixedType
|
868
872
|
}
|
869
873
|
// 设置表格宽度
|
870
874
|
if (item.width) {
|