forked from integrated_whb/integrated_whb_vue
7 lines
292 B
JavaScript
7 lines
292 B
JavaScript
|
import { post } from "@/request/axios.js";
|
||
|
|
||
|
export const getBlindPlatePluggingList = (params) =>
|
||
|
post("/blindboard/list", params); // 盲板抽堵作业管理列表
|
||
|
export const getBlindPlatePluggingView = (params) =>
|
||
|
post("/blindboard/goEdit", params); // 盲板抽堵作业管理查看
|