vue2-client 1.18.2 → 1.18.4
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
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
</span>
|
|
206
206
|
<CustomFuncCel
|
|
207
207
|
:text="text"
|
|
208
|
-
:record="
|
|
208
|
+
:record="record"
|
|
209
209
|
:index="index"
|
|
210
210
|
:item="item"
|
|
211
211
|
:localDataSource="activeTable?.localDataSource"
|
|
@@ -346,7 +346,7 @@ export default {
|
|
|
346
346
|
.filter(item => item.slotType !== 'action' || !this.disableAction)
|
|
347
347
|
.map((item) => {
|
|
348
348
|
// 设置 ellipsis 属性
|
|
349
|
-
if (['ellipsis', 'badge', 'towDecimal', 'date', 'dateTime', 'fourDecimal', 'int'].includes(item.slotType)) {
|
|
349
|
+
if (['ellipsis', 'badge', 'towDecimal', 'date', 'dateTime', 'fourDecimal', 'int', 'customJs'].includes(item.slotType)) {
|
|
350
350
|
item.ellipsis = true
|
|
351
351
|
}
|
|
352
352
|
return item
|