cloud-web-corejs 1.0.54-dev.351 → 1.0.54-dev.353
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/baseInputExport/mixins.js +1 -386
- package/src/components/errorMsg/mixins.js +1 -89
- package/src/components/excelImport/mixins.js +1 -749
- package/src/components/jsonImport/mixins.js +1 -332
- package/src/components/langImport/mixins.js +1 -484
- package/src/components/vb-tabs/x-tabs.vue +36 -27
- package/src/components/wf/mixins/wfFlowEleScriptDialog.js +1 -129
- package/src/components/wf/wf.js +1 -2117
- package/src/components/xform/form-designer/designer.js +1 -1645
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +1 -281
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1328
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +2 -4
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +0 -7
- package/src/components/xform/form-designer/indexMixin.js +1 -823
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +0 -1
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -348
- package/src/components/xform/form-render/container-item/table2-item.vue +141 -88
- package/src/components/xform/mixins/scriptHttp.js +62 -63
- package/src/components/xform/utils/util.js +1 -1451
- package/src/utils/request.js +1 -359
- package/src/utils/vab.js +1 -1095
- package/src/views/user/form/view/list.vue +111 -67
- package/src/views/user/notify_message/dialog.vue +0 -1
@@ -259,9 +259,7 @@ modules = {
|
|
259
259
|
this.oldFieldValue = baseRefUtil.deepClone(this.fieldModel),
|
260
260
|
void this.initFileList();
|
261
261
|
}*/
|
262
|
-
|
263
|
-
debugger
|
264
|
-
}
|
262
|
+
|
265
263
|
let defaultValue = this.field.options.defaultValue;
|
266
264
|
let dataId = this.getFormRef()?.dataId ?? null;
|
267
265
|
let nullValue = null;
|
@@ -305,7 +303,7 @@ modules = {
|
|
305
303
|
if (searchDialogConfig.labelSourceField) labelSourceField = searchDialogConfig.labelSourceField
|
306
304
|
}
|
307
305
|
this.setValue(saleOrgDTO[valueSourceField] ?? null);
|
308
|
-
this.setShowValue(saleOrgDTO[
|
306
|
+
this.setShowValue(saleOrgDTO[labelSourceField] ?? null);
|
309
307
|
}
|
310
308
|
}
|
311
309
|
}
|
@@ -211,10 +211,6 @@ export default {
|
|
211
211
|
created() {
|
212
212
|
//
|
213
213
|
this.initShowType();
|
214
|
-
/* let propName = this.formItemProp;
|
215
|
-
if(propName){
|
216
|
-
debugger
|
217
|
-
} */
|
218
214
|
},
|
219
215
|
methods: {
|
220
216
|
isSubFormItem() {
|
@@ -313,9 +309,6 @@ export default {
|
|
313
309
|
? this.getObjectName() + "." + o
|
314
310
|
: o
|
315
311
|
);
|
316
|
-
/* if(this.$parent.tableParam){
|
317
|
-
debugger
|
318
|
-
} */
|
319
312
|
|
320
313
|
return propName
|
321
314
|
},
|