This commit is contained in:
parent
dbb252518f
commit
5dead67935
|
|
@ -11,9 +11,9 @@ import { generateRequestSignature } from '@/utils/crypto-js'
|
|||
|
||||
const systemConfig = {
|
||||
requestConfig: {
|
||||
encryptRequest: process.env.VUE_APP_ENV === 'production' ? false : true,
|
||||
checkIntegrity: process.env.VUE_APP_ENV === 'production' ? false : true,
|
||||
encryptResponse: process.env.VUE_APP_ENV === 'production' ? false : true,
|
||||
encryptRequest: process.env.VUE_APP_ENV === 'production' ? true : false,
|
||||
checkIntegrity: process.env.VUE_APP_ENV === 'production' ? true : false,
|
||||
encryptResponse: process.env.VUE_APP_ENV === 'production' ? true : false,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -266,6 +266,9 @@ export default {
|
|||
// this.rangeDate[0] + ' - ' + this.rangeDate[1]
|
||||
this.listQuery.startTime = this.rangeDate[0]
|
||||
this.listQuery.endTime = this.rangeDate[1]
|
||||
} else {
|
||||
this.listQuery.startTime = ''
|
||||
this.listQuery.endTime = ''
|
||||
}
|
||||
getErrLogs(this.listQuery).then((response) => {
|
||||
this.list = response.rows.map((item) => {
|
||||
|
|
|
|||
|
|
@ -260,6 +260,9 @@ export default {
|
|||
// this.rangeDate[0] + ' - ' + this.rangeDate[1]
|
||||
this.listQuery.startTime = this.rangeDate[0]
|
||||
this.listQuery.endTime = this.rangeDate[1]
|
||||
} else {
|
||||
this.listQuery.startTime = ''
|
||||
this.listQuery.endTime = ''
|
||||
}
|
||||
getYwLogs(this.listQuery).then((response) => {
|
||||
this.list = response.rows.map((item) => {
|
||||
|
|
|
|||
|
|
@ -89,6 +89,9 @@
|
|||
// this.listQuery.operTime = this.rangeDate[0]+' - '+this.rangeDate[1];
|
||||
this.listQuery.startTime = this.rangeDate[0]
|
||||
this.listQuery.endTime = this.rangeDate[1]
|
||||
} else {
|
||||
this.listQuery.startTime = ''
|
||||
this.listQuery.endTime = ''
|
||||
}
|
||||
getAnalyseData(this.listQuery).then((response) => {
|
||||
this.sumNum = response.data.allNum||0
|
||||
|
|
|
|||
|
|
@ -251,6 +251,9 @@ export default {
|
|||
// this.rangeDate[0] + ' - ' + this.rangeDate[1]
|
||||
this.listQuery.startTime = this.rangeDate[0]
|
||||
this.listQuery.endTime = this.rangeDate[1]
|
||||
} else {
|
||||
this.listQuery.startTime = ''
|
||||
this.listQuery.endTime = ''
|
||||
}
|
||||
getSysLogs(this.listQuery).then((response) => {
|
||||
this.list = response.rows.map((item) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue