Explorar o código

bug-18 操作列使用 showOverflow: false 禁止 tooltip 显示

cc12458 hai 10 meses
pai
achega
77f2e49144

+ 1 - 0
src/pages/index/care/conditioningRecord.vue

@@ -106,6 +106,7 @@ const gridOptions = reactive<VxeGridProps<ConditioningRecordListModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/care/institutionService.vue

@@ -118,6 +118,7 @@ const gridOptions = reactive<VxeGridProps<SystemCwModel>>({
       title: '操作',
       align: 'center',
       width: 150,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/care/supplier.vue

@@ -163,6 +163,7 @@ const gridOptions = reactive<VxeGridProps<SupplierModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/care/systemService.vue

@@ -99,6 +99,7 @@ const gridOptions = reactive<VxeGridProps<SystemCwModel>>({
       title: '操作',
       align: 'center',
       width: 150,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/follow/assessment.vue

@@ -126,6 +126,7 @@ const gridOptions = reactive<VxeGridProps<EvaluationModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       slots: { default: 'btn' },
     },
   ],

+ 1 - 0
src/pages/index/follow/plan.vue

@@ -175,6 +175,7 @@ const gridOptions = reactive<VxeGridProps<PlanModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/follow/task.vue

@@ -137,6 +137,7 @@ const gridOptions = reactive<VxeGridProps<TaskModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       slots: { default: 'btn' },
     },
   ],

+ 1 - 0
src/pages/index/patient/history.vue

@@ -121,6 +121,7 @@ const gridOptions = reactive<VxeGridProps<PatientReportModel>>({
       title: '操作',
       align: 'center',
       width: 200,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/system/role.vue

@@ -98,6 +98,7 @@ const gridOptions = reactive<VxeGridProps<RoleModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 1
src/pages/index/system/tag.vue

@@ -101,7 +101,7 @@ const gridOptions = reactive<VxeGridProps<TagModel>>({
     { field: 'createBy', title: '创建者' },
     { field: 'status', title: '启用状态', align: 'center', minWidth: 90, slots: { default: 'cell-status' }, },
     { field: 'category', title: '标签分类' },
-    { title: '操作', align: 'center', width: 120, slots: { default: 'cell-operation' }, },
+    { title: '操作', align: 'center', width: 120, showOverflow: false, slots: { default: 'cell-operation' }, },
   ],
   data: [],
 });

+ 1 - 0
src/pages/index/system/user.vue

@@ -95,6 +95,7 @@ const gridOptions = reactive<VxeGridProps<UserModel>>({
       title: '操作',
       align: 'center',
       width: 180,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/tcmRecuperation/institution.vue

@@ -164,6 +164,7 @@ const gridOptions = reactive<VxeGridProps<PlanModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/tcmRecuperation/preserve.vue

@@ -164,6 +164,7 @@ const gridOptions = reactive<VxeGridProps<PlanModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/pages/index/tcmRecuperation/system.vue

@@ -164,6 +164,7 @@ const gridOptions = reactive<VxeGridProps<PlanModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/service/ServiceItemsConfirm.vue

@@ -91,6 +91,7 @@ const gridOptions = reactive<VxeGridProps<SystemItemModel>>({
       title: '操作',
       align: 'center',
       width: 120,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/service/ServiceItemsList.vue

@@ -103,6 +103,7 @@ const gridOptions = reactive<VxeGridProps<SystemItemModel>>({
       title: '操作',
       align: 'center',
       width: 150,
+      showOverflow: false,
       cellRender: {
         name: 'VxeButtonGroup',
         props: {

+ 1 - 0
src/service/ServiceItemsSystem.vue

@@ -132,6 +132,7 @@ const gridOptions = reactive<VxeGridProps<SystemItemModel>>({
       title: '操作',
       align: 'center',
       width: 160,
+      showOverflow: false,
       slots: { default: 'actionSlot' },
     },
   ],

+ 1 - 1
src/widgets/PatientDiagnosisRecordsWidget.vue

@@ -30,7 +30,7 @@ const gridOptions = reactive<VxeGridProps<DiagnosisReportVO>>({
     { field: 'doctor.name', title: '就诊医生' },
     { field: 'disease.name', title: '疾病' },
     { field: 'symptom.name', title: '证型' },
-    { title: '操作', align: 'center', width: 120, slots: { default: 'cell-operation' } },
+    { title: '操作', align: 'center', width: 120, showOverflow: false, slots: { default: 'cell-operation' } },
   ],
   // @ts-ignore
   data,

+ 1 - 1
src/widgets/PatientFollowUpRecordsWidget.vue

@@ -36,7 +36,7 @@ const gridOptions = reactive<VxeGridProps<DiagnosisReportVO>>({
     { field: 'evaluation.status.label', title: '评估状态' },
     { field: 'evaluation.result.label', title: '评估结果' },
     { field: 'evaluation.operator.name', title: '评估人' },
-    { title: '操作', align: 'center', width: 120, slots: { default: 'cell-operation' } },
+    { title: '操作', align: 'center', width: 120, showOverflow: false, slots: { default: 'cell-operation' } },
   ],
   // @ts-ignore
   data,