10.10综合交易所原始源码-管理后台
1
admin
2026-01-06 089bf5d2378b3c4a61d795b2a92bede2c193b771
src/api/emoticon.js
New file
@@ -0,0 +1,26 @@
import { post, get, upload } from '@/utils/request'
// 查询用户表情包服务接口
export const ServeFindUserEmoticon = () => {
  return get('/api/v1/emoticon/list')
}
// 查询系统表情包服务接口
export const ServeFindSysEmoticon = () => {
  return get('/api/v1/emoticon/system/list')
}
// 设置用户表情包服务接口
export const ServeSetUserEmoticon = data => {
  return post('/api/v1/emoticon/system/install', data)
}
// 移除收藏表情包服务接口
export const ServeDelCollectEmoticon = data => {
  return post('/api/v1/emoticon/del-collect-emoticon', data)
}
// 上传表情包服务接口
export const ServeUploadEmoticon = data => {
  return upload('/api/v1/emoticon/customize/create', data)
}