vue2-client 1.18.8 → 1.18.9

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.
Files changed (24) hide show
  1. package/package.json +1 -1
  2. package/src/assets/svg/female.svg +1 -1
  3. package/src/assets/svg/male.svg +1 -1
  4. package/src/base-client/components/common/HIS/HButtons/HButtons.vue +491 -491
  5. package/src/base-client/components/common/HIS/HForm/HForm.vue +32 -10
  6. package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
  7. package/src/base-client/components/common/HIS/HTab/HTab.vue +443 -443
  8. package/src/base-client/components/common/XCollapse/XCollapse.vue +830 -830
  9. package/src/base-client/components/common/XFormTable/XFormTable.vue +4 -2
  10. package/src/base-client/components/common/XFormTable/demo.vue +2 -2
  11. package/src/base-client/components/common/XInput/XInput.vue +12 -6
  12. package/src/base-client/components/common/XTable/CustomFuncCel.vue +1 -6
  13. package/src/base-client/components/common/XTimeline/XTimeline.vue +477 -477
  14. package/src/base-client/components/his/HChart/HChart.vue +7 -11
  15. package/src/base-client/components/his/XHDescriptions/XHDescriptions.vue +44 -78
  16. package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
  17. package/src/base-client/components/his/XList/XList.vue +938 -938
  18. package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +354 -354
  19. package/src/base-client/components/his/XTitle/XTitle.vue +314 -314
  20. package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
  21. package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
  22. package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
  23. package/src-base-client/components/common/HIS/HForm/HForm.vue +347 -0
  24. package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
@@ -116,11 +116,13 @@
116
116
  <a-modal
117
117
  v-if="tableShowMode === 'popup'"
118
118
  v-model="tableModalVisible"
119
- :title="realQueryConfig.popupTitle || title || realQueryConfig.title || '数据列表'"
120
- width="75%"
119
+ :title="realQueryConfig.popupTitle || null"
120
+ :closable="false"
121
+ width="80%"
121
122
  :bodyStyle="{ padding: '12px' }"
122
123
  :footer="null"
123
124
  :destroyOnClose="false"
125
+ :z-index="1005"
124
126
  >
125
127
  <x-table
126
128
  ref="xTable"
@@ -13,7 +13,7 @@
13
13
  :defaultQueryForm="{
14
14
  s_f_user_name: '张三'
15
15
  }"
16
- serviceName="af-system"
16
+ serviceName="af-revenue"
17
17
  ref="xFormTable"
18
18
  >
19
19
  <template #formBtnExpand>
@@ -41,7 +41,7 @@ export default {
41
41
  data () {
42
42
  return {
43
43
  // 查询配置文件名
44
- queryParamsName: 'ceshiCRUD',
44
+ queryParamsName: 'ChargeCenterQueryUserCRUD',
45
45
  // 查询配置左侧tree
46
46
  xTreeConfigName: 'addressType',
47
47
  // 新增表单固定值
@@ -126,14 +126,20 @@ export default {
126
126
  white-space: nowrap;
127
127
  color: rgba(0, 0, 0, 0.85);
128
128
  padding-right: 8px; /* 标签右侧固定间距 */
129
- }
130
-
131
- .input-label {
132
- white-space: nowrap;
133
- color: rgba(0, 0, 0, 0.85);
134
129
  padding-left: 4px; /* 标签左侧固定间距 */
130
+ font-family: Source Han Sans;
131
+ font-size: 16px;
132
+ font-weight: normal;
133
+ color: #313131;
134
+ }
135
+ .input-tail {
136
+ font-family: Source Han Sans;
137
+ font-size: 16px;
138
+ font-weight: normal;
139
+ line-height: 39px;
140
+ color: #313131;
141
+ padding-left: 4px;
135
142
  }
136
-
137
143
  .input-wrapper {
138
144
  flex: 1; /* 输入框占据剩余空间 */
139
145
  }
@@ -37,12 +37,7 @@ export default {
37
37
 
38
38
  <template>
39
39
  <span>
40
- <template v-if="item.slotValue">
41
- <ellipsis :length="item.slotValue" tooltip>{{ loading ? text : slotValueResult }}</ellipsis>
42
- </template>
43
- <template v-else>
44
- {{ loading ? text : slotValueResult }}
45
- </template>
40
+ {{ loading ? text : slotValueResult }}
46
41
  </span>
47
42
  </template>
48
43