|
@@ -160,31 +160,31 @@
|
|
|
>
|
|
|
<!-- 起始箱号 -->
|
|
|
<template v-slot:startingBoxNumber="record" >
|
|
|
- <a-input v-model="record.startingBoxNumber" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.startingBoxNumber" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 结束箱号 -->
|
|
|
<template v-slot:endCaseNumber="record" >
|
|
|
- <a-input v-model="record.endCaseNumber" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.endCaseNumber" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 净重/箱 -->
|
|
|
<template v-slot:netWeight="record" >
|
|
|
- <a-input v-model="record.netWeight" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.netWeight" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 毛重/箱 -->
|
|
|
<template v-slot:grossWeight="record" >
|
|
|
- <a-input v-model="record.grossWeight" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.grossWeight" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 外箱长度 -->
|
|
|
<template v-slot:outerBoxLength="record" >
|
|
|
- <a-input v-model="record.outerBoxLength" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.outerBoxLength" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 外箱高度 -->
|
|
|
<template v-slot:outerBoxHeight="record" >
|
|
|
- <a-input v-model="record.outerBoxHeight" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.outerBoxHeight" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<!-- 外箱宽度 -->
|
|
|
<template v-slot:outerBoxWidth="record" >
|
|
|
- <a-input v-model="record.outerBoxWidth" style="border-color: red;"></a-input>
|
|
|
+ <a-input v-model="record.row.outerBoxWidth" style="border-color: red;"></a-input>
|
|
|
</template>
|
|
|
<template v-slot:action="props">
|
|
|
<a @click="copy(props)">复制</a>
|