1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import req from '@/utils/request.js'
- /**
- * 获取生产子计划列表
- * @param {Object} data
- */
- export function getDeptList(data) {
- return req.request({
- url:'/system/dept/listByPlanDetailsId',
- method: 'GET',
- data: data
- })
- }
- export function getDeptListInfo(data) {
- return req.request({
- url:'/system/dept/getDeptListInfo',
- method: 'GET',
- data: data
- })
- }
- /**
- * 获取生产子计划列表
- * @param {Object} data
- */
- export function getDeptOptions(data) {
- return req.request({
- url:'/system/dept/getList',
- method: 'GET',
- data: data
- })
- }
- export function getUserDeptList(userId) {
- return req.request({
- url:'/system/dept/getUserDeptList?userId=' + userId,
- method: 'GET',
- })
- }
- export function getTechnicianList(data) {
- return req.request({
- url:'/system/dept/getTechnicianList',
- method: 'GET',
- data: data
- })
- }
|