@@ -370,6 +377,8 @@ export default {
agreementId: '',
agreementCode: '',
time:null,
+ startTime: null,
+ endTime: null,
},
// 多选框选中数据
@@ -530,8 +539,8 @@ export default {
deviceName: this.queryParams.deviceName,
typeName: this.queryParams.typeName,
agreementId: this.queryParams.agreementId,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
}
getReliefList(params).then((response) => {
diff --git a/src/views/material/lease/apply/component/homeApply.vue b/src/views/material/lease/apply/component/homeApply.vue
index 21b4ae05..9f75d62b 100644
--- a/src/views/material/lease/apply/component/homeApply.vue
+++ b/src/views/material/lease/apply/component/homeApply.vue
@@ -1172,8 +1172,8 @@ export default {
const params = {
keyWord: this.queryParams.keyWord,
taskStatus: this.queryParams.taskStatus,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
statusList: this.queryParams.taskStatus ? [this.queryParams.taskStatus] : [1, 2, 3, 4]
diff --git a/src/views/material/lease/apply/component/outbound.vue b/src/views/material/lease/apply/component/outbound.vue
index 81721472..faef6d12 100644
--- a/src/views/material/lease/apply/component/outbound.vue
+++ b/src/views/material/lease/apply/component/outbound.vue
@@ -333,18 +333,23 @@
>
-
+
+
+ -
+
+
diff --git a/src/views/material/lease/apply/component/picking.vue b/src/views/material/lease/apply/component/picking.vue
index 81721472..faef6d12 100644
--- a/src/views/material/lease/apply/component/picking.vue
+++ b/src/views/material/lease/apply/component/picking.vue
@@ -333,18 +333,23 @@
>
-
+
+
+ -
+
+
diff --git a/src/views/material/part/partAccept/index.vue b/src/views/material/part/partAccept/index.vue
index 9d63d8bd..bd8c260b 100644
--- a/src/views/material/part/partAccept/index.vue
+++ b/src/views/material/part/partAccept/index.vue
@@ -442,7 +442,7 @@ import { getToken } from '@/utils/auth'
const currentTime = formatTime(new Date());
this.download(
"/material/part_arrived/export",
- { ...this.queryParams},
+ { ...this.queryParams, taskStage: 2},
`配件新购到货_${currentTime}.xlsx`
);
},
diff --git a/src/views/material/part/partAcceptTwo/index.vue b/src/views/material/part/partAcceptTwo/index.vue
index 00b5407f..4f7a1194 100644
--- a/src/views/material/part/partAcceptTwo/index.vue
+++ b/src/views/material/part/partAcceptTwo/index.vue
@@ -455,7 +455,7 @@ import { getToken } from '@/utils/auth'
const currentTime = formatTime(new Date());
this.download(
"/material/part_arrived/export",
- { ...this.queryParams},
+ { ...this.queryParams, taskStage: 2},
`配件新购到货_${currentTime}.xlsx`
);
},
diff --git a/src/views/material/part/partArrived/component/home.vue b/src/views/material/part/partArrived/component/home.vue
index a736c41b..b4cea269 100644
--- a/src/views/material/part/partArrived/component/home.vue
+++ b/src/views/material/part/partArrived/component/home.vue
@@ -675,7 +675,7 @@ export default {
const currentTime = formatTime(new Date());
this.download(
"/material/part_arrived/export",
- { ...this.queryParams},
+ { ...this.queryParams, taskStage: 1},
`配件新购到货__${currentTime}.xlsx`
);
},
diff --git a/src/views/material/query/backQuery.vue b/src/views/material/query/backQuery.vue
index 28ef8642..0c7ea8a5 100644
--- a/src/views/material/query/backQuery.vue
+++ b/src/views/material/query/backQuery.vue
@@ -1,16 +1,24 @@
-
+
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
0) {
- this.queryParams.startTime = this.queryParams.time[0]
- this.queryParams.endTime = this.queryParams.time[1]
- }else{
- this.queryParams.startTime=undefined
- this.queryParams.endTime=undefined
- }
+ // if (this.queryParams.time && this.queryParams.time.length > 0) {
+ // this.queryParams.startTime = this.queryParams.time[0]
+ // this.queryParams.endTime = this.queryParams.time[1]
+ // }else{
+ // this.queryParams.startTime=undefined
+ // this.queryParams.endTime=undefined
+ // }
const res = await getBackQueryList(this.queryParams)
this.tableList = res.data.rows
this.total = res.data.total
diff --git a/src/views/material/query/repairAuditQuery.vue b/src/views/material/query/repairAuditQuery.vue
index 76b662dc..5d86d3f1 100644
--- a/src/views/material/query/repairAuditQuery.vue
+++ b/src/views/material/query/repairAuditQuery.vue
@@ -1,16 +1,24 @@
-
+
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
0) {
- this.queryParams.startTime = this.queryParams.time[0]
- this.queryParams.endTime = this.queryParams.time[1]
- }else{
- this.queryParams.startTime=undefined
- this.queryParams.endTime=undefined
- }
+ // if (this.queryParams.time && this.queryParams.time.length > 0) {
+ // this.queryParams.startTime = this.queryParams.time[0]
+ // this.queryParams.endTime = this.queryParams.time[1]
+ // }else{
+ // this.queryParams.startTime=undefined
+ // this.queryParams.endTime=undefined
+ // }
const res = await getRepairAuditQueryList(this.queryParams)
this.tableList = res.data.rows
this.total = res.data.total
diff --git a/src/views/material/query/repairQuery.vue b/src/views/material/query/repairQuery.vue
index 29e1cc6e..57a7847c 100644
--- a/src/views/material/query/repairQuery.vue
+++ b/src/views/material/query/repairQuery.vue
@@ -1,16 +1,24 @@
-
+
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
0) {
- this.queryParams.startTime = this.queryParams.time[0]
- this.queryParams.endTime = this.queryParams.time[1]
- }else{
- this.queryParams.startTime=undefined
- this.queryParams.endTime=undefined
- }
+ // if (this.queryParams.time && this.queryParams.time.length > 0) {
+ // this.queryParams.startTime = this.queryParams.time[0]
+ // this.queryParams.endTime = this.queryParams.time[1]
+ // }else{
+ // this.queryParams.startTime=undefined
+ // this.queryParams.endTime=undefined
+ // }
const res = await getRepairQueryList(this.queryParams)
this.tableList = res.data.rows
this.total = res.data.total
diff --git a/src/views/material/repair/partUsing/index.vue b/src/views/material/repair/partUsing/index.vue
index 40c8b359..499ab8d0 100644
--- a/src/views/material/repair/partUsing/index.vue
+++ b/src/views/material/repair/partUsing/index.vue
@@ -323,8 +323,8 @@ export default {
keyWord: this.queryParams.keyWord,
typeName: this.queryParams.typeName,
statusName: this.queryParams.statusName,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum
}
diff --git a/src/views/material/repair/projectRepairing/index.vue b/src/views/material/repair/projectRepairing/index.vue
index 35858c2f..4c58585b 100644
--- a/src/views/material/repair/projectRepairing/index.vue
+++ b/src/views/material/repair/projectRepairing/index.vue
@@ -213,8 +213,8 @@ export default {
const params = {
keyWord: this.queryParams.keyWord,
statusName: this.queryParams.statusName,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum
}
diff --git a/src/views/material/repair/repairManage/component/home.vue b/src/views/material/repair/repairManage/component/home.vue
index 795a0df5..25fbba91 100644
--- a/src/views/material/repair/repairManage/component/home.vue
+++ b/src/views/material/repair/repairManage/component/home.vue
@@ -49,6 +49,9 @@
导出
+
+ 导出明细
+
@@ -681,6 +684,18 @@ export default {
`维修任务单_${currentTime}.xlsx`,
)
},
+ handleDetailsExport() {
+ const currentTime = formatTime(new Date());
+ this.download(
+ 'material/repair/exportDetails',
+ {
+ ...this.queryParams,
+ // startTime:this.queryParams.time[0],
+ // endTime:this.queryParams.time[1]
+ },
+ `维修任务详情单_${currentTime}.xlsx`,
+ )
+ },
//查看维修任务单
async handlePrint(row) {
const res = await getRepairDocumentInfo(row.taskId);
diff --git a/src/views/material/repair/repairTest/index.vue b/src/views/material/repair/repairTest/index.vue
index b1468a0d..d6ea3a01 100644
--- a/src/views/material/repair/repairTest/index.vue
+++ b/src/views/material/repair/repairTest/index.vue
@@ -1,17 +1,25 @@
-
-
-
+
+
+
+ -
+
+
+
-
-
+
+
+
+ -
+
+
导出
+
+ 导出明细
+
+
+ const validOptions = allOptions.filter(item =>
item.value == 10 || item.value == 11 || item.value == 12
)
-
+
// 如果有有效选项,设置第一个为默认值
if (validOptions.length > 0) {
this.queryParams.taskStatus = validOptions[0].value
}
-
+
// 执行查询
this.getList()
},
@@ -543,6 +553,28 @@ export default {
`修试审核_${currentTime}.xlsx`
);
},
+ handleDetailsExport() {
+ const formatTime = (date) => {
+ const year = date.getFullYear();
+ const month = String(date.getMonth() + 1).padStart(2, '0');
+ const day = String(date.getDate()).padStart(2, '0');
+ const hours = String(date.getHours()).padStart(2, '0');
+ const minutes = String(date.getMinutes()).padStart(2, '0');
+ const seconds = String(date.getSeconds()).padStart(2, '0');
+ return `${year}${month}${day}_${hours}${minutes}${seconds}`;
+ };
+
+ const currentTime = formatTime(new Date());
+ this.download(
+ "/material/repair/exportAuditDetails",
+ {
+ ...this.queryParams,
+ // startTime: this.queryParams.time && this.queryParams.time[0],
+ // endTime: this.queryParams.time && this.queryParams.time[1],
+ },
+ `修试审核详情_${currentTime}.xlsx`
+ );
+ },
//发布按钮
handleSend(row) {
diff --git a/src/views/material/repair/testRecord/index.vue b/src/views/material/repair/testRecord/index.vue
index 57988372..e74f5306 100644
--- a/src/views/material/repair/testRecord/index.vue
+++ b/src/views/material/repair/testRecord/index.vue
@@ -554,8 +554,8 @@ export default {
keyWord: this.queryParams.keyWord,
typeName: this.queryParams.typeName,
statusName: this.queryParams.statusName,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum
}
diff --git a/src/views/material/report/backReport.vue b/src/views/material/report/backReport.vue
index 2e0781ab..29837dc2 100644
--- a/src/views/material/report/backReport.vue
+++ b/src/views/material/report/backReport.vue
@@ -1,15 +1,24 @@
-
+
-
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
-
+
-
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
@@ -340,6 +349,8 @@
pageSize: 10,
status: '',
keyWord:undefined,
+ startTime: '',
+ endTime: '',
},
// 总条数
total: 0,
@@ -417,8 +428,8 @@
this.loading = true
const params = {
keyWord: this.queryParams.keyWord,
- startTime: this.dateRange && this.dateRange[0],
- endTime: this.dateRange && this.dateRange[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
status: this.queryParams.status,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum
@@ -432,8 +443,8 @@
this.total = res.data.total;
let param = {
keyWord: this.queryParams.keyWord,
- startTime: this.dateRange && this.dateRange[0],
- endTime: this.dateRange && this.dateRange[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
status: this.queryParams.status,
}
const response = await getPurChaseReportListNoPageApi(param)
@@ -479,7 +490,7 @@
const currentTime = formatTime(new Date());
this.download(
"/material/bm_report/exportPurChaseReportList",
- {keyWord: this.queryParams.keyWord,startTime: this.dateRange && this.dateRange[0],endTime: this.dateRange && this.dateRange[1]},
+ { ...this.queryParams },
`新购入库报表_${currentTime}.xlsx`
);
},
diff --git a/src/views/material/report/repairReport.vue b/src/views/material/report/repairReport.vue
index b7c49893..68873935 100644
--- a/src/views/material/report/repairReport.vue
+++ b/src/views/material/report/repairReport.vue
@@ -1,15 +1,24 @@
-
+
-
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
-
+
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
-
+
-
+ type="date"
+ placeholder="开始日期"
+ style="width: 130px"
+ />
+
+ -
+
+
-
+
+
+ -
+
+
-
+
+
+ -
+
+
-
+
+
+ -
+
+
@@ -295,12 +316,12 @@ export default {
async getList() {
console.log('列表-查询', this.queryParams)
const loading = this.$loading({ text: '加载中...' })
- this.queryParams.startTime = this.queryParams.inputTimeRange ? this.queryParams.inputTimeRange[0] : ''
- this.queryParams.endTime = this.queryParams.inputTimeRange ? this.queryParams.inputTimeRange[1] : ''
- this.queryParams.checkStartTime = this.queryParams.thisCheckTimeRange? this.queryParams.thisCheckTimeRange[0] : ''
- this.queryParams.checkEndTime = this.queryParams.thisCheckTimeRange? this.queryParams.thisCheckTimeRange[1] : ''
- this.queryParams.nextStartTime = this.queryParams.nextCheckTimeRange? this.queryParams.nextCheckTimeRange[0] : ''
- this.queryParams.nextEndTime = this.queryParams.nextCheckTimeRange? this.queryParams.nextCheckTimeRange[1] : ''
+ // this.queryParams.startTime = this.queryParams.inputTimeRange ? this.queryParams.inputTimeRange[0] : ''
+ // this.queryParams.endTime = this.queryParams.inputTimeRange ? this.queryParams.inputTimeRange[1] : ''
+ // this.queryParams.checkStartTime = this.queryParams.thisCheckTimeRange? this.queryParams.thisCheckTimeRange[0] : ''
+ // this.queryParams.checkEndTime = this.queryParams.thisCheckTimeRange? this.queryParams.thisCheckTimeRange[1] : ''
+ // this.queryParams.nextStartTime = this.queryParams.nextCheckTimeRange? this.queryParams.nextCheckTimeRange[0] : ''
+ // this.queryParams.nextEndTime = this.queryParams.nextCheckTimeRange? this.queryParams.nextCheckTimeRange[1] : ''
try {
const params = { ...this.queryParams }
const res = await getMachineInfoApi(params)
diff --git a/src/views/materialsStation/toolsBack/back/outRecord.vue b/src/views/materialsStation/toolsBack/back/outRecord.vue
index 3fb7cdef..c2739db5 100644
--- a/src/views/materialsStation/toolsBack/back/outRecord.vue
+++ b/src/views/materialsStation/toolsBack/back/outRecord.vue
@@ -260,7 +260,9 @@ export default {
departName:'',//项目部
proName:'',//工程名称
subUnitName:'',//分包单位
- teamName:''//班组名称
+ teamName:'',//班组名称
+ startTime: null,
+ endTime: null
},
//在库弹窗
@@ -283,7 +285,9 @@ export default {
const end = new Date()
let start = new Date()
start.setMonth(start.getMonth() - 1)
- this.queryParams.timeRange = [this.format(start), this.format(end)]
+ // this.queryParams.timeRange = [this.format(start), this.format(end)]
+ this.queryParams.startTime = this.format(start)
+ this.queryParams.endTime = this.format(end)
this.getImpUnitOptions()
this.handleImpUnitChange()
this.handleDepartChange()
@@ -449,8 +453,8 @@ export default {
this.loading = true
const params = {
keyWord: this.queryParams.keyWord,
- startTime: this.queryParams.timeRange ? this.queryParams.timeRange[0] : null,
- endTime: this.queryParams.timeRange ? this.queryParams.timeRange[1] : null,
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
impUnitName:this.queryParams.impUnitName,
@@ -470,8 +474,8 @@ export default {
console.log(this.tableList)
let param = {
keyWord: this.queryParams.keyWord,
- startTime: this.queryParams.timeRange ? this.queryParams.timeRange[0] : null,
- endTime: this.queryParams.timeRange ? this.queryParams.timeRange[1] : null,
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
impUnitName:this.queryParams.impUnitName,
departName:this.queryParams.departName,
proName:this.queryParams.proName,
@@ -527,7 +531,9 @@ export default {
const end = new Date()
let start = new Date()
start.setMonth(start.getMonth() - 1)
- this.queryParams.timeRange = [this.format(start), this.format(end)]
+ // this.queryParams.timeRange = [this.format(start), this.format(end)]
+ this.queryParams.startTime = this.format(start)
+ this.queryParams.endTime = this.format(end)
this.resetForm('queryForm')
this.getImpUnitOptions()
this.handleImpUnitChange()
diff --git a/src/views/materialsStation/toolsLease/apply/component/homeApply.vue b/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
index 81837f07..03a4bb5d 100644
--- a/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
+++ b/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
@@ -806,8 +806,8 @@ export default {
const params = {
keyWord: this.queryParams.keyWord,
taskStatus: this.queryParams.taskStatus,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
statusList: this.queryParams.taskStatus ? [this.queryParams.taskStatus] : [1, 2, 3, 4]
diff --git a/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue b/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
index 4564eb13..c7f0ee3b 100644
--- a/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
+++ b/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
@@ -800,8 +800,8 @@ export default {
const params = {
keyWord: this.queryParams.keyWord,
taskStatus: this.queryParams.taskStatus,
- startTime: this.queryParams.time && this.queryParams.time[0],
- endTime: this.queryParams.time && this.queryParams.time[1],
+ startTime: this.queryParams.startTime,
+ endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
statusList: this.queryParams.taskStatus ? [this.queryParams.taskStatus] : [1, 2, 3, 4]
diff --git a/src/views/repair-testing/material-return/index.vue b/src/views/repair-testing/material-return/index.vue
index ef890c2d..5e50e957 100644
--- a/src/views/repair-testing/material-return/index.vue
+++ b/src/views/repair-testing/material-return/index.vue
@@ -5,15 +5,23 @@
-
+
+
+ -
+
+
@@ -145,7 +153,9 @@ export default {
typeName: '',
typeModelName: '',
pageNum: 1,
- pageSize: 10
+ pageSize: 10,
+ startTime: '',
+ endTime: ''
},
tableColumn: [
{ label: '协议号', prop: 'agreementCode' , showTooltip: true},
@@ -190,8 +200,8 @@ export default {
try {
const queryParams = {
...this.queryParams,
- startTime: this.time && this.time.length > 0 ? this.time[0] : '',
- endTime: this.time && this.time.length > 0 ? this.time[1] : ''
+ // startTime: this.time && this.time.length > 0 ? this.time[0] : '',
+ // endTime: this.time && this.time.length > 0 ? this.time[1] : ''
}
const res = await getTableListApi(queryParams)
diff --git a/src/views/repair-testing/one-machine/index.vue b/src/views/repair-testing/one-machine/index.vue
index 457b1f91..df9fc0f5 100644
--- a/src/views/repair-testing/one-machine/index.vue
+++ b/src/views/repair-testing/one-machine/index.vue
@@ -5,15 +5,23 @@
-
+
+
+ -
+
+
@@ -137,7 +145,9 @@ export default {
typeName: '',
typeModelName: '',
pageNum: 1,
- pageSize: 10
+ pageSize: 10,
+ startTime: null,
+ endTime: null
},
tableColumn: [
{ label: '协议号', prop: 'agreementCode', showTooltip: true },
@@ -171,8 +181,8 @@ export default {
async getTableList() {
const queryParams = {
...this.queryParams,
- startTime: this.time && this.time.length > 0 ? this.time[0] : '',
- endTime: this.time && this.time.length > 0 ? this.time[1] : ''
+ // startTime: this.time && this.time.length > 0 ? this.time[0] : '',
+ // endTime: this.time && this.time.length > 0 ? this.time[1] : ''
}
const res = await getTableListApi(queryParams)
diff --git a/src/views/repair-testing/repair-accessory/index.vue b/src/views/repair-testing/repair-accessory/index.vue
index 5028e9bc..c2de0d21 100644
--- a/src/views/repair-testing/repair-accessory/index.vue
+++ b/src/views/repair-testing/repair-accessory/index.vue
@@ -5,15 +5,23 @@
-
+
+
+ -
+
+
@@ -146,7 +154,9 @@ export default {
typeName: '',
typeModelName: '',
pageNum: 1,
- pageSize: 10
+ pageSize: 10,
+ startTime: '',
+ endTime: ''
},
tableColumn: [
{ label: '维修单号', prop: 'repairCode' , showTooltip: true},
@@ -187,8 +197,8 @@ export default {
async getTableList() {
const queryParams = {
...this.queryParams,
- startTime: this.time && this.time.length > 0 ? this.time[0] : '',
- endTime: this.time && this.time.length > 0 ? this.time[1] : ''
+ // startTime: this.time && this.time.length > 0 ? this.time[0] : '',
+ // endTime: this.time && this.time.length > 0 ? this.time[1] : ''
}
const res = await getTableListApi(queryParams)
diff --git a/src/views/warning-analysis/engineering-in-use/index.vue b/src/views/warning-analysis/engineering-in-use/index.vue
index 37f49791..d902ae46 100644
--- a/src/views/warning-analysis/engineering-in-use/index.vue
+++ b/src/views/warning-analysis/engineering-in-use/index.vue
@@ -2,17 +2,23 @@
-
+
+
+ -
+
+
@@ -121,7 +127,9 @@ export default {
keyWord: '', // 关键字
thirdTypeId: '',
typeId: '',
- timeRange: [] // 日期范围
+ timeRange: [], // 日期范围
+ startTime: '',
+ endTime: ''
},
typeIds: [],
@@ -183,8 +191,8 @@ export default {
try {
const params = {
...this.queryParams,
- startTime: this.queryParams.timeRange[0] || '',
- endTime: this.queryParams.timeRange[1] || ''
+ // startTime: this.queryParams.timeRange[0] || '',
+ // endTime: this.queryParams.timeRange[1] || ''
}
const res = await getUseMaintenanceWarningApi(params)
console.log('🚀 ~ 获取列表 ~ res:', res)