|
@@ -862,7 +862,7 @@ export default {
|
|
|
this.$message({ type: 'info', message: this.$t('common.cancelMsg') })
|
|
|
})
|
|
|
} else {
|
|
|
- this.$message({ type: 'error', message: '本车次已添加栏舍不可删除', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg152'), duration: 2000 })
|
|
|
return false
|
|
|
}
|
|
|
},
|
|
@@ -957,7 +957,7 @@ export default {
|
|
|
if (response.msg === 'fail') {
|
|
|
this.$notify({ title:this.$t('message.msg37'), message: response.data, type: 'warning', duration: 2000 })
|
|
|
} else {
|
|
|
- this.$notify({ title: '', message: '成功', type: 'success', duration: 2000 })
|
|
|
+ this.$notify({ title: '', message: this.$t('message.msg153'), type: 'success', duration: 2000 })
|
|
|
this.create.temp.maxweight = this.TMRNumberList.find(obj => obj.id === this.create.temp.tmrid2).maxstirfeed
|
|
|
this.create.temp.tclassname = this.TMRNumberList.find(obj => obj.id === this.create.temp.tmrid2).tclassname
|
|
|
this.create.temp.tmrvolume = this.TMRNumberList.find(obj => obj.id === this.create.temp.tmrid2).tmrvolume
|
|
@@ -998,7 +998,7 @@ export default {
|
|
|
if (response.msg === 'fail') {
|
|
|
this.$notify({ title:this.$t('message.msg37'), message: response.data, type: 'warning', duration: 2000 })
|
|
|
} else {
|
|
|
- this.$notify({ title: '', message: '成功', type: 'success', duration: 2000 })
|
|
|
+ this.$notify({ title: '', message: this.$t('message.msg153'), type: 'success', duration: 2000 })
|
|
|
this.getCreateList1()
|
|
|
}
|
|
|
})
|
|
@@ -1039,7 +1039,7 @@ export default {
|
|
|
this.isDropState = false
|
|
|
|
|
|
if (parseFloat(item.weight) <= 0) {
|
|
|
- this.$message({ type: 'error', message: '重量不可输入小于0的数据', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg154'), duration: 2000 })
|
|
|
return false
|
|
|
}
|
|
|
if (item.weight == '') {
|
|
@@ -1052,7 +1052,7 @@ export default {
|
|
|
sum += parseFloat(item.weight)
|
|
|
})
|
|
|
if (sum > this.create.temp.maxweight) {
|
|
|
- this.$message({ type: 'error', message: '撒料车总重量大于最大重量', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg155'), duration: 2000 })
|
|
|
return false
|
|
|
}
|
|
|
this.requestParam = {}
|
|
@@ -1261,7 +1261,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
if (parseFloat(evt.maxweight) == parseFloat(evt.sumweight) || parseFloat(evt.maxweight) < parseFloat(evt.sumweight)) {
|
|
|
- this.$message({ type: 'error', message: '计划配方已经是最大容量', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg156'), duration: 2000 })
|
|
|
this.getCreateList1()
|
|
|
return
|
|
|
}
|
|
@@ -1461,7 +1461,7 @@ export default {
|
|
|
let tclassname = this.equipmentList.find(obj => obj.id == item).tclassname
|
|
|
let maxstirfeed = this.equipmentList.find(obj => obj.id == item).maxstirfeed
|
|
|
if(tclassname == '固定式'){
|
|
|
- this.$message({ type: 'error', message: '固定式设备无法撒料,请选择撒料设备', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg157'), duration: 2000 })
|
|
|
this.getCreateList2()
|
|
|
return
|
|
|
}
|
|
@@ -1530,13 +1530,13 @@ export default {
|
|
|
// 减少车次
|
|
|
handleReduceTrains() {
|
|
|
if (this.selectList.length == 0) {
|
|
|
- this.$message({ type: 'error', message: '请选择车次', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg158'), duration: 2000 })
|
|
|
return false
|
|
|
} else {
|
|
|
// 减少对应车次
|
|
|
for (let i = 0; i < this.selectList.length; i++) {
|
|
|
if (this.selectList[i].arrList.length > 0) {
|
|
|
- this.$message({ type: 'error', message: '本车次已添加栏舍不可删除', duration: 2000 })
|
|
|
+ this.$message({ type: 'error', message: this.$t('message.msg152'), duration: 2000 })
|
|
|
return false
|
|
|
}
|
|
|
}
|