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
@@ -45,19 +45,11 @@
45
45
  <td>{{ companyInfo.companyCode }}</td>
46
46
  </tr>
47
47
  <tr>
48
- <th>
49
- {{ $t1('企业默认首页') }}
50
- </th>
51
- <td colspan="3">
52
- <el-form-item prop="defaultHomePage" :rules="[{ required: false, trigger: 'blur' }]">
53
- <el-input type="text" autocomplete="off" v-model="companyInfo.defaultHomePage" clearable/>
54
- </el-form-item>
55
- </td>
56
48
  <th>
57
49
  <em class="f-red">*</em>
58
50
  {{ $t1('组织唯一标志') }}
59
51
  </th>
60
- <td colspan="3">{{ companyInfo.uniqueIdentify }}</td>
52
+ <td colspan="5">{{ companyInfo.uniqueIdentify }}</td>
61
53
  </tr>
62
54
  <tr>
63
55
  <th>{{ $t1('备注') }}</th>
@@ -21,7 +21,6 @@ export default {
21
21
  flag: 0,
22
22
  homeContent: null,
23
23
  showHomeContent: false,
24
- userInfo: {}
25
24
  };
26
25
  },
27
26
  created() {
@@ -34,7 +33,6 @@ export default {
34
33
  method: 'post',
35
34
  success: res => {
36
35
  let userInfo = res.objx;
37
- this.userInfo = userInfo;
38
36
  let flag = userInfo.flag;
39
37
  if (flag !== 6 && flag !== 7 && flag !== 8) {
40
38
  this.initHome();
@@ -74,8 +72,8 @@ export default {
74
72
  if (menuUrl) {
75
73
  url = menuUrl + '.vue';
76
74
  } else {
77
- let defaultHomePage = this.userInfo.defaultHomePage;
78
- url = defaultHomePage ? defaultHomePage : '@base/views/user/home/default.vue'
75
+ let homeConfig = corejsConfig.homeConfig || {}
76
+ url = homeConfig.url ? homeConfig.url : '@base/views/user/home/default.vue'
79
77
  }
80
78
  if (url.startsWith(str1)) {
81
79
  let a = url.slice(str1.length);
@@ -51,9 +51,6 @@ export default {
51
51
  },
52
52
  param: {
53
53
  default: null
54
- },
55
- queryParam: {
56
- default: null
57
54
  }
58
55
  },
59
56
  created() {
@@ -105,8 +102,7 @@ export default {
105
102
  url: url,
106
103
  data: {
107
104
  publish: true,
108
- current: pageNumber,
109
- ...this.queryParam
105
+ current: pageNumber
110
106
  },
111
107
  success: res => {
112
108
  let page = res.objx;
@@ -125,11 +121,9 @@ export default {
125
121
  });
126
122
  this.currentRow = currentRow;
127
123
  this.currentIndex = currentIndex;
128
- this.handleRead(this.currentIndex)
129
124
  } else {
130
125
  this.currentIndex = 0;
131
126
  this.currentRow = page.records.length > 0 ? page.records[0] : {};
132
- this.handleRead(this.currentIndex)
133
127
  }
134
128
  }
135
129
  });
@@ -138,24 +132,6 @@ export default {
138
132
  this.flag = 0;
139
133
  this.currentIndex = index;
140
134
  this.currentRow = item;
141
- this.handleRead(index)
142
- },
143
- handleRead(index, callback) {
144
- let row = this.page.records[index];
145
- if (row.readed !== 1) {
146
- this.$http({
147
- url: USER_PREFIX + `/system_notice/read`,
148
- method: `post`,
149
- data: {id: row.id},
150
- isLoading: true,
151
- success: res => {
152
- row.readed = 1;
153
- callback && callback()
154
- }
155
- });
156
- } else {
157
- callback && callback()
158
- }
159
135
  },
160
136
  initAttachfo() {
161
137
  let id = this.currentRow && this.currentRow.id ? this.currentRow.id : '';