This commit is contained in:
2023-12-30 15:13:49 +08:00
parent 8bb3ca6f07
commit dfe629bc12
2 changed files with 53 additions and 22 deletions

View File

@@ -4,7 +4,7 @@
@submit.native.prevent>
<el-form-item label="所属运营商" prop="merchantId" label-width="120">
<el-select v-model="queryParams.merchantId" filterable clearable placeholder="请选择运营商"
@change="changeSelectMerchant(queryParams.merchantId)">
@change="changeSelectStation(queryParams.merchantId)">
<el-option v-for="item in merchantList" :key="item.merchantName" :label="item.merchantName"
:value="item.id" />
</el-select>
@@ -267,7 +267,7 @@ export default {
console.log("merchantList", this.merchantList)
});
},
changeSelectMerchant(value) {
changeSelectStation(value) {
console.log(value);
// 通过接口查
getStationListByMerchantId(value).then((response) => {