yuyu
2023-08-02 192a6c1536d3f9017343634c17dc300c6fd98ff6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 技术管理-标准Bom
const standard = {
  selectTreeByMaterial: "material/selectTreeByMaterial", //查询物料的树
  selectRawInspectsList: "rawInspect/selectRawInspectsList",//查询原材料检验单列表
  selectProductByMaterial: "product/selectTreeByMaterial",//根据物料查询项目表格
  selectTechnologyByMaterial: "technology/select"
}
 
 
const url = {
  "enter": "user/enter", //登录
  ...standard
}
 
 
export default function(Vue) {
  //添加全局API
  Vue.prototype.$api = {
    url
  }
}