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.
38 lines
886 B
38 lines
886 B
3 weeks ago
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export default {
|
||
|
getRainTableList(searchModel) {
|
||
|
return request({
|
||
|
url: "/actualSurvey/getFlowResult",
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
pageNum: searchModel.pageNum,
|
||
|
pageSize: searchModel.pageSize,
|
||
|
stcdIds: searchModel.stcdIds,
|
||
|
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: "/month/import/importMonthRainList",
|
||
|
// method: 'post',
|
||
|
// params: {
|
||
|
// startTime: from.startTime,
|
||
|
// endTime: from.endTime,
|
||
|
// }
|
||
|
// })
|
||
|
// }
|
||
|
}
|