|
@@ -105,6 +105,25 @@
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
|
|
+ <template v-slot:singlePrice="{ row, $index }">
|
|
|
|
|
+ <el-form-item
|
|
|
|
|
+ style="margin-bottom: 20px"
|
|
|
|
|
+ :prop="'datasource.' + $index + '.singlePrice'"
|
|
|
|
|
+ :rules="[
|
|
|
|
|
+ { required: true, message: '请输入', trigger: 'blur' },
|
|
|
|
|
+ ]"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ type="number"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="row.singlePrice"
|
|
|
|
|
+ @input="(val) => changeNumSinglePrice(val, $index)"
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
<!-- 发货总重 -->
|
|
<!-- 发货总重 -->
|
|
|
<template v-slot:sendTotalWeight="scope">
|
|
<template v-slot:sendTotalWeight="scope">
|
|
|
<el-form-item
|
|
<el-form-item
|
|
@@ -388,10 +407,16 @@
|
|
|
// : '';
|
|
// : '';
|
|
|
// }
|
|
// }
|
|
|
// },
|
|
// },
|
|
|
|
|
+ {
|
|
|
|
|
+ width: 160,
|
|
|
|
|
+ prop: 'deliverysinglePrice',
|
|
|
|
|
+ label: '原单价',
|
|
|
|
|
+ align: 'center'
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
width: 160,
|
|
width: 160,
|
|
|
prop: 'singlePrice',
|
|
prop: 'singlePrice',
|
|
|
- label: '单价',
|
|
|
|
|
|
|
+ label: '退货单价',
|
|
|
slot: 'singlePrice',
|
|
slot: 'singlePrice',
|
|
|
align: 'center'
|
|
align: 'center'
|
|
|
},
|
|
},
|