|  | @@ -168,6 +168,42 @@
 | 
	
		
			
				|  |  |                :toolbarConfig="toolbarConfig"
 | 
	
		
			
				|  |  |                @valueChange="handleValueChange"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  | +            <!-- 起始箱号 -->
 | 
	
		
			
				|  |  | +            <template v-slot:startingBoxNumber="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.startingBoxNumber"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 结束箱号 -->
 | 
	
		
			
				|  |  | +           <template v-slot:endCaseNumber="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.endCaseNumber"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 净重/箱 -->
 | 
	
		
			
				|  |  | +           <template v-slot:netWeight="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.netWeight"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 毛重/箱 -->
 | 
	
		
			
				|  |  | +           <template v-slot:grossWeight="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.grossWeight"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 外箱长度 -->
 | 
	
		
			
				|  |  | +           <template v-slot:outerBoxLength="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.outerBoxLength"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 外箱高度 -->
 | 
	
		
			
				|  |  | +           <template v-slot:outerBoxHeight="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.outerBoxHeight"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 外箱宽度 -->
 | 
	
		
			
				|  |  | +           <template v-slot:outerBoxWidth="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.outerBoxWidth"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 箱数 -->
 | 
	
		
			
				|  |  | +           <template v-slot:boxNumber="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.boxNumber"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  | +           <!-- 净净重 -->
 | 
	
		
			
				|  |  | +           <template v-slot:netWeightToo="record" >
 | 
	
		
			
				|  |  | +              <a-input  v-model="record.row.netWeightToo"  style="border-color: red;"></a-input>
 | 
	
		
			
				|  |  | +           </template>
 | 
	
		
			
				|  |  |              <template v-slot:action="props">
 | 
	
		
			
				|  |  |                <a @click="copy(props)">复制</a>
 | 
	
		
			
				|  |  |                <a-divider type="vertical"/>
 | 
	
	
		
			
				|  | @@ -289,7 +325,8 @@ export default {
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '启始箱号',
 | 
	
		
			
				|  |  |            key: 'startingBoxNumber',
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber ,
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot ,
 | 
	
		
			
				|  |  | +          slotName:'startingBoxNumber',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -297,7 +334,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '结束箱号',
 | 
	
		
			
				|  |  |            key: 'endCaseNumber',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'endCaseNumber' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          {
 | 
	
	
		
			
				|  | @@ -322,7 +360,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '箱数',
 | 
	
		
			
				|  |  |            key: 'boxNumber',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'boxNumber' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '计划尺码数量',
 | 
	
	
		
			
				|  | @@ -346,7 +385,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '净重/箱',
 | 
	
		
			
				|  |  |            key: 'netWeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'netWeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总净重',
 | 
	
	
		
			
				|  | @@ -358,7 +398,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '毛重/箱',
 | 
	
		
			
				|  |  |            key: 'grossWeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'grossWeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总毛重',
 | 
	
	
		
			
				|  | @@ -370,19 +411,22 @@ export default {
 | 
	
		
			
				|  |  |            title: '外箱长度',
 | 
	
		
			
				|  |  |            key: 'outerBoxLength',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -         type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +         type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +         slotName:'outerBoxLength' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '外箱宽度',
 | 
	
		
			
				|  |  |            key: 'outerBoxWidth',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'outerBoxWidth' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '外箱高度',
 | 
	
		
			
				|  |  |            key: 'outerBoxHeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'outerBoxHeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总体积',
 | 
	
	
		
			
				|  | @@ -394,7 +438,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '净净重',
 | 
	
		
			
				|  |  |            key: 'netWeightToo',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber,
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'netWeightToo'
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          // {
 | 
	
		
			
				|  |  |          //   title: '单价',
 | 
	
	
		
			
				|  | @@ -908,15 +953,17 @@ export default {
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '启始箱号',
 | 
	
		
			
				|  |  |            key: 'startingBoxNumber',
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber ,
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot ,
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | +          slotName:'startingBoxNumber'
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '结束箱号',
 | 
	
		
			
				|  |  |            key: 'endCaseNumber',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot ,
 | 
	
		
			
				|  |  | +          slotName:'endCaseNumber'
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          {
 | 
	
	
		
			
				|  | @@ -941,7 +988,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '箱数',
 | 
	
		
			
				|  |  |            key: 'boxNumber',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'boxNumber' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '计划尺码数量',
 | 
	
	
		
			
				|  | @@ -965,7 +1013,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '净重/箱',
 | 
	
		
			
				|  |  |            key: 'netWeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'netWeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总净重',
 | 
	
	
		
			
				|  | @@ -977,7 +1026,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '毛重/箱',
 | 
	
		
			
				|  |  |            key: 'grossWeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'grossWeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总毛重',
 | 
	
	
		
			
				|  | @@ -989,19 +1039,22 @@ export default {
 | 
	
		
			
				|  |  |            title: '外箱长度',
 | 
	
		
			
				|  |  |            key: 'outerBoxLength',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -         type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +         type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +         slotName:'outerBoxLength' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '外箱宽度',
 | 
	
		
			
				|  |  |            key: 'outerBoxWidth',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'outerBoxWidth' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '外箱高度',
 | 
	
		
			
				|  |  |            key: 'outerBoxHeight',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber 
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'outerBoxHeight' 
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '总体积',
 | 
	
	
		
			
				|  | @@ -1013,7 +1066,8 @@ export default {
 | 
	
		
			
				|  |  |            title: '净净重',
 | 
	
		
			
				|  |  |            key: 'netWeightToo',
 | 
	
		
			
				|  |  |            width: 120,
 | 
	
		
			
				|  |  | -          type: JVXETypes.inputNumber,
 | 
	
		
			
				|  |  | +          type: JVXETypes.slot,
 | 
	
		
			
				|  |  | +          slotName:'netWeightToo'
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            title: '备注',
 |