|
|
|
@ -1,5 +1,5 @@ |
|
|
|
<script> |
|
|
|
import {getPartValue, removeScanLabel, saveScanLabel, scanLabel} from "../../../api/production/generateReport"; |
|
|
|
import {getPartValue, removeScanLabel, saveScanLabel, scanLabel, queryStandardWeight} from "../../../api/production/generateReport"; |
|
|
|
import dayjs from "dayjs"; |
|
|
|
import {Decimal} from "decimal.js"; |
|
|
|
import {getPhotoAddressData} from "../../../api/pad"; |
|
|
|
@ -67,7 +67,8 @@ export default { |
|
|
|
set(val) { |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
standardWeight: 0 |
|
|
|
}, |
|
|
|
data(){ |
|
|
|
return{ |
|
|
|
@ -288,6 +289,9 @@ export default { |
|
|
|
<el-form-item label="总重量"> |
|
|
|
<el-input-number disabled :controls="false" style="margin-top: -5px;text-align: right" v-model="totalWeight"></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="标准袋重量"> |
|
|
|
<el-input-number disabled :controls="false" style="margin-top: -5px;text-align: right" v-model="detail.standardWeight"></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label=" " v-if="isReport"> |
|
|
|
<download-excel |
|
|
|
:fields="exportDataStandard" |
|
|
|
|