cloud-web-corejs 1.0.54-dev.9 → 1.0.55

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.
Files changed (45) hide show
  1. package/package.json +1 -1
  2. package/src/components/excelExport/index.js +5 -5
  3. package/src/components/excelExport/index.vue +0 -1
  4. package/src/components/excelExport/mixins.js +1 -4
  5. package/src/components/excelImport/index.js +13 -13
  6. package/src/components/excelImport/index.vue +5 -7
  7. package/src/components/excelImport/mixins.js +1 -1
  8. package/src/components/fileLibrary/fileObjAuthDialog.vue +103 -125
  9. package/src/components/fileLibrary/fileObjAuthEditDialog.vue +1 -6
  10. package/src/components/fileLibrary/index.vue +2 -2
  11. package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +6 -21
  12. package/src/components/fileLibrary/mixins/indexMixins.js +0 -11
  13. package/src/components/jsonImport/index.js +17 -17
  14. package/src/components/table/index.js +1 -1
  15. package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +1 -0
  16. package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +1 -0
  17. package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +2 -2
  18. package/src/components/xform/form-designer/form-widget/dialog/preformDialog.vue +2 -2
  19. package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +5 -4
  20. package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +2 -2
  21. package/src/components/xform/form-designer/setting-panel/form-setting.vue +2 -36
  22. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +0 -2
  23. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +33 -277
  24. package/src/components/xform/form-render/indexMixin.js +1 -24
  25. package/src/layout/components/Sidebar/default.vue +1222 -1222
  26. package/src/layout/components/notify_message/unreadDialog.vue +5 -11
  27. package/src/utils/vab.js +1 -1
  28. package/src/views/bd/setting/bd_attach_setting/edit.vue +1 -1
  29. package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +1 -1
  30. package/src/views/bd/setting/form_template/edit.vue +0 -4
  31. package/src/views/bd/setting/form_template/mixins/edit.js +1 -1
  32. package/src/views/bd/setting/form_template/mixins/list.js +1 -1
  33. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +7 -7
  34. package/src/views/user/access_log/list.vue +349 -349
  35. package/src/views/user/company_info/edit.vue +1 -9
  36. package/src/views/user/home/index.vue +2 -4
  37. package/src/views/user/system_notice/infoDialog.vue +1 -25
  38. package/src/views/user/user/list.vue +563 -563
  39. package/src/views/user/wf/wf_obj_config/edit.vue +1 -5
  40. package/src/views/user/wf/wf_obj_config/list.vue +0 -15
  41. package/src/components/excelExport/exportFieldDialog.vue +0 -201
  42. package/src/components/fileLibrary/fileObjNotifyEdit.vue +0 -170
  43. package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +0 -223
  44. package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +0 -62
  45. package/src/components/xform/form-designer/setting-panel/wfObjConfigDialog.vue +0 -189
@@ -87,6 +87,7 @@ export default {
87
87
  fullscreen: this.option.fullscreen,
88
88
  };
89
89
  config = Object.assign({}, config, this.option.dialogConfig, {customClass});
90
+ config.title = this.$t1(config.title);
90
91
  return config;
91
92
  },
92
93
  bodyConfig() {
@@ -81,6 +81,7 @@ export default {
81
81
  direction:"btt"
82
82
  };
83
83
  config = Object.assign({}, config, this.option.dialogConfig, {customClass});
84
+ config.title = this.$t1(config.title);
84
85
  return config;
85
86
  },
