提交 eec57703 编写于 作者: Yuanzhao.dai's avatar Yuanzhao.dai

fixed

上级 4c3d052f
......@@ -76,9 +76,7 @@ export default {
});
},
getPlanDetail(context, payload) {
getPlanDetail({}, {
urlSuffix:payload
}).then(({data}) => {
getPlanDetail(payload).then(({data}) => {
context.commit('GET_PLAN_DETAIL', data);
});
},
......
......@@ -49,12 +49,11 @@ export const getPlanList = (params) => {
description: '获取计划列表',
})
};
export const getPlanDetail = (params) => {
export const getPlanDetail = (planId) => {
return fetch({
headers,
url: getFollowUpSC(`/followup/plans/detail`),
url: getFollowUpSC(`/followup/plans/${planId}`),
method: 'get',
params: params,
description: '获取计划详情',
})
};
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册