mooho-base-admin-plus 0.4.15 → 0.4.16
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.
|
@@ -33163,16 +33163,16 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33163
33163
|
"parent-data": $data.data,
|
|
33164
33164
|
onOnChange: ($event) => $options.onDataChange(column)
|
|
33165
33165
|
}, {
|
|
33166
|
-
column: withCtx((
|
|
33166
|
+
column: withCtx((scope) => [
|
|
33167
33167
|
renderSlot(_ctx.$slots, "tableColumn", {
|
|
33168
|
-
table: _ctx.$refs["table_" +
|
|
33168
|
+
table: _ctx.$refs["table_" + column.code][0],
|
|
33169
33169
|
tableData: $data.data,
|
|
33170
|
-
tableColumn:
|
|
33171
|
-
tableCode:
|
|
33172
|
-
row,
|
|
33173
|
-
index:
|
|
33174
|
-
column:
|
|
33175
|
-
code
|
|
33170
|
+
tableColumn: column,
|
|
33171
|
+
tableCode: column.code,
|
|
33172
|
+
row: scope.row,
|
|
33173
|
+
index: scope.index,
|
|
33174
|
+
column: scope.column,
|
|
33175
|
+
code: scope.code
|
|
33176
33176
|
})
|
|
33177
33177
|
]),
|
|
33178
33178
|
_: 2
|