Initial commit
This commit is contained in:
31
api/annualReview.js
Normal file
31
api/annualReview.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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
|
||||
// ); // 年审列表
|
||||
// },
|
||||
};
|
||||
Reference in New Issue
Block a user