update
This commit is contained in:
@@ -84,65 +84,65 @@ const admin = {
|
|||||||
},
|
},
|
||||||
getStatusList: async () => {
|
getStatusList: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/getStatusList',
|
url: '/admin/taskChildren/getStatusList',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getSubCheckStatusList: async () => {
|
getSubCheckStatusList: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/getCheckStatusList',
|
url: '/admin/taskChildren/getCheckStatusList',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getTaskChildrenList: async (data) => {
|
getTaskChildrenList: async (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/getTaskChildrenList',
|
url: '/admin/taskChildren/getTaskChildrenList',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getTaskChildrenInfo: async (id) => {
|
getTaskChildrenInfo: async (id) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/getTaskChildrenInfo',
|
url: '/admin/taskChildren/getTaskChildrenInfo',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: {id}
|
data: {id}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
passTaskChildren: async (id) => {
|
passTaskChildren: async (id) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/passTaskChildren',
|
url: '/admin/taskChildren/passTaskChildren',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: {id}
|
data: {id}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
refuseTaskChildren: async (data) => {
|
refuseTaskChildren: async (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/taskchildren/refuseTaskChildren',
|
url: '/admin/taskChildren/refuseTaskChildren',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getStatusAttr: async () => {
|
getStatusAttr: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/exchangelog/getStatusAttr',
|
url: '/admin/exchangeLog/getStatusAttr',
|
||||||
method: Method.POST
|
method: Method.POST
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getPattenAttr: async () => {
|
getPattenAttr: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/exchangelog/getPattenAttr',
|
url: '/admin/exchangeLog/getPattenAttr',
|
||||||
method: Method.POST
|
method: Method.POST
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getTypeAttr: async () => {
|
getTypeAttr: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/exchangelog/getTypeAttr',
|
url: '/admin/exchangeLog/getTypeAttr',
|
||||||
method: Method.POST
|
method: Method.POST
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getExchangeLog: async (data) => {
|
getExchangeLog: async (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/exchangelog/getExchangeLog',
|
url: '/admin/exchangeLog/getExchangeLog',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
@@ -156,38 +156,38 @@ const admin = {
|
|||||||
},
|
},
|
||||||
getBusinessmoneylogPlatform: async () => {
|
getBusinessmoneylogPlatform: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/businessmoneylog/getPlatform',
|
url: '/admin/businessMoneyLog/getPlatform',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getBusinessmoneylogPurpose: async () => {
|
getBusinessmoneylogPurpose: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/businessmoneylog/getPurpose',
|
url: '/admin/businessMoneyLog/getPurpose',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getBusinessmoneylogList: async (data) => {
|
getBusinessmoneylogList: async (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/businessmoneylog/getList',
|
url: '/admin/businessMoneyLog/getList',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getUsermoneylogPlatform: async () => {
|
getUsermoneylogPlatform: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/usermoneylog/getPlatform',
|
url: '/admin/userMoneyLog/getPlatform',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getUsermoneylogPurpose: async () => {
|
getUsermoneylogPurpose: async () => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/usermoneylog/getPurpose',
|
url: '/admin/userMoneyLog/getPurpose',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getUsermoneylogList: async (data) => {
|
getUsermoneylogList: async (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin/usermoneylog/getList',
|
url: '/admin/userMoneyLog/getList',
|
||||||
method: Method.POST,
|
method: Method.POST,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user