projects/ssdl-zhp #450

已合併
zhp 2025-11-18 17:02:28 +08:00 將 3 次代碼提交從 projects/ssdl-zhp 合併至 projects/ssdl-test
共有 13 個文件被更改,包括 2120 次插入66 次删除
Showing only changes of commit 33c00785df - Show all commits

查看文件

@@ -2,8 +2,8 @@ import request from '@/utils/request'
export function getLineEdgeLibraryList(data) {
return request({
url: '/wms/line-edge-library/page',
method: 'post',
url: '/wms/line-edge-library/list',
method: 'get',
params: data,
});
}

二進制
src/assets/img/ABNScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 321 B

二進制
src/assets/img/DISScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 244 B

二進制
src/assets/img/EPScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 165 B

二進制
src/assets/img/FPScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 170 B

二進制
src/assets/img/IDLScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 321 B

二進制
src/assets/img/ITScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 261 B

二進制
src/assets/img/LCKScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 305 B

二進制
src/assets/img/OCCScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 259 B

二進制
src/assets/img/RESScale.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  大小: 321 B

Binary file not shown.

Before

Width:  |  Height:  |  大小: 129 KiB

After

Width:  |  Height:  |  大小: 1.9 MiB

查看文件

@@ -9,7 +9,7 @@
grid-template-columns: 367px 1493px;
">
<agvStatus />
<threeDimensionalChart />
<threeDimensionalChart :dataList="dataList" />
</div>
</div>
<div class="top" style="display: flex;gap: 16px;margin-top: 6px;">
@@ -72,6 +72,7 @@ export default {
timer: null,
beilv: 1,
value: 100,
dataList:[]
}
},
@@ -123,13 +124,10 @@ export default {
methods: {
getData(data) {
console.log(data);
getLineEdgeLibraryList({
pageNo: 1,
pageSize:100
}).then((res) => {
getLineEdgeLibraryList().then((res) => {
console.log('res', res);
this.dataList =res.data.list
this.dataList =res.data
})
},
windowWidth(value) {