|
@@ -164,11 +164,11 @@ export function saveRefundRemark(params) {
|
|
|
}
|
|
|
|
|
|
// 变更维权处理状态
|
|
|
-export function changeExamineStatus(params) {
|
|
|
+export function changeExamineStatus(data) {
|
|
|
return request({
|
|
|
url: '/jx/goods/goods/refundV2',
|
|
|
method: 'post',
|
|
|
- params
|
|
|
+ data
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -277,4 +277,59 @@ export function changeShow(params) {
|
|
|
method: 'post',
|
|
|
params
|
|
|
})
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+// 获取线下订单列表
|
|
|
+export function getOfflineOrderList(data) {
|
|
|
+ return request({
|
|
|
+ url: `/order/offline/list?moduleId=${data.moduleId}`,
|
|
|
+ method: 'post',
|
|
|
+ data
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 导出线下订单列表
|
|
|
+export function offlineOrderListExport(data, name) {
|
|
|
+ return postBlob({
|
|
|
+ url: '/order/offline/list/export',
|
|
|
+ data,
|
|
|
+ name
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 线下订单保存
|
|
|
+export function offlineOrderSave(params) {
|
|
|
+ return request({
|
|
|
+ url: '/order/offline/save',
|
|
|
+ method: 'post',
|
|
|
+ data: params
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 线下订单详情
|
|
|
+export function getOfflineOrderDetail(params) {
|
|
|
+ return request({
|
|
|
+ url: '/order/offline/detail',
|
|
|
+ method: 'post',
|
|
|
+ params
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 线下订单审批
|
|
|
+export function offlineOrderExamine(params) {
|
|
|
+ return request({
|
|
|
+ url: '/order/offline/examine',
|
|
|
+ method: 'post',
|
|
|
+ params
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 工单类型列表
|
|
|
+export function getOrderTypeList(data) {
|
|
|
+ return request({
|
|
|
+ url: `/order/smalltype/list`,
|
|
|
+ method: 'post',
|
|
|
+ data
|
|
|
+ })
|
|
|
}
|