1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询作业指导书列表
- export function listInstruction(query) {
- return request({
- url: '/system/instruction/list',
- method: 'get',
- params: query
- })
- }
- // 查询作业指导书详细
- export function getInstruction(id) {
- return request({
- url: '/system/instruction/' + id,
- method: 'get'
- })
- }
- // 新增作业指导书
- export function addInstruction(data) {
- return request({
- url: '/system/instruction',
- method: 'post',
- data: data
- })
- }
- // 修改作业指导书
- export function updateInstruction(data) {
- return request({
- url: '/system/instruction',
- method: 'put',
- data: data
- })
- }
- // 删除作业指导书
- export function delInstruction(id) {
- return request({
- url: '/system/instruction/' + id,
- method: 'delete'
- })
- }
|