1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import request from '@/utils/request'
|
| export function getDouyinConfigDTO () {
| return request.post('/system/dictData/getDouyinConfigDTO')
| }
|
| export function updateDouyinAppConfigDTO (data) {
| return request.post('/system/dictData/updateDouyinAppConfigDTO', data, {
| trim: true
| })
| }
|
| export function updateDouyinPoiIdDTO (poiId) {
| return request.post(`/system/dictData/updateDouyinPoiIdDTO?poiId=${poiId}`)
| }
|
|