|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
|
|
|
|
|
<a-spin :spinning="confirmLoading" style="height: 680px;padding-top: 10px"> |
|
|
|
|
<j-form-container :disabled="formDisabled" style="background-color: #efefef;padding-top: 10px"> |
|
|
|
|
<j-form-container :disabled="formDisabled" style="background-color: #efefef;padding-top: 10px" > |
|
|
|
|
<!-- 主表单区域 --> |
|
|
|
|
<a-form :form="form" slot="detail"> |
|
|
|
|
<a-row> |
|
|
|
@ -1033,7 +1033,7 @@
|
|
|
|
|
'materialSeries': record.row.materialSeries, |
|
|
|
|
'materialName': record.row.materialName, |
|
|
|
|
'materialUnit': record.row.materialUnit, |
|
|
|
|
'materialAmount': record.row.materialQuantity * record.row.materialPrice, |
|
|
|
|
'materialAmount': parseFloat((record.row.materialQuantity * record.row.materialPrice).toFixed(1)), |
|
|
|
|
'materialType': this.data.materialType |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|