Elements-SY

Merge branch 'fix-issues' into uat

......@@ -818,6 +818,10 @@ export default {
},
/** 修改按钮操作 */
handleUpdate(row) {
if(row.statusName == "已删除"){
this.msgError("已删除不可操作");
return
}
this.reset();
this.findFltConditionData();
this.perStatus(row.fltNo)
......@@ -873,6 +877,10 @@ export default {
},
//查看航班维度
goFlightAllocConfig(val) {
if(val.statusName == "已删除"){
this.msgError("已删除不可操作");
return
}
let obj = {
id: ' ',
handle: 'updated',
......@@ -1002,6 +1010,7 @@ export default {
},
//取消按钮
cancel() {
this.routeError = false
this.routeList = []
this.ishighPriceWeightPercent = true
this.routeMultiple = false
......
......@@ -173,7 +173,7 @@ export default {
{
required: true,
message: "航线不能为空",
trigger: "change",
trigger: ["change", "blur"],
},
],
groupAllWeight: [
......