cloud-web-corejs 1.0.54-dev.2 → 1.0.54-dev.21

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 (43) hide show
  1. package/package.json +1 -1
  2. package/src/components/VabUpload/mixins.js +1 -1
  3. package/src/components/excelExport/exportFieldDialog.vue +201 -0
  4. package/src/components/excelExport/index.js +5 -5
  5. package/src/components/excelExport/index.vue +1 -0
  6. package/src/components/excelExport/mixins.js +4 -1
  7. package/src/components/excelImport/index.js +13 -13
  8. package/src/components/excelImport/index.vue +9 -6
  9. package/src/components/excelImport/mixins.js +1 -1
  10. package/src/components/fileLibrary/fileObjAuthDialog.vue +125 -103
  11. package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -1
  12. package/src/components/fileLibrary/fileObjNotifyEdit.vue +170 -0
  13. package/src/components/fileLibrary/index.vue +2 -2
  14. package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +21 -6
  15. package/src/components/fileLibrary/mixins/indexMixins.js +11 -0
  16. package/src/components/table/index.js +1 -1
  17. package/src/components/tempStorage/tempStorageDialog.vue +2 -2
  18. package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +1 -0
  19. package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +1 -0
  20. package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +2 -2
  21. package/src/components/xform/form-designer/form-widget/dialog/preformDialog.vue +2 -2
  22. package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +5 -4
  23. package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +2 -2
  24. package/src/components/xform/form-render/indexMixin.js +59 -36
  25. package/src/layout/components/Sidebar/default.vue +1222 -1222
  26. package/src/layout/components/notify_message/unreadDialog.vue +11 -5
  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 +4 -0
  31. package/src/views/bd/setting/form_template/list.vue +4 -2
  32. package/src/views/bd/setting/form_template/mixins/edit.js +1 -1
  33. package/src/views/bd/setting/form_template/mixins/list.js +1 -1
  34. package/src/views/bd/setting/menu_kind/authDialog.vue +1 -1
  35. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +1 -1
  36. package/src/views/bd/setting/table_model/list.vue +4 -2
  37. package/src/views/user/company_info/edit.vue +9 -1
  38. package/src/views/user/home/index.vue +4 -2
  39. package/src/views/user/system_notice/infoDialog.vue +25 -1
  40. package/src/views/user/user/form_edit.vue +56 -49
  41. package/src/views/user/user/list.vue +570 -563
  42. package/src/views/user/wf/wf_obj_config/list.vue +30 -2
  43. package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +292 -0
@@ -32,12 +32,13 @@
32
32
  </div>
33
33
  </el-dialog>
34
34
  <systemNoticeInfoDialog v-if="showSystemNoticeInfoDialog" :visiable.sync="showSystemNoticeInfoDialog"
35
- :appendToTop="true"></systemNoticeInfoDialog>
35
+ :appendToTop="true" :queryParam="systemNoticeInfoDialogParam"></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";
41
42
 
42
43
  export default {
43
44
  name: 'notifyMessageDialog',
@@ -55,7 +56,8 @@ export default {
55
56
  tableDatas: [],
56
57
  currentIndex: 0,
57
58
  currentRow: {},
58
- showSystemNoticeInfoDialog: false
59
+ showSystemNoticeInfoDialog: false,
60
+ systemNoticeInfoDialogParam: {}
59
61
  };
60
62
  },
61
63
 
@@ -72,9 +74,9 @@ export default {
72
74
  this.checkLine(0, () => {
73
75
  this.showDialog = true;
74
76
  });
75
- }/* else {
77
+ } else {
76
78
  this.initSystemNoticeInfoDialog();
77
- } */
79
+ }
78
80
  }
79
81
  });
80
82
  },
@@ -115,14 +117,18 @@ export default {
115
117
 
116
118
  },
117
119
  initSystemNoticeInfoDialog() {
120
+ if (!settingConfig.systemNoticeAutoTip) return
121
+ let userFlag = this.$store.getters.userFlag
122
+ if (userFlag == 6 || userFlag == 7 || userFlag == 8) return;
118
123
  this.$http({
119
124
  url: USER_PREFIX + '/system_notice/listPage',
120
- data: {publish: true, important: true, size: 1},
125
+ data: {publish: true, important: true, readed: 0, size: 1},
121
126
  method: 'post',
122
127
  success: res => {
123
128
  this.systemNotices = res.objx && res.objx.records ? res.objx.records : [];
124
129
  let rows = res?.objx?.records || []
125
130
  if (rows.length > 0) {
131
+ this.systemNoticeInfoDialogParam = {publish: true, important: true, readed: 0};
126
132
  this.showSystemNoticeInfoDialog = true;
127
133
  }
128
134
  }