地图绘制 停站时间/运行等级 代码调整

This commit is contained in:
joylink_cuiweidong 2021-05-21 15:12:40 +08:00
parent 13af28467c
commit e17104f537
2 changed files with 35 additions and 25 deletions

View File

@ -91,6 +91,7 @@ export default {
},
save(index, row) {
if (this.mapInfo && this.mapInfo.id) {
if (row.parkingTimeNew > 0) {
row.loading = true;
updateStationParkTime(this.mapInfo.id, row.id, {parkingTime:row.parkingTimeNew}).then(resp => {
this.$message.success(this.$t('tip.updateDwellTimeSuccessful'));
@ -102,6 +103,10 @@ export default {
row.loading = false;
this.$messageBox(this.$t('tip.updateDwellTimeFailed'));
});
} else {
this.$messageBox('请输入有效的停站时间');
}
}
},
// deleteObj(index, row) {

View File

@ -158,6 +158,7 @@ export default {
},
save(index, row) {
if (this.mapInfo && this.mapInfo.id) {
if (row.l1New > 0 && row.l2New > 0 && row.l3New > 0 && row.l4New > 0 && row.l5New > 0) {
row.loading = true;
putUploadLevel(this.mapInfo.id, row.id, {l1:row.l1New, l2:row.l2New, l3:row.l3New, l4:row.l1New, l5:row.l5New }).then(resp => {
this.$message.success('更新运行等级成功');
@ -172,6 +173,10 @@ export default {
row.loading = false;
this.$messageBox('更新运行等级失败');
});
} else {
this.$messageBox('请输入有效的运行等级');
}
}
},
// deleteObj(index, row) {