This commit is contained in:
bb_pan 2025-09-09 13:35:24 +08:00
parent dbb252518f
commit 5dead67935
5 changed files with 15 additions and 3 deletions

View File

@ -11,9 +11,9 @@ import { generateRequestSignature } from '@/utils/crypto-js'
const systemConfig = { const systemConfig = {
requestConfig: { requestConfig: {
encryptRequest: process.env.VUE_APP_ENV === 'production' ? false : true, encryptRequest: process.env.VUE_APP_ENV === 'production' ? true : false,
checkIntegrity: process.env.VUE_APP_ENV === 'production' ? false : true, checkIntegrity: process.env.VUE_APP_ENV === 'production' ? true : false,
encryptResponse: process.env.VUE_APP_ENV === 'production' ? false : true, encryptResponse: process.env.VUE_APP_ENV === 'production' ? true : false,
}, },
} }

View File

@ -266,6 +266,9 @@ export default {
// this.rangeDate[0] + ' - ' + this.rangeDate[1] // this.rangeDate[0] + ' - ' + this.rangeDate[1]
this.listQuery.startTime = this.rangeDate[0] this.listQuery.startTime = this.rangeDate[0]
this.listQuery.endTime = this.rangeDate[1] this.listQuery.endTime = this.rangeDate[1]
} else {
this.listQuery.startTime = ''
this.listQuery.endTime = ''
} }
getErrLogs(this.listQuery).then((response) => { getErrLogs(this.listQuery).then((response) => {
this.list = response.rows.map((item) => { this.list = response.rows.map((item) => {

View File

@ -260,6 +260,9 @@ export default {
// this.rangeDate[0] + ' - ' + this.rangeDate[1] // this.rangeDate[0] + ' - ' + this.rangeDate[1]
this.listQuery.startTime = this.rangeDate[0] this.listQuery.startTime = this.rangeDate[0]
this.listQuery.endTime = this.rangeDate[1] this.listQuery.endTime = this.rangeDate[1]
} else {
this.listQuery.startTime = ''
this.listQuery.endTime = ''
} }
getYwLogs(this.listQuery).then((response) => { getYwLogs(this.listQuery).then((response) => {
this.list = response.rows.map((item) => { this.list = response.rows.map((item) => {

View File

@ -89,6 +89,9 @@
// this.listQuery.operTime = this.rangeDate[0]+' - '+this.rangeDate[1]; // this.listQuery.operTime = this.rangeDate[0]+' - '+this.rangeDate[1];
this.listQuery.startTime = this.rangeDate[0] this.listQuery.startTime = this.rangeDate[0]
this.listQuery.endTime = this.rangeDate[1] this.listQuery.endTime = this.rangeDate[1]
} else {
this.listQuery.startTime = ''
this.listQuery.endTime = ''
} }
getAnalyseData(this.listQuery).then((response) => { getAnalyseData(this.listQuery).then((response) => {
this.sumNum = response.data.allNum||0 this.sumNum = response.data.allNum||0

View File

@ -251,6 +251,9 @@ export default {
// this.rangeDate[0] + ' - ' + this.rangeDate[1] // this.rangeDate[0] + ' - ' + this.rangeDate[1]
this.listQuery.startTime = this.rangeDate[0] this.listQuery.startTime = this.rangeDate[0]
this.listQuery.endTime = this.rangeDate[1] this.listQuery.endTime = this.rangeDate[1]
} else {
this.listQuery.startTime = ''
this.listQuery.endTime = ''
} }
getSysLogs(this.listQuery).then((response) => { getSysLogs(this.listQuery).then((response) => {
this.list = response.rows.map((item) => { this.list = response.rows.map((item) => {