@@ -76,14 +76,18 @@ const goodspush = () => { | |||||
}, | }, | ||||
{ | { | ||||
title: '下发数据', | |||||
dataIndex: 'type', | |||||
title: '下发状态', | |||||
dataIndex: 'status', | |||||
ellipsis: true, | ellipsis: true, | ||||
valueEnum: { | valueEnum: { | ||||
2: { | |||||
text: '物料', | |||||
0: { | |||||
text: '成功', | |||||
status: 'Success', | |||||
}, | }, | ||||
1: { | |||||
text: '失败', | |||||
status: 'Processing', | |||||
}, | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -1,4 +1,5 @@ | |||||
import { request } from 'umi'; | import { request } from 'umi'; | ||||
import { getDataBaseUrl } from '@/global_data'; | |||||
export async function GetDevicePushRecodePage(data) { | export async function GetDevicePushRecodePage(data) { | ||||
return request(`/saasstore/api/devicepushrecode/page`, { | return request(`/saasstore/api/devicepushrecode/page`, { | ||||
method: 'POST', | method: 'POST', | ||||
@@ -24,13 +25,13 @@ export async function GetDevicePushRecodePage(data) { | |||||
}); | }); | ||||
} | } | ||||
export async function GetDeviceList() { | export async function GetDeviceList() { | ||||
return request(`/saasbase/api/device/list`, { | |||||
return request(getDataBaseUrl()+`/api/device/list`, { | |||||
method: 'GET', | method: 'GET', | ||||
}); | }); | ||||
} | } | ||||
export async function GetBatchingPage(data) { | export async function GetBatchingPage(data) { | ||||
return request(`/saasbase/api/batching/getpage`, { | |||||
return request(getDataBaseUrl()+`/api/batching/getpage`, { | |||||
method: 'Post', | method: 'Post', | ||||
data: data, | data: data, | ||||
// params: { ...params }, | // params: { ...params }, | ||||
@@ -76,14 +76,18 @@ const goodspush = () => { | |||||
}, | }, | ||||
{ | { | ||||
title: '下发数据', | |||||
dataIndex: 'type', | |||||
title: '下发状态', | |||||
dataIndex: 'status', | |||||
ellipsis: true, | ellipsis: true, | ||||
valueEnum: { | valueEnum: { | ||||
1: { | |||||
text: '商品', | |||||
0: { | |||||
text: '成功', | |||||
status: 'Success', | |||||
}, | }, | ||||
1: { | |||||
text: '失败', | |||||
status: 'Processing', | |||||
}, | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -1,4 +1,5 @@ | |||||
import { request } from 'umi'; | import { request } from 'umi'; | ||||
import { getDataBaseUrl } from '@/global_data'; | |||||
export async function GetDevicePushRecodePage(data) { | export async function GetDevicePushRecodePage(data) { | ||||
return request(`/saasstore/api/devicepushrecode/page`, { | return request(`/saasstore/api/devicepushrecode/page`, { | ||||
method: 'POST', | method: 'POST', | ||||
@@ -24,12 +25,12 @@ export async function GetDevicePushRecodePage(data) { | |||||
}); | }); | ||||
} | } | ||||
export async function GetDeviceList() { | export async function GetDeviceList() { | ||||
return request(`/saasbase/api/device/list`, { | |||||
return request(getDataBaseUrl()+`/api/device/list`, { | |||||
method: 'GET', | method: 'GET', | ||||
}); | }); | ||||
} | } | ||||
export async function GetGoodsTypeTree(params) { | export async function GetGoodsTypeTree(params) { | ||||
return request('/saasbase/api/goodstype/tree', { | |||||
return request(getDataBaseUrl()+'/api/goodstype/tree', { | |||||
method: 'GET', | method: 'GET', | ||||
data: { | data: { | ||||
...params, | ...params, | ||||
@@ -37,7 +38,7 @@ export async function GetDevicePushRecodePage(data) { | |||||
}); | }); | ||||
} | } | ||||
export async function GetGoodsPage(data) { | export async function GetGoodsPage(data) { | ||||
return request(`/saasbase/api/goods/page`, { | |||||
return request(getDataBaseUrl()+`/api/goods/page`, { | |||||
method: 'Post', | method: 'Post', | ||||
data: data, | data: data, | ||||
// params: { ...params }, | // params: { ...params }, | ||||
@@ -19,10 +19,13 @@ const PushFrom = (props) => { | |||||
console.log(props.values) | console.log(props.values) | ||||
GetDeviceList().then((r)=>{ | GetDeviceList().then((r)=>{ | ||||
setDeviceInfo(r.data) | setDeviceInfo(r.data) | ||||
if(r.data.length>0){ | |||||
var data=r.data.map(x=>{ | var data=r.data.map(x=>{ | ||||
return {value:x.id,label:x.name} | |||||
return {value:x.id,label:x.name} | |||||
}) | }) | ||||
setdeviceData(data) | setdeviceData(data) | ||||
} | |||||
}) | }) | ||||
GetGoodsTypeTree().then((r) => { | GetGoodsTypeTree().then((r) => { | ||||
setTreeData(r.data); | setTreeData(r.data); | ||||
@@ -76,13 +76,18 @@ const goodspush = () => { | |||||
}, | }, | ||||
{ | { | ||||
title: '下发数据', | |||||
dataIndex: 'type', | |||||
title: '下发状态', | |||||
dataIndex: 'status', | |||||
ellipsis: true, | ellipsis: true, | ||||
valueEnum: { | valueEnum: { | ||||
4: { | |||||
text: '工艺', | |||||
0: { | |||||
text: '成功', | |||||
status: 'Success', | |||||
}, | }, | ||||
1: { | |||||
text: '失败', | |||||
status: 'Processing', | |||||
}, | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -1,4 +1,5 @@ | |||||
import { request } from 'umi'; | import { request } from 'umi'; | ||||
import { getDataBaseUrl } from '@/global_data'; | |||||
export async function GetDevicePushRecodePage(data) { | export async function GetDevicePushRecodePage(data) { | ||||
return request(`/saasstore/api/devicepushrecode/page`, { | return request(`/saasstore/api/devicepushrecode/page`, { | ||||
method: 'POST', | method: 'POST', | ||||
@@ -24,12 +25,12 @@ export async function GetDevicePushRecodePage(data) { | |||||
}); | }); | ||||
} | } | ||||
export async function GetDeviceList() { | export async function GetDeviceList() { | ||||
return request(`/saasbase/api/device/list`, { | |||||
return request(getDataBaseUrl()+`/api/device/list`, { | |||||
method: 'GET', | method: 'GET', | ||||
}); | }); | ||||
} | } | ||||
export async function GetGoodsTypeTree(params) { | export async function GetGoodsTypeTree(params) { | ||||
return request('/saasbase/api/goodstype/tree', { | |||||
return request(getDataBaseUrl()+'/api/goodstype/tree', { | |||||
method: 'GET', | method: 'GET', | ||||
data: { | data: { | ||||
...params, | ...params, | ||||
@@ -37,7 +38,7 @@ export async function GetDevicePushRecodePage(data) { | |||||
}); | }); | ||||
} | } | ||||
export async function GetGoodsPage(data) { | export async function GetGoodsPage(data) { | ||||
return request(`/saasbase/api/goods/page`, { | |||||
return request(getDataBaseUrl()+`/api/goods/page`, { | |||||
method: 'Post', | method: 'Post', | ||||
data: data, | data: data, | ||||
// params: { ...params }, | // params: { ...params }, | ||||