jitairibaobiao.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  1. import service from '@/utils/request'
  2. export const getTab = (data) => {
  3. return service({
  4. url: '/mes_server/packaging_process_output/getTab',
  5. method: 'get',
  6. data
  7. })
  8. }
  9. export const getList = (params) => {
  10. return service({
  11. url: '/mes_server/packaging_process_output/getList',
  12. method: 'get',
  13. params
  14. })
  15. }
  16. export const getInspectCount = (data) => {
  17. return service({
  18. url: '/mes_server/inspect/getInspectCount',
  19. method: 'get',
  20. data
  21. })
  22. }
  23. export const getDateList = (params) => {
  24. return service({
  25. url: '/mes_server/inspect/getDateList',
  26. method: 'get',
  27. params
  28. })
  29. }
  30. export const getMachineCount = (data) => {
  31. return service({
  32. url:'/mes_server/inspect/getMachineCount',
  33. method: 'get',
  34. data
  35. })
  36. }
  37. export const getDateMachine = (params) => {
  38. return service({
  39. url:'/mes_server/inspect/getDateMachine',
  40. method: 'get',
  41. params
  42. })
  43. }
  44. //机台生产日报表维护
  45. //新增
  46. export const productionadd = (data) => {
  47. return service({
  48. url:'/mes_server/machine_production_report/add',
  49. method: 'post',
  50. data
  51. })
  52. }
  53. export const getproductionCount = (data) => {
  54. return service({
  55. url:'/mes_server/machine_production_report/getTab',
  56. method: 'get',
  57. data
  58. })
  59. }
  60. //机台生产日报表维护附加
  61. //新增
  62. export const reportadd = (data) => {
  63. return service({
  64. url:'/mes_server/machine_production_report_add/add',
  65. method: 'post',
  66. data
  67. })
  68. }
  69. export const getproductionList = (params) => {
  70. return service({
  71. url:'/mes_server/machine_production_report/getList',
  72. method: 'get',
  73. params
  74. })
  75. }
  76. export const getproductionaddCount = (data) => {
  77. return service({
  78. url:'/mes_server/machine_production_report_add/getTab',
  79. method: 'get',
  80. data
  81. })
  82. }
  83. export const getproductionaddList = (params) => {
  84. return service({
  85. url:'/mes_server/machine_production_report_add/getList',
  86. method: 'get',
  87. params
  88. })
  89. }
  90. export const locate = (params) => {
  91. return service({
  92. url:'/mes_server/packaging_process_output/locate',
  93. method: 'get',
  94. params
  95. })
  96. }
  97. export const getInfo = (params) => {
  98. return service({
  99. url:'/mes_server/packaging_process_output/getInfo',
  100. method: 'get',
  101. params
  102. })
  103. }
  104. export const getGxMc = (params) => {
  105. return service({
  106. url:'/mes_server/packaging_process_output/getGxMc',
  107. method: 'get',
  108. params
  109. })
  110. }
  111. export const edit = (params) => {
  112. return service({
  113. url:'/mes_server/packaging_process_output/edit',
  114. method: 'post',
  115. params
  116. })
  117. }
  118. export const del = (params) => {
  119. return service({
  120. url:'/mes_server/packaging_process_output/del',
  121. method: 'post',
  122. params
  123. })
  124. }
  125. export const machineLocate = (params) => {
  126. return service({
  127. url:'/mes_server/inspect/machineLocate',
  128. method: 'get',
  129. params
  130. })
  131. }
  132. export const MachineInfo = (params) => {
  133. return service({
  134. url:'/mes_server/inspect/getMachineInfo',
  135. method: 'get',
  136. params
  137. })
  138. }
  139. export const getYg = (params) => {
  140. return service({
  141. url:'/mes_server/packaging_count_document/getYg',
  142. method: 'get',
  143. params
  144. })
  145. }
  146. export const getMachineGxMc = (params) => {
  147. return service({
  148. url:'/mes_server/inspect/getMachineGxMc',
  149. method: 'get',
  150. params
  151. })
  152. }
  153. export const getMachineDedh = (params) => {
  154. return service({
  155. url:'/mes_server/inspect/getMachineDedh',
  156. method: 'get',
  157. params
  158. })
  159. }
  160. export const getMachineScrapFactor = (params) => {
  161. return service({
  162. url:'/mes_server/inspect/getMachineScrapFactor',
  163. method: 'get',
  164. params
  165. })
  166. }
  167. export const machineAdd = (data) => {
  168. return service({
  169. url:'/mes_server/inspect/machineAdd',
  170. method: 'post',
  171. data
  172. })
  173. }
  174. export const packagingAdd = (data) => {
  175. return service({
  176. url:'/mes_server/packaging_process_output/add',
  177. method: 'post',
  178. data
  179. })
  180. }
  181. export const getJtbh = (params) => {
  182. return service({
  183. url:'/mes_server/inspect/getJtbh',
  184. method: 'get',
  185. params
  186. })
  187. }
  188. export const machineEdit = (params) => {
  189. return service({
  190. url:'/mes_server/inspect/machineEdit',
  191. method: 'post',
  192. params
  193. })
  194. }
  195. export const machineDel = (params) => {
  196. return service({
  197. url:'/mes_server/inspect/machineDel',
  198. method: 'post',
  199. params
  200. })
  201. }
  202. //手工检验
  203. //定位
  204. export const shougonglocate= (params) => {
  205. return service({
  206. url:'/mes_server/inspect/locate',
  207. method: 'get',
  208. params
  209. })
  210. }
  211. //获取详细信息
  212. export const shougonggetInfo= (params) => {
  213. return service({
  214. url:'/mes_server/inspect/getInfo',
  215. method: 'get',
  216. params
  217. })
  218. }
  219. //查询印件工序及产品名称
  220. export const shougonggetGxMc= (params) => {
  221. return service({
  222. url:'/mes_server/inspect/getGxMc',
  223. method: 'get',
  224. params
  225. })
  226. }
  227. //获取定额代号
  228. export const shougonggetDedh= (params) => {
  229. return service({
  230. url:'/mes_server/inspect/getDedh',
  231. method: 'get',
  232. params
  233. })
  234. }
  235. //查询废品系数
  236. export const shougonggetScrapFactor= (params) => {
  237. return service({
  238. url:'/mes_server/inspect/getScrapFactor',
  239. method: 'get',
  240. params
  241. })
  242. }
  243. //修改
  244. export const shougongedit= (params) => {
  245. return service({
  246. url:'/mes_server/inspect/edit',
  247. method: 'post',
  248. params
  249. })
  250. }
  251. //删除
  252. export const shougongdel= (params) => {
  253. return service({
  254. url:'/mes_server/inspect/del',
  255. method: 'post',
  256. params
  257. })
  258. }
  259. //按工单显示
  260. export const getInspectCountByGdbh= (params) => {
  261. return service({
  262. url:'/mes_server/inspect/getInspectCountByGdbh',
  263. method: 'get',
  264. params
  265. })
  266. }
  267. //新增
  268. export const inspectadd= (data) => {
  269. return service({
  270. url:'/mes_server/inspect/add',
  271. method: 'post',
  272. data
  273. })
  274. }
  275. //机台生产日报表维护附加
  276. //获取详细信息
  277. export const addgetInfo= (params) => {
  278. return service({
  279. url:'/mes_server/machine_production_report_add/getInfo',
  280. method: 'get',
  281. params
  282. })
  283. }
  284. //获取机台
  285. export const addgetJtbh= (params) => {
  286. return service({
  287. url:'/mes_server/machine_production_report_add/getJtbh',
  288. method: 'get',
  289. params
  290. })
  291. }
  292. //修改
  293. export const addedit= (params) => {
  294. return service({
  295. url:'/mes_server/machine_production_report_add/edit',
  296. method: 'post',
  297. params
  298. })
  299. }
  300. //删除
  301. export const adddel= (params) => {
  302. return service({
  303. url:'/mes_server/machine_production_report_add/del',
  304. method: 'post',
  305. params
  306. })
  307. }
  308. //按工单显示
  309. export const getMachineCountByGdbh= (params) => {
  310. return service({
  311. url:'/mes_server/inspect/getMachineCountByGdbh',
  312. method: 'get',
  313. params
  314. })
  315. }
  316. //机台日报表维护
  317. //定位
  318. export const productionlocate= (params) => {
  319. return service({
  320. url:'/mes_server/machine_production_report/locate',
  321. method: 'get',
  322. params
  323. })
  324. }
  325. //按工单显示
  326. export const productionByGdbh= (params) => {
  327. return service({
  328. url:'/mes_server/machine_production_report/getTabByGdbh',
  329. method: 'get',
  330. params
  331. })
  332. }
  333. //获取详细信息
  334. export const productionInfo= (params) => {
  335. return service({
  336. url:'/mes_server/machine_production_report/getInfo',
  337. method: 'get',
  338. params
  339. })
  340. }
  341. //获取工单名称
  342. export const productionGdmc= (params) => {
  343. return service({
  344. url:'/mes_server/machine_production_report/getGdmc',
  345. method: 'get',
  346. params
  347. })
  348. }
  349. //获取印件名称
  350. export const productionYjmc= (params) => {
  351. return service({
  352. url:'/mes_server/machine_production_report/getYjmc',
  353. method: 'get',
  354. params
  355. })
  356. }
  357. //获取工序信息
  358. export const productionGx= (params) => {
  359. return service({
  360. url:'/mes_server/machine_production_report/getGx',
  361. method: 'get',
  362. params
  363. })
  364. }
  365. //获取机台
  366. export const reportGetJtbh= (params) => {
  367. return service({
  368. url:'/mes_server/machine_production_report/getJtbh',
  369. method: 'get',
  370. params
  371. })
  372. }
  373. //获取定额代号
  374. export const productionDedh= (params) => {
  375. return service({
  376. url:'/mes_server/machine_production_report/getDedh',
  377. method: 'get',
  378. params
  379. })
  380. }
  381. //定额代号查询比例
  382. export const dedhGetRate= (params) => {
  383. return service({
  384. url:'/mes_server/machine_production_report/dedhGetRate',
  385. method: 'get',
  386. params
  387. })
  388. }
  389. //修改
  390. export const productionedit= (params) => {
  391. return service({
  392. url:'/mes_server/machine_production_report/edit',
  393. method: 'post',
  394. params
  395. })
  396. }
  397. //删除
  398. export const productiondel= (params) => {
  399. return service({
  400. url:'/mes_server/machine_production_report/del',
  401. method: 'post',
  402. params
  403. })
  404. }
  405. //员工日工资
  406. //员工日工资查询侧边栏
  407. export const dailygetTab= () => {
  408. return service({
  409. url:'/mes_server/employee_daily_salary/getTab',
  410. method: 'get',
  411. })
  412. }
  413. //员工日工资查询上侧列表
  414. export const dailygetList= (params) => {
  415. return service({
  416. url:'/mes_server/employee_daily_salary/getList',
  417. method: 'get',
  418. params
  419. })
  420. }
  421. //员工日工资查询下侧列表
  422. export const dailygetAllList= (params) => {
  423. return service({
  424. url:'/mes_server/employee_daily_salary/getAllList',
  425. method: 'get',
  426. params
  427. })
  428. }
  429. //每日工资统计
  430. export const statistics= (params) => {
  431. return service({
  432. url:'/mes_server/employee_daily_salary/statistics',
  433. method: 'get',
  434. params
  435. })
  436. }
  437. //月度计时工资调整
  438. export const wageAdjustment= (params) => {
  439. return service({
  440. url:'/mes_server/employee_daily_salary/wageAdjustment',
  441. method: 'get',
  442. params
  443. })
  444. }
  445. //员工计件明细
  446. export const getPieceDetail= (params) => {
  447. return service({
  448. url:'/mes_server/employee_daily_salary/getPieceDetail',
  449. method: 'get',
  450. params
  451. })
  452. }
  453. //员工日工资查询详情
  454. export const dailygetDetail= (params) => {
  455. return service({
  456. url:'/mes_server/employee_daily_salary/getDetail',
  457. method: 'get',
  458. params
  459. })
  460. }
  461. //员工定位
  462. export const dailysearch= (params) => {
  463. return service({
  464. url:'/mes_server/employee_daily_salary/search',
  465. method: 'get',
  466. params
  467. })
  468. }
  469. //成品入仓
  470. //侧边栏
  471. export const finishedTab= (params) => {
  472. return service({
  473. url:'/mes_server/finished_product_warehousing/getTab',
  474. method: 'get',
  475. params
  476. })
  477. }
  478. //侧边栏 根据工单
  479. export const finishedTabByGdbh= (params) => {
  480. return service({
  481. url:'/mes_server/finished_product_warehousing/getTabByGdbh',
  482. method: 'get',
  483. params
  484. })
  485. }
  486. //列表
  487. export const finishedList= (params) => {
  488. return service({
  489. url:'/mes_server/finished_product_warehousing/getList',
  490. method: 'get',
  491. params
  492. })
  493. }
  494. //定位
  495. export const finishedlocate= (params) => {
  496. return service({
  497. url:'/mes_server/finished_product_warehousing/locate',
  498. method: 'get',
  499. params
  500. })
  501. }
  502. //获取详细信息
  503. export const finishedInfo= (params) => {
  504. return service({
  505. url:'/mes_server/finished_product_warehousing/getInfo',
  506. method: 'get',
  507. params
  508. })
  509. }
  510. //获取仓库信息
  511. export const finishedgetCk= (params) => {
  512. return service({
  513. url:'/mes_server/finished_product_warehousing/getCk',
  514. method: 'get',
  515. params
  516. })
  517. }
  518. //新增
  519. export const finishedadd= (data) => {
  520. return service({
  521. url:'/mes_server/finished_product_warehousing/add',
  522. method: 'post',
  523. data
  524. })
  525. }
  526. //各日统计
  527. export const getDayList= (params) => {
  528. return service({
  529. url:'/mes_server/finished_product_warehousing/getDayList',
  530. method: 'get',
  531. params
  532. })
  533. }
  534. //入仓末板数据统计
  535. export const mbList= (params) => {
  536. return service({
  537. url:'/mes_server/finished_product_warehousing/mbList',
  538. method: 'get',
  539. params
  540. })
  541. }
  542. //获取工单信息
  543. export const finishedgetGd= (params) => {
  544. return service({
  545. url:'/mes_server/finished_product_warehousing/getGd',
  546. method: 'get',
  547. params
  548. })
  549. }
  550. //查询工单数量
  551. export const finishedgetGdsl= (params) => {
  552. return service({
  553. url:'/mes_server/finished_product_warehousing/getGdsl',
  554. method: 'get',
  555. params
  556. })
  557. }
  558. //删除
  559. export const finisheddel= (params) => {
  560. return service({
  561. url:'/mes_server/finished_product_warehousing/del',
  562. method: 'post',
  563. params
  564. })
  565. }
  566. //设备运行跟踪
  567. //左侧菜单
  568. export const facilityTab= (params) => {
  569. return service({
  570. url:'/mes_server/facility/getTab',
  571. method: 'get',
  572. params
  573. })
  574. }
  575. //当日上报产量
  576. export const facilitychanLiang= (params) => {
  577. return service({
  578. url:'/mes_server/facility/chanLiang',
  579. method: 'get',
  580. params
  581. })
  582. }
  583. //当日制程检验记录
  584. export const facilityInspect= (params) => {
  585. return service({
  586. url:'/mes_server/facility/Inspect',
  587. method: 'get',
  588. params
  589. })
  590. }
  591. //设备工作清单
  592. export const facilityWorklist= (params) => {
  593. return service({
  594. url:'/mes_server/facility/EquipmentWorklist',
  595. method: 'get',
  596. params
  597. })
  598. }
  599. //印件、工序、完成数量
  600. export const facilityProcedure= (params) => {
  601. return service({
  602. url:'/mes_server/facility/Procedure',
  603. method: 'get',
  604. params
  605. })
  606. }
  607. //机台印版领用->左侧菜单
  608. export const facilityPrintGetTab= (params) => {
  609. return service({
  610. url:'/mes_server/facility/PrintGetTab',
  611. method: 'get',
  612. params
  613. })
  614. }
  615. //机台印版领用->右侧详情
  616. export const facilityPrintDetail= (params) => {
  617. return service({
  618. url:'/mes_server/facility/PrintDetail',
  619. method: 'get',
  620. params
  621. })
  622. }
  623. //当前生产订单
  624. export const facilityProduction= (params) => {
  625. return service({
  626. url:'/mes_server/facility/Production',
  627. method: 'get',
  628. params
  629. })
  630. }
  631. //管理人员现场巡检记录->展示
  632. export const fieldInspectionRecord= (params) => {
  633. return service({
  634. url:'/mes_server/facility/FieldInspectionRecord',
  635. method: 'get',
  636. params
  637. })
  638. }
  639. //班组人员及分配比例
  640. export const facilityTeam= (params) => {
  641. return service({
  642. url:'/mes_server/facility/Team',
  643. method: 'get',
  644. params
  645. })
  646. }
  647. //当班产量明细
  648. export const facilityDetail= (params) => {
  649. return service({
  650. url:'/mes_server/facility/OutputDetail',
  651. method: 'get',
  652. params
  653. })
  654. }
  655. //检验记录
  656. export const inspectionRecord= (params) => {
  657. return service({
  658. url:'/mes_server/facility/InspectionRecord',
  659. method: 'get',
  660. params
  661. })
  662. }
  663. //班组维护->机台编号下拉框
  664. export const facilityMachineList= (params) => {
  665. return service({
  666. url:'/mes_server/facility/MachineList',
  667. method: 'get',
  668. params
  669. })
  670. }
  671. //设备点检->检验项目
  672. export const facilityInspectionItem= (params) => {
  673. return service({
  674. url:'/mes_server/facility/InspectionItem',
  675. method: 'get',
  676. params
  677. })
  678. }
  679. //设备点检->左侧菜单栏
  680. export const facilitySpotCheckItem= (params) => {
  681. return service({
  682. url:'/mes_server/facility/SpotCheckItem',
  683. method: 'get',
  684. params
  685. })
  686. }
  687. //关联工资核算
  688. //设备点检->左侧菜单栏
  689. export const relatedTab= (params) => {
  690. return service({
  691. url:'/mes_server/related_salary_accounting/getTab',
  692. method: 'get',
  693. params
  694. })
  695. }
  696. //关联工资核算上侧列表
  697. export const relatedList= (params) => {
  698. return service({
  699. url:'/mes_server/related_salary_accounting/getList',
  700. method: 'get',
  701. params
  702. })
  703. }
  704. //定位
  705. export const relatedsearch= (params) => {
  706. return service({
  707. url:'/mes_server/related_salary_accounting/search',
  708. method: 'get',
  709. params
  710. })
  711. }
  712. //关联工资核算下侧列表
  713. export const relatedAllList= (params) => {
  714. return service({
  715. url:'/mes_server/related_salary_accounting/getAllList',
  716. method: 'get',
  717. params
  718. })
  719. }
  720. //关联组员权重查询
  721. export const weightDetail= (params) => {
  722. return service({
  723. url:'/mes_server/related_salary_accounting/weightDetail',
  724. method: 'get',
  725. params
  726. })
  727. }
  728. //关联工资设置
  729. export const setting= (params) => {
  730. return service({
  731. url:'/mes_server/related_salary_accounting/setting',
  732. method: 'get',
  733. params
  734. })
  735. }
  736. //更新关联系数
  737. export const updateNum= (params) => {
  738. return service({
  739. url:'/mes_server/related_salary_accounting/updateNum',
  740. method: 'get',
  741. params
  742. })
  743. }
  744. //批量附加组员定位
  745. export const batchAddSearch= (params) => {
  746. return service({
  747. url:'/mes_server/related_salary_accounting/batchAddSearch',
  748. method: 'get',
  749. params
  750. })
  751. }
  752. //批量附加组员列表
  753. export const batchAddLst= (params) => {
  754. return service({
  755. url:'/mes_server/related_salary_accounting/batchAddLst',
  756. method: 'get',
  757. params
  758. })
  759. }
  760. //关联组员复制列表
  761. export const copyLst= (params) => {
  762. return service({
  763. url:'/mes_server/related_salary_accounting/copyLst',
  764. method: 'get',
  765. params
  766. })
  767. }
  768. //批量附加组员
  769. export const batchAdd= (data) => {
  770. return service({
  771. url:'/mes_server/related_salary_accounting/batchAdd',
  772. method: 'post',
  773. data
  774. })
  775. }
  776. //批量删除组员
  777. export const batchDel= (data) => {
  778. return service({
  779. url:'/mes_server/related_salary_accounting/batchDel',
  780. method: 'post',
  781. data
  782. })
  783. }
  784. //关联组员复制
  785. export const copy= (data) => {
  786. return service({
  787. url:'/mes_server/related_salary_accounting/copy',
  788. method: 'post',
  789. data
  790. })
  791. }
  792. //车间报工
  793. //获取机台生产信息
  794. export const reportProduceInfo= (params) => {
  795. return service({
  796. url:'/mes_server/reporting_work/getProduceInfo',
  797. method: 'get',
  798. params
  799. })
  800. }
  801. //获取员工姓名
  802. export const reportName= (params) => {
  803. return service({
  804. url:'/mes_server/reporting_work/getStaffName',
  805. method: 'get',
  806. params
  807. })
  808. }
  809. //获取报工单其他信息
  810. export const reportInfo= (params) => {
  811. return service({
  812. url:'/mes_server/reporting_work/getMachineReportInfo',
  813. method: 'get',
  814. params
  815. })
  816. }
  817. //获取机台编号
  818. export const reportMachineMac= (params) => {
  819. return service({
  820. url:'/mes_server/reporting_work/getMachineMac',
  821. method: 'get',
  822. params
  823. })
  824. }
  825. //设置工单工序完工
  826. export const setProcessStatus = (data) => {
  827. return service({
  828. url:'/mes_server/reporting_work/setProcessStatus',
  829. method: 'post',
  830. data
  831. })
  832. }
  833. //设置机台状态
  834. export const SetMachineStatus = (params) => {
  835. return service({
  836. url:'/mes_server/reporting_work/setMachineStatus',
  837. method: 'post',
  838. params
  839. })
  840. }
  841. //日产量上报
  842. export const submitDailyProduction = (data) => {
  843. return service({
  844. url:'/mes_server/reporting_work/submitDailyProduction',
  845. method: 'post',
  846. data
  847. })
  848. }
  849. //提交巡查记录
  850. export const submitPatrolRecord = (data) => {
  851. return service({
  852. url:'/mes_server/reporting_work/submitPatrolRecord',
  853. method: 'post',
  854. data
  855. })
  856. }
  857. //设置机台状态
  858. export const setMachineStatus = (data) => {
  859. return service({
  860. url:'/mes_server/reporting_work/setMachineStatus',
  861. method: 'post',
  862. data
  863. })
  864. }
  865. //获取机台编号
  866. export const getMachineMac = (params) => {
  867. return service({
  868. url:'/mes_server/reporting_work/getMachineMac',
  869. method: 'get',
  870. params
  871. })
  872. }
  873. export const InspectionItemAdd = (data) => {
  874. return service({
  875. url:'/mes_server/facility/InspectionItemAdd',
  876. method: 'post',
  877. data
  878. })
  879. }
  880. export const ProcessInspectionRecordsItem = (params) => {
  881. return service({
  882. url:'/mes_server/facility/ProcessInspectionRecordsItem',
  883. method: 'get',
  884. params
  885. })
  886. }