You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
821 B
37 lines
821 B
2 weeks ago
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export default {
|
||
|
getTableList(searchModel) {
|
||
|
return request({
|
||
|
url: "/day/getDaySedimentConcentrationList",
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
pageNum: searchModel.pageNum,
|
||
|
pageSize: searchModel.pageSize,
|
||
|
startTime: searchModel.startTime,
|
||
|
endTime: searchModel.endTime,
|
||
|
stcd:searchModel.stcd,
|
||
|
stnm:searchModel.stnm
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
exportRainDataList(){
|
||
|
return request({
|
||
|
url: "/export/exportMonthRainList",
|
||
|
method: 'get',
|
||
|
responseType: 'blob'
|
||
|
})
|
||
|
},
|
||
|
importDateToSoft(from){
|
||
|
return request({
|
||
|
url: "/day/import/importDaySedimentConcentrationDateToSoft",
|
||
|
method: 'post',
|
||
|
params: {
|
||
|
startTime: from.startTime,
|
||
|
endTime: from.endTime,
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|