86
87
  bodyConfig() {
@@ -55,7 +55,7 @@
55
55
  </div>
56
56
  </label>
57
57
  <div class="multipleChoice">
58
- <el-tooltip :enterable="false" effect="dark" content="全部删除" placement="top"><a class="allDel icon-quanbushanchu"
58
+ <el-tooltip :enterable="false" effect="dark" :content="$t1('全部删除')" placement="top"><a class="allDel icon-quanbushanchu"
59
59
  @click="clearChecked()"></a>
60
60
  </el-tooltip>
61
61
  <div class="list">
@@ -66,7 +66,7 @@
66
66
  </div>
67
67
  </div>
68
68
  <span slot="footer" class="dialog-footer">
69
- <span class="fl tips" v-if="!selectMulti">注:双击确认选择(单选)</span>
69
+ <span class="fl tips" v-if="!selectMulti">{{ $t1('注:双击确认选择(单选)') }}</span>
70
70
  <el-button type="primary" plain class="button-sty" @click="dialogClose">
71
71
  <i class="el-icon-close el-icon"></i>
72
72
  {{ $t2('取 消', 'system.button.cancel2') }}
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <el-dialog
3
- title="表单提交"
3
+ :title="$t1('提交内容')"
4
4
  :visible.sync="showDialog"
5
5
  :modal-append-to-body="false"
6
6
  :close-on-click-modal="false"
@@ -18,7 +18,7 @@
18
18
  <th>
19
19
  <span class="t">
20
20
  <em class="f-red">*</em>
21
- {{ $t1('备注') }}
21
+ {{ $t1('内容') }}
22
22
  </span>
23
23
  </th>
24
24
  <td>
@@ -20,7 +20,7 @@
20
20
  </div>
21
21
  </label>
22
22
  <div class="multipleChoice">
23
- <el-tooltip :enterable="false" effect="dark" content="全部删除" placement="top"><a
23
+ <el-tooltip :enterable="false" effect="dark" :content="$t1('全部删除')" placement="top"><a
24
24
  class="allDel icon-quanbushanchu"
25
25
  @click="clearChecked()"></a>
26
26
  </el-tooltip>
@@ -34,14 +34,14 @@
34
34
  </div>
35
35
  </div>
36
36
  <span slot="footer" class="dialog-footer" v-if="option.showFooter!==false" v-bind="option.footerConfig">
37
- <span class="fl tips" v-if="!selectMulti">注:双击确认选择(单选)</span>
37
+ <span class="fl tips" v-if="!selectMulti">{{ $t1('注:双击确认选择(单选)') }}</span>
38
38
  <el-button type="primary" plain class="button-sty" @click="close">
39
39
  <i class="el-icon-close el-icon"></i>
40
- {{ $t2('取 消', 'system.button.cancel2') }}
40
+ {{ $t1('取 消') }}
41
41
  </el-button>
42
42
  <el-button type="primary" @click="dialogSubmit" class="button-sty">
43
43
  <i class="el-icon-check el-icon"></i>
44
- {{ $t2('确 定', 'system.button.confirm2') }}
44
+ {{ $t1('确 定') }}
45
45
  </el-button>
46
46
  </span>
47
47
  </el-dialog>
@@ -130,6 +130,7 @@ export default {
130
130
  fullscreen: this.option.fullscreen,
131
131
  };
132
132
  config = Object.assign({}, config, this.option.dialogConfig, {customClass});
133
+ config.title = this.$t1(config.title);
133
134
  return config;
134
135
  },
