大屏
@@ -2,8 +2,8 @@ import request from '@/utils/request'
|
|||||||
|
|
||||||
export function getLineEdgeLibraryList(data) {
|
export function getLineEdgeLibraryList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/wms/line-edge-library/page',
|
url: '/wms/line-edge-library/list',
|
||||||
method: 'post',
|
method: 'get',
|
||||||
params: data,
|
params: data,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
src/assets/img/ABNScale.png
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
src/assets/img/DISScale.png
Normal file
|
After Width: | Height: | Size: 244 B |
BIN
src/assets/img/EPScale.png
Normal file
|
After Width: | Height: | Size: 165 B |
BIN
src/assets/img/FPScale.png
Normal file
|
After Width: | Height: | Size: 170 B |
BIN
src/assets/img/IDLScale.png
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
src/assets/img/ITScale.png
Normal file
|
After Width: | Height: | Size: 261 B |
BIN
src/assets/img/LCKScale.png
Normal file
|
After Width: | Height: | Size: 305 B |
BIN
src/assets/img/OCCScale.png
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
src/assets/img/RESScale.png
Normal file
|
After Width: | Height: | Size: 321 B |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 1.9 MiB |
@@ -9,7 +9,7 @@
|
|||||||
grid-template-columns: 367px 1493px;
|
grid-template-columns: 367px 1493px;
|
||||||
">
|
">
|
||||||
<agvStatus />
|
<agvStatus />
|
||||||
<threeDimensionalChart />
|
<threeDimensionalChart :dataList="dataList" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top" style="display: flex;gap: 16px;margin-top: 6px;">
|
<div class="top" style="display: flex;gap: 16px;margin-top: 6px;">
|
||||||
@@ -72,6 +72,7 @@ export default {
|
|||||||
timer: null,
|
timer: null,
|
||||||
beilv: 1,
|
beilv: 1,
|
||||||
value: 100,
|
value: 100,
|
||||||
|
dataList:[]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -123,13 +124,10 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
getData(data) {
|
getData(data) {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
getLineEdgeLibraryList({
|
getLineEdgeLibraryList().then((res) => {
|
||||||
pageNo: 1,
|
|
||||||
pageSize:100
|
|
||||||
}).then((res) => {
|
|
||||||
console.log('res', res);
|
console.log('res', res);
|
||||||
|
|
||||||
this.dataList =res.data.list
|
this.dataList =res.data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
windowWidth(value) {
|
windowWidth(value) {
|
||||||
|
|||||||