|
@@ -1688,8 +1688,8 @@ export default {
|
|
|
blurCcount(row) { // 实际牛头数
|
|
blurCcount(row) { // 实际牛头数
|
|
|
console.log(row,'洗漱---')
|
|
console.log(row,'洗漱---')
|
|
|
if (row.ftid !== '-1' && row.ftid !== '') {
|
|
if (row.ftid !== '-1' && row.ftid !== '') {
|
|
|
- row.Sfweight = this.recipeTemplateList.find(obj => obj.id == row.ftid)?.Sfweight || "0.0"
|
|
|
|
|
- row.SfweightLock = this.recipeTemplateList.find(obj => obj.id == row.ftid)?.SfweightLock || "0.0"
|
|
|
|
|
|
|
+ row.Sfweight = this.recipeTemplateList.find(obj => obj.id == row.ftid)?.Sfweight || 0
|
|
|
|
|
+ row.SfweightLock = this.recipeTemplateList.find(obj => obj.id == row.ftid)?.SfweightLock || 0
|
|
|
}
|
|
}
|
|
|
if (row.w1 == '' || row.w1 == undefined || isNaN(row.w1)) { row.w1 = 0 }
|
|
if (row.w1 == '' || row.w1 == undefined || isNaN(row.w1)) { row.w1 = 0 }
|
|
|
if (row.w2 == '' || row.w2 == undefined || isNaN(row.w2)) { row.w2 = 0 }
|
|
if (row.w2 == '' || row.w2 == undefined || isNaN(row.w2)) { row.w2 = 0 }
|