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
@@ -32,13 +32,12 @@
32
32
  </div>
33
33
  </el-dialog>
34
34
  <systemNoticeInfoDialog v-if="showSystemNoticeInfoDialog" :visiable.sync="showSystemNoticeInfoDialog"
35
- :appendToTop="true" :queryParam="systemNoticeInfoDialogParam"></systemNoticeInfoDialog>
35
+ :appendToTop="true"></systemNoticeInfoDialog>
36
36
  </div>
37
37
  </template>
38
38
 
39
39
  <script>
40
40
  import systemNoticeInfoDialog from "@base/views/user/system_notice/infoDialog.vue";
41
- import settingConfig from "@/settings";
42
41
 
43
42
  export default {
44
43
  name: 'notifyMessageDialog',
@@ -56,8 +55,7 @@ export default {
56
55
  tableDatas: [],
57
56
  currentIndex: 0,
58
57
  currentRow: {},
59
- showSystemNoticeInfoDialog: false,
60
- systemNoticeInfoDialogParam: {}
58
+ showSystemNoticeInfoDialog: false
61
59
  };
62
60
  },
63
61
 
@@ -74,9 +72,9 @@ export default {
74
72
  this.checkLine(0, () => {
75
73
  this.showDialog = true;
76
74
  });
77
- } else {
75
+ }/* else {
78
76
  this.initSystemNoticeInfoDialog();
79
- }
77
+ } */
80
78
  }
81
79
  });
82
80
  },
@@ -117,18 +115,14 @@ export default {
117
115
 
118
116
  },
119
117
  initSystemNoticeInfoDialog() {
120
- if (!settingConfig.systemNoticeAutoTip) return
121
- let userFlag = this.$store.getters.userFlag
122
- if (userFlag == 6 || userFlag == 7 || userFlag == 8) return;
123
118
  this.$http({
124
119
  url: USER_PREFIX + '/system_notice/listPage',
125
- data: {publish: true, important: true, readed: 0, size: 1},
120
+ data: {publish: true, important: true, size: 1},
126
121
  method: 'post',
127
122
  success: res => {
128
123
  this.systemNotices = res.objx && res.objx.records ? res.objx.records : [];
129
124
  let rows = res?.objx?.records || []
130
125
  if (rows.length > 0) {
131
- this.systemNoticeInfoDialogParam = {publish: true, important: true, readed: 0};
132
126
  this.showSystemNoticeInfoDialog = true;
133
127
  }
134
128
  }