抓取生产工单,抓取发料异常

This commit is contained in:
hjq
2026-06-11 19:38:16 +08:00
parent a160d5d48f
commit 94c81cdc4f
10 changed files with 160 additions and 28 deletions

View File

@@ -122,7 +122,8 @@
<div class="header">
<h2>🕸️ ERP 动态 BOM 成本核算雷达图</h2>
<div>
<el-button type="primary" @click="goToCompare" plain>切换至 BOM 期间成本对比</el-button>
<el-button type="info" plain icon="el-icon-back" @click="goBack" size="small">返回主控台</el-button>
<el-button type="primary" @click="goToCompare" plain size="small">切换至 BOM 期间成本对比</el-button>
<el-button type="text" @click="goToReceipts">返回收货明细</el-button>
</div>
</div>
@@ -233,9 +234,12 @@
});
},
methods: {
goToReceipts() {
goBack() {
window.location.href = '/';
},
goToReceipts() {
window.location.href = '/receipts';
},
goToCompare() {
window.location.href = '/compare';
},