代码推送

This commit is contained in:
2026-01-16 10:32:27 +08:00
parent 8da877de40
commit 408e40b206
570 changed files with 172605 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
import request from './http'
//请求订阅
export function getSubscript(data) {
return request({
url: '/marketall/msgSub/subscript',
method: 'post',
data
})
}
//订阅列表
export function getSubscriptList(data) {
return request({
url: '/marketall/msgSub/list',
method: 'post',
data
})
}
//退订
export function getSubscriptDelete(data) {
return request({
url: '/marketall/msgSub/cancel',
method: 'post',
data
})
}