| 1234567891011121314151617181920 |
- 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",
- }
- })
- }
- }
|