1
2
3
4
5
6
7
8
9
10
11
12
13
| import request from '@/utils/request'
|
| export function fetchList (data) {
| return request.post('/business/douyinVerify/page', data)
| }
|
| export function poiList () {
| return request.post('/business/douyinVerify/poiList')
| }
|
| export function cancel (data) {
| return request.post('/business/douyinVerify/cancel', data)
| }
|
|