cloud-web-corejs 1.0.104 → 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
@@ -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,7 +452,7 @@ 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
457
|
// loadingTarget: document.body,
|
458
458
|
success: res => {
|
@@ -529,7 +529,7 @@ 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,
|