resolver-egretimp-plus 0.0.67 → 0.0.68

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -72,6 +72,11 @@ export default {
72
72
  return normalColumnConfig(config)
73
73
  })
74
74
  })
75
+ const page = reactive({
76
+ pageNum: 1,
77
+ pageSize: 5,
78
+ total: 0,
79
+ })
75
80
  const isFrontPage = computed(() => {
76
81
  return props.config?.frontPageFlag === '1'
77
82
  })
@@ -349,11 +354,7 @@ export default {
349
354
  }
350
355
  return attrs
351
356
  })
352
- const page = reactive({
353
- pageNum: 1,
354
- pageSize: 5,
355
- total: 0,
356
- })
357
+
357
358
  // 页码变动
358
359
  watch(() => page.pageNum, (val) => {
359
360
  const fn = props.config?.currentChange
@@ -361,7 +361,9 @@ const TabNav = defineComponent({
361
361
  }
362
362
  }}
363
363
  >
364
- {...[tabLabelContent, btnClose]}
364
+ <div title={tabLabelContent} class='tabs__item-wrap'>
365
+ {...[tabLabelContent, btnClose]}
366
+ </div>
365
367
  </div>
366
368
  )
367
369
  })
@@ -79,4 +79,9 @@
79
79
  @include nestMargin
80
80
  }
81
81
  }
82
+ }
83
+ .tabs__item-wrap {
84
+ white-space: nowrap;
85
+ overflow: hidden;
86
+ text-overflow: ellipsis;
82
87
  }