This commit is contained in:
zmr900709
2020-07-09 16:35:23 +08:00
parent 3d8cfd23d4
commit 10bbccc2bd
7 changed files with 139 additions and 37 deletions

View File

@@ -222,6 +222,30 @@ export default {
getOrderInfo({ order_id }) {
return vm.$u.post('Goods/orderInfo', { order_id });
},
// 信息模块
messageIndex({ }) {
return vm.$u.post('Message/messageIndex', { });
},
// 公告咨询列表
informationList({ }) {
return vm.$u.post('Message/informationList', { });
},
// 关注列表
snsfriendList({ }) {
return vm.$u.post('message/snsfriendList', { });
},
// 公告消息列表
informationInfo({ }) {
return vm.$u.post('message/informationInfo', { });
},
// 活动消息列表
messageactivityList({ }) {
return vm.$u.post('message/messageactivityList', { });
},
// 全部已读接口
delMessage({ type }) {
return vm.$u.post('message/delMessage', { type });
},
}
}
}