|
@@ -326,7 +326,7 @@
|
|
:value="
|
|
:value="
|
|
item.setlabel === 'positionDescribe'
|
|
item.setlabel === 'positionDescribe'
|
|
? item.k
|
|
? item.k
|
|
- : item.v >= 0
|
|
|
|
|
|
+ : item.v
|
|
? item.v
|
|
? item.v
|
|
: item.planDepartureApt
|
|
: item.planDepartureApt
|
|
"
|
|
"
|
|
@@ -839,7 +839,7 @@ export default {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- }, 500);
|
|
|
|
|
|
+ }, 400);
|
|
this.loading = false;
|
|
this.loading = false;
|
|
}, 100);
|
|
}, 100);
|
|
} else {
|
|
} else {
|
|
@@ -1076,8 +1076,8 @@ export default {
|
|
datas.forEach(async (item) => {
|
|
datas.forEach(async (item) => {
|
|
if (item.columnLabel === "开始位置") {
|
|
if (item.columnLabel === "开始位置") {
|
|
this.tableOptions.beginNode.forEach((element) => {
|
|
this.tableOptions.beginNode.forEach((element) => {
|
|
- if (this.tableForm.beginNode == element.v) {
|
|
|
|
- this.tableForm.beginNode = element.k;
|
|
|
|
|
|
+ if (this.tableForm.beginNode == element.k) {
|
|
|
|
+ this.tableForm.beginNode = element.v;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
this.tableOptions.beginPosition = await this.getSelectData(
|
|
this.tableOptions.beginPosition = await this.getSelectData(
|
|
@@ -1095,8 +1095,8 @@ export default {
|
|
datas.forEach(async (item) => {
|
|
datas.forEach(async (item) => {
|
|
if (item.columnLabel === "结束位置") {
|
|
if (item.columnLabel === "结束位置") {
|
|
this.tableOptions.endNode.forEach((element) => {
|
|
this.tableOptions.endNode.forEach((element) => {
|
|
- if (this.tableForm.endNode == element.v) {
|
|
|
|
- this.tableForm.endNode = element.k;
|
|
|
|
|
|
+ if (this.tableForm.endNode == element.k) {
|
|
|
|
+ this.tableForm.endNode = element.v;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
this.tableOptions.endPosition = await this.getSelectData(
|
|
this.tableOptions.endPosition = await this.getSelectData(
|