mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-21 14:46:44 +08:00
'产说会新增'
This commit is contained in:
38
src/api/ebiz/productionSay/productionSay.js
Normal file
38
src/api/ebiz/productionSay/productionSay.js
Normal file
@@ -0,0 +1,38 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// // 获取商品商城列表
|
||||
export function getShopList(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/shop/getShopList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询分享轨迹(转发记录)
|
||||
export function getShareList(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/shop/getShareList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 分享轨迹保存
|
||||
export function saveShareTrack(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/shop/saveShareTrack', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取账号密码以用于回显
|
||||
export function getPassword(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/shop/getPassword', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user