2023-12-20 17:54:32 +08:00
|
|
|
import request from '@/utils/request'
|
2023-12-21 17:40:41 +08:00
|
|
|
// 安全生产月表列表
|
|
|
|
export function safetyproductmonthLists(params: any) {
|
|
|
|
return request.get({ url: '/safety.safety_product_month/lists', params })
|
2023-12-20 17:54:32 +08:00
|
|
|
}
|
|
|
|
|
2023-12-21 17:40:41 +08:00
|
|
|
// 添加安全生产月表
|
|
|
|
export function safetyproductmonthAdd(params: any) {
|
|
|
|
return request.post({ url: '/safety.safety_product_month/add', params })
|
2023-12-20 17:54:32 +08:00
|
|
|
}
|
|
|
|
|
2023-12-21 17:40:41 +08:00
|
|
|
// 编辑安全生产月表
|
|
|
|
export function safetyproductmonthEdit(params: any) {
|
|
|
|
return request.post({ url: '/safety.safety_product_month/edit', params })
|
2023-12-20 17:54:32 +08:00
|
|
|
}
|
|
|
|
|
2023-12-21 17:40:41 +08:00
|
|
|
// 删除安全生产月表
|
|
|
|
export function safetyproductmonthDelete(params: any) {
|
|
|
|
return request.post({ url: '/safety.safety_product_month/delete', params })
|
2023-12-20 17:54:32 +08:00
|
|
|
}
|
|
|
|
|
2023-12-21 17:40:41 +08:00
|
|
|
// 安全生产月表详情
|
|
|
|
export function safetyproductmonthDetail(params: any) {
|
|
|
|
return request.get({ url: '/safety.safety_product_month/detail', params })
|
2023-12-20 17:54:32 +08:00
|
|
|
}
|