@@ -920,7 +920,7 @@ export default {
920
920
$skip: this .skip ,
921
921
$limit: this .limit
922
922
}).then (queryresp => {
923
- console .log (' queryresp: ' , queryresp)
923
+ // console.log('queryresp: ', queryresp)
924
924
// this.entriesTotal = queryresp.data.data.length
925
925
this .isFlowzLoaded = true
926
926
this .dataTotal = queryresp .data .total
@@ -996,10 +996,8 @@ export default {
996
996
feathers: {
997
997
' finstance' : {
998
998
created (data ) {
999
- console .log (' Data: ' , data)
1000
999
},
1001
1000
updated (data ) {
1002
- console .log (' Schema view Data: ' , data)
1003
1001
if (this .$store .state .role === 1 ) {
1004
1002
if (data .currentStatus === this .$route .params .stateid ) {
1005
1003
// // data = data.data
@@ -1025,22 +1023,22 @@ export default {
1025
1023
// })
1026
1024
// }, 2000)
1027
1025
// console.log('Length: ', this.instanceEntries.length)
1028
- console .log (' instanceEntries: ' , this .instanceEntries .length , this .entriesTotal )
1026
+ // console.log('instanceEntries: ', this.instanceEntries.length, this.entriesTotal)
1029
1027
if (this .instanceEntries .length < this .entriesTotal ) {
1030
- console .log (' Ready to push: ' , this .instanceEntries .length )
1028
+ // console.log('Ready to push: ', this.instanceEntries.length)
1031
1029
// push to table
1032
1030
let instanceObj = data
1033
1031
// console.log('instanceObj: ', instanceObj)
1034
1032
let lastEntryId = data .stageReference [data .stageReference .length - 1 ].stageRecordId
1035
- console .log (' lastEntryId: ' , lastEntryId)
1033
+ // console.log('lastEntryId: ', lastEntryId)
1036
1034
if (lastEntryId !== undefined ) {
1037
1035
flowzdataModal .get (lastEntryId).then (res => {
1038
- console .log (' Response fdata: ' , res)
1036
+ // console.log('Response fdata: ', res)
1039
1037
instanceObj[' data' ] = res .data .data
1040
1038
instanceObj[' iid' ] = data .id
1041
1039
this .instanceEntries .push (instanceObj)
1042
1040
this .dataData .push (instanceObj)
1043
- console .log (' Pushed data: ' , this .instanceEntries , this .dataData )
1041
+ // console.log('Pushed data: ', this.instanceEntries, this.dataData)
1044
1042
})
1045
1043
}
1046
1044
} else {
0 commit comments