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
886 B
37 lines
886 B
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, |
|
// } |
|
// }) |
|
// } |
|
}
|
|
|