Ver código fonte

修改bug

pull/266/head
‘937886381’ 6 meses atrás
pai
commit
f8829ec3b7
2 arquivos alterados com 10 adições e 9 exclusões
  1. +1
    -1
      .env.dev
  2. +9
    -8
      src/views/quality/monitoring/equipmentTraceability/index.vue

+ 1
- 1
.env.dev Ver arquivo

@@ -1,7 +1,7 @@
###
# @Author: Do not edit
# @Date: 2023-08-29 09:40:39
# @LastEditTime: 2024-03-21 14:45:52
# @LastEditTime: 2024-03-22 10:57:53
# @LastEditors: zhp
# @Description:
###


+ 9
- 8
src/views/quality/monitoring/equipmentTraceability/index.vue Ver arquivo

@@ -244,7 +244,7 @@ export default {
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'timerange',
param: 'recordTime',
},
// {
// parent: 'dateFilterType',
@@ -270,6 +270,7 @@ export default {
btnName: '导出',
name: 'export',
color: 'warning',

},
// {
// type: 'separate',
@@ -381,7 +382,7 @@ export default {
},
/** 查询列表 */
async getList() {
this.loading = true;
this.loading = true
const { code, data } = await this.$axios({
url: '/analysis/equipment-analysis/efficiency',
method: 'get',
@@ -402,14 +403,14 @@ export default {
if (btnName == 'search') {
this.queryParams.workOrderId = payload.workOrderId || null;
// this.queryParams.lineId = payload.lineId || null;
if (0 == payload.dateFilterType) {
this.queryParams.recordTime = payload.timerange;
} else if (1 == payload.dateFilterType) {
// if (0 == payload.dateFilterType) {
this.queryParams.recordTime = payload.recordTime;
// } else if (1 == payload.dateFilterType) {
this.queryParams.recordTime = [
`${payload.timeday} 00:00:00`,
`${payload.timeday} 23:59:59`,
payload.recordTime[0],
payload.recordTime[1],
];
}
// }
} else {
this.handleExport()
this.queryParams.recordTime = null;


Carregando…
Cancelar
Salvar