Initial commit

This commit is contained in:
lnljyang
2025-12-30 09:44:46 +08:00
commit 82b8d21506
147 changed files with 39113 additions and 0 deletions

31
api/annualReview.js Normal file
View 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
// ); // 年审列表
// },
};