|
@ -97,6 +97,9 @@ export default { |
|
|
// }, |
|
|
// }, |
|
|
], |
|
|
], |
|
|
} |
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
watch: { |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
async created() { |
|
|
async created() { |
|
|
this.data = { ...this.dialogData, organizationName: null, roadName: null }; |
|
|
this.data = { ...this.dialogData, organizationName: null, roadName: null }; |
|
@ -109,6 +112,13 @@ export default { |
|
|
const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMark); |
|
|
const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMark); |
|
|
|
|
|
|
|
|
if (roadInfo) this.data.roadName = roadInfo.roadName; |
|
|
if (roadInfo) this.data.roadName = roadInfo.roadName; |
|
|
|
|
|
}, |
|
|
|
|
|
methods: { |
|
|
|
|
|
visibleClose(bool) { |
|
|
|
|
|
if (bool) return; |
|
|
|
|
|
|
|
|
|
|
|
this.controlDialogVisible = false; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|