/order/order/detail/{id}
//原
// getPurchaseDetail: (data) => request('/order/order/detail', 'GET', data)
// -- 飘点符号不一致
//现采购详情
getPurchaseDetail: (data) => request(`/order/order/detail/${data}`, 'GET', data),
// 请求
api.getPurchaseDetail(that.data.purchaseId).then((res) => {});