查询接口参数调整
This commit is contained in:
parent
2562d7098d
commit
8b6765679a
|
@ -98,7 +98,8 @@ export default {
|
||||||
dataType: 'B',
|
dataType: 'B',
|
||||||
startTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
startTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
||||||
endTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
endTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
||||||
stationIds:[]
|
stationIds: [],
|
||||||
|
spectralQualifie:""
|
||||||
},
|
},
|
||||||
url: {
|
url: {
|
||||||
list: '/webStatistics/findParticulatePage',
|
list: '/webStatistics/findParticulatePage',
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div style="height: 100%;">
|
<div style="height: 100%;">
|
||||||
<List :stationList="stationList" :columns="columns" :dataType="dataType"></List>
|
<List :stationList="stationList" :spectralQualifie="spectralQualifie" :columns="columns" :dataType="dataType"></List>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -67,7 +67,8 @@ export default {
|
||||||
},
|
},
|
||||||
stationList: [],
|
stationList: [],
|
||||||
columns,
|
columns,
|
||||||
dataType:"FULL"
|
dataType: "S",
|
||||||
|
spectralQualifie:"FULL"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div style="height: 100%;">
|
<div style="height: 100%;">
|
||||||
<List :stationList="stationList" :columns="columns" :dataType="dataType"></List>
|
<List :stationList="stationList" :spectralQualifie="spectralQualifie" :columns="columns" :dataType="dataType"></List>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -67,7 +67,8 @@ export default {
|
||||||
},
|
},
|
||||||
stationList: [],
|
stationList: [],
|
||||||
columns,
|
columns,
|
||||||
dataType:"PREL"
|
dataType: "S",
|
||||||
|
spectralQualifie:"PREL"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<search-form :items="formItems" v-model="queryParam" @search="searchQueryData">
|
<search-form :items="formItems" v-model="queryParam" @search="searchQueryData">
|
||||||
<a-space style="float: right" class="btn-group" slot="additional">
|
<a-space style="float: right" class="btn-group" slot="additional">
|
||||||
<a-button @click="handleEdit" type="primary">
|
<a-button @click="handleEdit" type="primary">
|
||||||
<img src="@/assets/images/global/edit.png" alt="" />
|
<img class="icon-edit" src="@/assets/images/global/edit.png" alt="" />
|
||||||
Excel
|
Excel
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-space>
|
</a-space>
|
||||||
|
@ -49,6 +49,10 @@ export default {
|
||||||
dataType: {
|
dataType: {
|
||||||
type: String,
|
type: String,
|
||||||
default:""
|
default:""
|
||||||
|
},
|
||||||
|
spectralQualifie: {
|
||||||
|
type: String,
|
||||||
|
default:""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mixins: [JeecgListMixin],
|
mixins: [JeecgListMixin],
|
||||||
|
@ -63,7 +67,8 @@ export default {
|
||||||
dataType: this.dataType,
|
dataType: this.dataType,
|
||||||
startTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
startTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
||||||
endTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
endTime: dateFormat(new Date(), 'yyyy-MM-dd'),
|
||||||
stationIds:[]
|
stationIds: [],
|
||||||
|
spectralQualifie:this.spectralQualifie
|
||||||
},
|
},
|
||||||
url: {
|
url: {
|
||||||
list: '/webStatistics/findParticulatePage',
|
list: '/webStatistics/findParticulatePage',
|
||||||
|
@ -208,6 +213,8 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
.icon-edit{
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user