| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- const { post } = require('./request')
- module.exports = {
- checkSelectImages(data){
- return post({
- url: '/check_select_images',
- data: data
- })
- },
- segmentImages(data){
- return post({
- url: '/segment_images',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- //ÈĘ̈ͼ
- modelFormSegment(data){
- return post({
- url: '/model_form_segment',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- // ²é½ø¶È
- searchBacthProgress(data){
- return post({
- url: '/search_bacth_progress',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- }
|