【前端】印包客app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
547 B

import http from '../utils/http/index.js'
/**
* 保存工厂信息
*
*/
export function saveFactoryInfo(data = {}) {
return http.post({
url: '/yyt-uec/save/my/factory/information',
data
})
}
/**
* 保存个人角色信息
*
*/
export function savePersonalInfo(data = {}) {
return http.post({
url: '/yyt-uec/complete/my/personal/info',
data
})
}
/**
* 查询工厂信息
*
*/
export function getFactoryInfo(data = {}) {
return http.get({
url: `/yyt-uec/get/factory/information/${data.id}`,
data
})
}