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.
30 lines
638 B
30 lines
638 B
3 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export default {
|
||
|
getStationList(searchModel) {
|
||
|
return request({
|
||
|
url: "/basic/getStationPageByInfo",
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
pageNum: searchModel.pageNum,
|
||
|
pageSize: searchModel.pageSize,
|
||
|
startTime: searchModel.startTime,
|
||
|
endTime: searchModel.endTime,
|
||
|
stcd:searchModel.stcd,
|
||
|
stnm:searchModel.stnm
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
importDateToSoft(from){
|
||
|
return request({
|
||
|
url: "/basic/importDateToSoft",
|
||
|
method: 'post',
|
||
|
params: {
|
||
|
startTime: from.startTime,
|
||
|
endTime: from.endTime,
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|