This commit is contained in:
‘937886381’
2024-04-28 11:04:33 +08:00
parent 5721816782
commit 1b8f2522c1
11 changed files with 752 additions and 184 deletions

View File

@@ -1,7 +1,7 @@
<!--
* @Author: zhp
* @Date: 2024-04-15 10:49:13
* @LastEditTime: 2024-04-17 16:14:01
* @LastEditTime: 2024-04-26 15:18:15
* @LastEditors: zhp
* @Description:
-->
@@ -72,7 +72,7 @@
<script>
// import { parseTime } from '../../core/mixins/code-filter';
// import { getGlassPage, exportGlasscExcel } from '@/api/report/glass';
import { getEpPage } from '@/api/greenest/index';
// import inputTable from './inputTable.vue';
import lineChart from './lineChart';
import moment from 'moment'
@@ -83,11 +83,11 @@ export default {
data() {
return {
listQuery: {
pageSize: 10,
pageNo: 1,
factoryId: null,
total: 0,
type: null,
current: 1,
size: 999,
// factoryId: null,
// total: 0,
// type: null,
// reportType: 2,
reportTime: []
},
@@ -199,7 +199,7 @@ export default {
},
mounted() {
this.getDict()
// this.getCurrentYearFirst()
this.getCurrentYearFirst()
// this.getDataList()
},
methods: {
@@ -264,6 +264,8 @@ export default {
},
async getDataList() {
const res = getEpPage(this.listQuery)
console.log(res)
},
add0(m) {
return m < 10 ? '0' + m : m