|
@@ -34,7 +34,7 @@
|
|
|
:pagination="false"
|
|
|
bordered>
|
|
|
<template slot="currency" slot-scope="text, record">
|
|
|
- <productCodeList ref="productCodeList" mode="multiple" @change="e => productCodeChange(e, record)" />
|
|
|
+ <productCodeList ref="productCodeList" @change="e => productCodeChange(e, record)" />
|
|
|
</template>
|
|
|
</a-table>
|
|
|
</a-form-model-item>
|
|
@@ -148,7 +148,7 @@ export default {
|
|
|
row.commonSn = []
|
|
|
if (val.length > 0) {
|
|
|
val.map(item => {
|
|
|
- row.commonSn.push({ code: item.row && item.row.code ? item.row.code : undefined, productSn: item.key || undefined })
|
|
|
+ row.commonSn.push(item.key)
|
|
|
})
|
|
|
}
|
|
|
},
|