cloud-web-corejs 1.0.81 → 1.0.83
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 +2 -2
- package/src/components/baseAttachment/mixins.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +5 -5
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -1
- package/src/components/xform/form-render/indexMixin.js +1 -1
@@ -3,7 +3,7 @@
|
|
3
3
|
@resizable-change="$vxeTableUtil.onColumnWitchChange" @custom="$vxeTableUtil.customHandle"
|
4
4
|
@checkbox-change="handleCheckboxChange" @checkbox-all="handleCheckboxAll"
|
5
5
|
@cell-dblclick="handleCellDblclick" :class="dataTableConfig.class" :data="fieldModel"
|
6
|
-
|
6
|
+
>
|
7
7
|
<template #form>
|
8
8
|
<!-- <div v-if="widget.options.showSearchArea" class="clearfix screen-btns">
|
9
9
|
<div class="fl">
|
@@ -186,7 +186,7 @@
|
|
186
186
|
<treeMoveDialog v-if="showTreeMoveDialog" :visiable.sync="showTreeMoveDialog" :rows.sync="sortRows"
|
187
187
|
:parent-target="_self" @confirm="confirmTreeMoveDialog"></treeMoveDialog>
|
188
188
|
</template>
|
189
|
-
<template v-for="fieldWidget in widgets" v-slot:[fieldWidget.id]="obj">
|
189
|
+
<!-- <template v-for="fieldWidget in widgets" v-slot:[fieldWidget.id]="obj">
|
190
190
|
<component
|
191
191
|
:is="getColumnWidgetName(fieldWidget)"
|
192
192
|
:field="fieldWidget"
|
@@ -203,7 +203,7 @@
|
|
203
203
|
<slot :name="slot" v-bind="scope"/>
|
204
204
|
</template>
|
205
205
|
</component>
|
206
|
-
</template
|
206
|
+
</template>-->
|
207
207
|
<template #widget="obj">
|
208
208
|
<component
|
209
209
|
:is="getColumnWidgetName(obj.column.params.widget)"
|
@@ -332,13 +332,13 @@ export default {
|
|
332
332
|
},
|
333
333
|
mixins: [dataTableMixin],
|
334
334
|
computed: {
|
335
|
-
heightStyle() {
|
335
|
+
/*heightStyle() {
|
336
336
|
let tableHeight = this.widget.options.tableHeight;
|
337
337
|
if (tableHeight && (tableHeight == 'auto' || tableHeight.slice(-1) == '%')) {
|
338
338
|
return 'height:100%';
|
339
339
|
}
|
340
340
|
return '';
|
341
|
-
}
|
341
|
+
}*/
|
342
342
|
}
|
343
343
|
};
|
344
344
|
</script>
|