cloud-web-corejs 1.0.103 → 1.0.105

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.103",
4
+ "version": "1.0.105",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -287,7 +287,7 @@ export default {
287
287
  initSystemNotice() {
288
288
  this.$http({
289
289
  url: USER_PREFIX + '/system_notice/listPage',
290
- data: {publish: true},
290
+ data: {publish: true, searchCount: false},
291
291
  method: 'post',
292
292
  success: res => {
293
293
  this.systemNotices = res.objx && res.objx.records ? res.objx.records : [];
@@ -301,7 +301,7 @@ export default {
301
301
  initUnDoWfInfo() {
302
302
  this.$http({
303
303
  url: AGILEBPM_PREFIX + '/wf_manage/listPage',
304
- data: {type: 0},
304
+ data: {type: 0, searchCount: false},
305
305
  method: 'post',
306
306
  success: res => {
307
307
  this.unDoWfRows = res.objx.records || [];
@@ -412,7 +412,7 @@ export default {
412
412
  initNotifyMessage() {
413
413
  this.$http({
414
414
  url: USER_PREFIX + '/notify_message/listPage',
415
- data: {},
415
+ data: {searchCount: false},
416
416
  method: 'post',
417
417
  success: res => {
418
418
  this.notifyMessages = res.objx && res.objx.records ? res.objx.records : [];
@@ -452,9 +452,9 @@ export default {
452
452
  this.$http({
453
453
  url: USER_PREFIX + `/notify_template/listPage`,
454
454
  method: `post`,
455
- data: {},
455
+ data: {searchCount: false},
456
456
  isLoading: true,
457
- loadingTarget: document.body,
457
+ // loadingTarget: document.body,
458
458
  success: res => {
459
459
  this.notifyTemplates = res.objx && res.objx.records ? res.objx.records : [];
460
460
  this.showGroupDialog = true;
@@ -515,7 +515,7 @@ export default {
515
515
  method: `post`,
516
516
  data: {},
517
517
  isLoading: true,
518
- loadingTarget: document.body,
518
+ // loadingTarget: document.body,
519
519
  modalStrictly: true,
520
520
  success: res => {
521
521
  this.wfParamDTOs = res.objx || [];
@@ -529,11 +529,11 @@ export default {
529
529
  }
530
530
  this.$http({
531
531
  url: USER_PREFIX + '/wf_info/listPage',
532
- data: {type: 0, size: 20},
532
+ data: {type: 0, size: 20, searchCount: false},
533
533
  method: 'post',
534
534
  isLoading: isLoading,
535
535
  modal: isLoading || false,
536
- loadingTarget: document.body,
536
+ // loadingTarget: document.body,
537
537
  success: res => {
538
538
  this.unDoWfRows = res.objx && res.objx.records ? res.objx.records : [];
539
539
  },
@@ -556,7 +556,7 @@ export default {
556
556
  data: {},
557
557
  isLoading: isLoading,
558
558
  modal: isLoading || false,
559
- loadingTarget: document.body,
559
+ // loadingTarget: document.body,
560
560
  success: res => {
561
561
  this.unreadMessageNum = res.objx || 0;
562
562
  },