| | |
| | | }, |
| | | // 查看 编辑 |
| | | handleClick(row, title) { |
| | | console.log(row, title) |
| | | this.editConfig.visible = true |
| | | let params = JSON.parse(JSON.stringify(row)); |
| | | this.editConfig.title = title |
| | | this.editConfig.infomation = { |
| | | ...row, |
| | | ...params, |
| | | currency: "人民币", |
| | | sale_chance_name: row.saleChance.name, |
| | | deliverType: row.deliverType === 0 ? "" : row.deliverType, |
| | | quotation_number: row.quotation.number |
| | | sale_chance_name: params.saleChance.name, |
| | | deliverType: params.deliverType === 0 ? "" : params.deliverType, |
| | | quotation_number: params.quotation.number |
| | | } |
| | | this.editConfig.visible = true |
| | | }, |
| | | // 确认提交 |
| | | async submitClick(row) { |