cloud-web-corejs 1.0.134 → 1.0.136
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 +1 -1
- package/src/components/fileLibrary/mixins/indexMixins.js +186 -106
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -2
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +26 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +36 -17
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +5 -0
@@ -116,7 +116,7 @@
|
|
116
116
|
/
|
117
117
|
<span class="dataSize">0</span>
|
118
118
|
</div>
|
119
|
-
<el-button type="primary" plain class="button-sty" @click="dialogClose2">
|
119
|
+
<el-button type="primary" plain class="button-sty" @click="dialogClose2" v-if="!param.importOption.hideCancelButton">
|
120
120
|
<i class="el-icon-close el-icon"></i>
|
121
121
|
{{ $t2('取 消', 'system.button.cancel2') }}
|
122
122
|
</el-button>
|