|
@@ -88,8 +88,8 @@
|
|
|
</div>
|
|
|
<el-cascader :options="options" v-model="selectedOptions" @change="handleChange">
|
|
|
</el-cascader>
|
|
|
- <el-select v-model="selectedCoopPlatform" @change="handleCoopPlatformChange">
|
|
|
- <el-option v-for="item in platforms" :key="item.platformID" :label="item.platformID" :value="item.value">
|
|
|
+ <el-select v-model="selectedCoopPlatform" @change="handleCoopPlatformChange">
|
|
|
+ <el-option v-for="item in platforms" :key="item.platformID" :label="item.platformName" :value="item.platformID">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-card>
|
|
@@ -207,6 +207,7 @@ export default {
|
|
|
};
|
|
|
this.optionsCoopPlatform = platforms;
|
|
|
},
|
|
|
+
|
|
|
methods: {
|
|
|
areaChange() {
|
|
|
if (this.airLine.TargetArea == 3) {
|
|
@@ -218,8 +219,8 @@ export default {
|
|
|
handleChange() {
|
|
|
this.optionsCoopPlatform = platforms
|
|
|
},
|
|
|
- handleCoopPlatformChange(val, oldVal) {
|
|
|
- this.selectedCoopPlatform = val
|
|
|
+ handleCoopPlatformChange() {
|
|
|
+ console.log('this.selectedCoopPlatform :>> ', this.selectedCoopPlatform);
|
|
|
}
|
|
|
},
|
|
|
};
|