1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import req from '@/utils/request.js'
- /**
- * 获取分选报工信息
- * @param {Object} data
- */
- export function getSortingDayworkItem(data) {
- return req.request({
- url: '/business/sortDaywork/start',
- method: 'POST',
- data: data
- })
- }
- export function getInspectionList(data) {
- return req.request({
- url: '/business/sortDaywork/getInspectionList',
- method: 'POST',
- data: data
- })
- }
- export function selectInstructionList(data) {
- return req.request({
- url: '/business/sortDaywork/selectInstructionList',
- method: 'POST',
- data: data
- })
- }
- export function getInstructionInfo(data) {
- return req.request({
- url: '/business/sortDaywork/getInstructionList',
- method: 'POST',
- data: data
- })
- }
- export function getStandardList(data) {
- return req.request({
- url: '/business/sortDaywork/getStandardList',
- method: 'Get',
- data: data
- })
- }
- export function saveConsult(data) {
- return req.request({
- url: '/business/sortDaywork/saveConsult',
- method: 'POST',
- data: data
- })
- }
- export function finish(data) {
- return req.request({
- url: '/business/sortDaywork/finish',
- method: 'POST',
- data: data
- })
- }
- export function update(data) {
- return req.request({
- url: '/business/sortDaywork/update',
- method: 'POST',
- data: data
- })
- }
- export function showDayworkSave(data) {
- return req.request({
- url: '/business/sortDaywork/showDayworkSave',
- method: 'POST',
- data: data
- })
- }
|