|
|
|
|
@ -69,7 +69,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column header-align="center" fixed="right" align="center" width="150" label="操作">
|
|
|
|
|
<el-table-column header-align="center" align="center" width="150" label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<template v-if="editingRow === scope.row.id">
|
|
|
|
|
<el-button type="text" size="small" @click="saveDetail(scope.row)">保存</el-button>
|
|
|
|
|
@ -162,7 +162,6 @@ export default {
|
|
|
|
|
orderAmount: parseFloat(row.orderAmount) || 0,
|
|
|
|
|
remark: row.remark || ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log('开始编辑,表单数据:', this.editForm)
|
|
|
|
|
},
|
|
|
|
|
// 保存订单明细
|
|
|
|
|
|