|
@@ -32,7 +32,7 @@
|
|
|
<div style="margin:30px 0">
|
|
|
<h6 class="table-title">辅料</h6>
|
|
|
<a-table
|
|
|
- rowKey="id"
|
|
|
+ rowKey="(item)=>item.id"
|
|
|
:loading="loading"
|
|
|
:columns="ingColumns"
|
|
|
:data-source="ingData"
|
|
@@ -55,7 +55,7 @@
|
|
|
<div>
|
|
|
<h6 class="table-title">发运明细</h6>
|
|
|
<a-table
|
|
|
- rowKey="id"
|
|
|
+ rowKey="(item)=>item.id"
|
|
|
:loading="loading"
|
|
|
:columns="shipColumns"
|
|
|
:data-source="shipData"
|
|
@@ -404,6 +404,7 @@ export default {
|
|
|
created() {},
|
|
|
methods: {
|
|
|
tabsCallback(key) {
|
|
|
+ debugger
|
|
|
this.activeKey = key
|
|
|
// console.log('点击的是', this.activeKey)
|
|
|
if (key == 0) {
|