32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
import axios from "@/utils/request";
|
|
|
|
export default {
|
|
queryTakePageList(params) {
|
|
return axios.post(`/vehicle/vehicleAnnualInspection/queryPageList`, params); // 年审列表
|
|
},
|
|
getTakeId(params) {
|
|
return axios.get(`/vehicle/vehicleAnnualInspection/getVoById`, params); // 年审详情
|
|
},
|
|
getAnnualInspectionStatusName(params) {
|
|
return axios.get(`/dic/queryByDicType`, {
|
|
dicType: "dic_annual_inspection_status",
|
|
}); // 字典数据
|
|
},
|
|
save(params) {
|
|
return axios.post(`/vehicle/vehicleAnnualInspection/save`, params); // add edit
|
|
},
|
|
queryIdNames(params) {
|
|
return axios.get(`/annualReviewServiceStation/queryIdNames`, params); // 年检服务站名称
|
|
},
|
|
getToDo(params) {
|
|
return axios.get(`/vehicle/vehicleAnnualInspection/getToDo`, params); // 年检服务站名称
|
|
},
|
|
//获取年审服务站列表
|
|
// queryStationPageList(params) {
|
|
// return axios.post(
|
|
// `/vehicle/annualInspectionServiceStation/queryPageList`,
|
|
// params
|
|
// ); // 年审列表
|
|
// },
|
|
};
|