135
136
  bodyConfig() {
@@ -53,7 +53,7 @@
53
53
  </div>
54
54
  </label>
55
55
  <div class="multipleChoice">
56
- <el-tooltip :enterable="false" effect="dark" content="全部删除" placement="top"><a class="allDel icon-quanbushanchu"
56
+ <el-tooltip :enterable="false" effect="dark" :content="$t1('全部删除')" placement="top"><a class="allDel icon-quanbushanchu"
57
57
  @click="clearChecked()"></a>
58
58
  </el-tooltip>
59
59
  <div class="list">
@@ -64,7 +64,7 @@
64
64
  </div>
65
65
  </div>
66
66
  <span slot="footer" class="dialog-footer">
67
- <span class="fl tips" v-if="!selectMulti">注:双击确认选择(单选)</span>
67
+ <span class="fl tips" v-if="!selectMulti">{{ $t1('注:双击确认选择(单选)') }}</span>
68
68
  <el-button type="primary" plain class="button-sty" @click="dialogClose">
69
69
  <i class="el-icon-close el-icon"></i>
70
70
  {{ $t2('取 消', 'system.button.cancel2') }}
@@ -13,12 +13,6 @@
13
13
  <el-form-item :label="i18nt('启用流程')">
14
14
  <el-switch v-model="formConfig.wfEnabled"></el-switch>
15
15
  </el-form-item>
16
- <el-form-item label="流程单据定义">
17
- <a href="javascript:void(0);" class="a-link link-oneLind" @click="openWfObjConfigDialog">
18
- <span>{{ wfObjConfigs.length ? '已维护' : null}}</span>
19
- <i class="el-icon-edit"></i>
20
- </a>
21
- </el-form-item>
22
16
  <el-form-item :label="i18nt('加载详情数据')">
23
17
  <el-switch v-model="formConfig.isLoadEntity"></el-switch>
24
18
  </el-form-item>
@@ -296,8 +290,6 @@
296
290
 
297
291
  <formTemplateDialog v-if="showFormTemplateDialog" :visiable.sync="showFormTemplateDialog"
298
292
  @confirm="confirmFormTemplate" multi="false"/>
299
- <wfObjConfigDialog v-if="showWfObjConfigDialog" :visiable.sync="showWfObjConfigDialog"
300
- @confirm="confirmWfObjConfigDialog" :formTemplate="designer.vueInstance.reportTemplate"/>
301
293
  </div>
302
294
  </template>
303
295
 
@@ -305,15 +297,12 @@
305
297
  import i18n from '../../../../components/xform/utils/i18n';
306
298
  import {deepClone, insertCustomCssToHead, insertGlobalFunctionsToHtml} from '../../../../components/xform/utils/util';
307
299
  import formTemplateDialog from '../../../../views/bd/setting/form_template/dialog.vue'
308
- import wfObjConfigDialog from "./wfObjConfigDialog.vue";
309
-
310
300
 
311
301
  export default {
312
302
  name: 'form-setting',
313
303
  mixins: [i18n],
314
304
  components: {
315
- formTemplateDialog,
316
- wfObjConfigDialog
305
+ formTemplateDialog
317
306
  },
318
307
  props: {
319
308
  designer: Object,
@@ -359,9 +348,7 @@ export default {
359
348
  formScriptParam:null,
360
349
  showFormScriptParamDialog: false,
361
350
  formScriptSuccess:null,
362
- showFormScriptSuccessDialog: false,
363
- wfObjConfigs:[],
364
- showWfObjConfigDialog:false
351
+ showFormScriptSuccessDialog: false
365
352
  };
366
353
  },
367
354
  created() {
@@ -382,7 +369,6 @@ export default {
382
369
  this.extractCssClass();
383
370
  this.designer.emitEvent('form-css-updated', deepClone(this.cssClassList));
384
371
  }, 1200);
385
- this.getListByObjTypeCode();
386
372
  },
387
373
  methods: {
388
374
  showEventCollapse() {
@@ -559,26 +545,6 @@ export default {
559
545
  this.designer.formConfig.formScriptSuccess = this.formScriptSuccess;
560
546
  this.showFormScriptSuccessDialog = false;
561
547
  },
562
- openWfObjConfigDialog(){
563
- this.showWfObjConfigDialog = true;
564
- },
565
- confirmWfObjConfigDialog(rows){
566
- this.wfObjConfigs = rows || [];
567
- },
568
- getListByObjTypeCode(){
569
- let reportTemplate = this.designer.vueInstance.reportTemplate
570
- this.$http({
571
- url: `/${reportTemplate.serviceName}/wf_obj_config/listByObjTypeCode`,
572
- method: `post`,
573
- data:{
574
- stringOne:reportTemplate.objTypeCode
575
- },
576
- isLoading: true,
577
- success: res => {
578
- this.wfObjConfigs = res.objx || [];
579
- }
580
- });
581
- },
582
548
  }
583
549
  };
584
550
  </script>
@@ -105,8 +105,6 @@ const COMMON_PROPERTIES = {
105
105
  'h5Card': 'h5-card-editor',
106
106
  'listH5': 'list-h5-editor',
107
107
  'formScriptEnabled': 'formScriptEnabled-editor',
108
- 'textFlag': 'textFlag-editor',
109
- 'showRuleFlag': 'showRuleFlag-editor',
110
108
 
111
109
  //弹框
112
110
  title: "title-editor",