group order

This commit is contained in:
2020-07-20 17:17:41 +08:00
parent 50085a341f
commit a6e1241238
11 changed files with 494 additions and 55 deletions

View File

@@ -205,10 +205,18 @@ export default {
getPinTuanDetails({ pintuan_id }) {
return vm.$u.post('Specialci/pintuanInfo', { pintuan_id: pintuan_id });
},
// pintuanPush
// 推荐拼团
getPinTuanPush() {
return vm.$u.post('Specialci/pintuanPush');
},
// 开团/参团
withImmediate({ pintuan_id, pintuangroup_headid, pintuangroup_id}) {
return vm.$u.post('Specialci/withImmediate', {
pintuan_id: pintuan_id,
pintuangroup_headid: pintuangroup_headid,
pintuangroup_id: pintuangroup_id,
});
},
// 商品分类(拼团分类)
getGoodsClass() {
return vm.$u.post('Specialci/goodsClass');

View File

@@ -308,7 +308,6 @@ export default {
delMessage({ type }) {
return vm.$u.post('/message/readMessage', { type });
},
// 已读消息
refreshToken({ }) {
return vm.$u.post('/Auth/refreshToken', { });
@@ -321,6 +320,12 @@ export default {
articleDelShield({ id }) {
return vm.$u.post('article/articleDelShield', { member_id: id });
},
// 配置
getConfigInfo({ code }) {
return vm.$u.post('Document/getConfigInfo', {
code: code,
});
},
}
}
}