mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 查询运营商列表
This commit is contained in:
@@ -205,8 +205,9 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
console.log("merchantList", this.merchantList)
|
||||
console.log("getMerchantList response.rows:", response.data);
|
||||
this.merchantList = response.data;
|
||||
console.log("getMerchantList merchantList", this.merchantList)
|
||||
});
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
|
||||
@@ -135,7 +135,7 @@ export default {
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
console.log("response", response)
|
||||
this.merchantList = response.obj;
|
||||
this.merchantList = response.data;
|
||||
this.createMerchantVip.targetMerchantId = this.merchantList[0].merchantId
|
||||
})
|
||||
},
|
||||
|
||||
@@ -323,7 +323,7 @@ export default {
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
console.log("response", response)
|
||||
this.merchantList = response.obj;
|
||||
this.merchantList = response.data;
|
||||
this.createMerchantVip.targetMerchantId = this.merchantList[0].merchantId
|
||||
})
|
||||
},
|
||||
|
||||
@@ -222,7 +222,7 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
this.merchantList = response.data;
|
||||
console.log("merchantList", this.merchantList)
|
||||
});
|
||||
},
|
||||
|
||||
@@ -277,7 +277,7 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
this.merchantList = response.data;
|
||||
console.log("merchantList", this.merchantList)
|
||||
});
|
||||
},
|
||||
|
||||
@@ -479,7 +479,7 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
this.merchantList = response.data;
|
||||
});
|
||||
},
|
||||
getModelList() {
|
||||
|
||||
@@ -266,7 +266,7 @@ export default {
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
// console.log("getMerchantList response", response);
|
||||
this.merchantList = response.obj;
|
||||
this.merchantList = response.data;
|
||||
this.form.merchantId = this.merchantList[0].merchantId
|
||||
})
|
||||
},
|
||||
|
||||
@@ -400,7 +400,7 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
this.merchantList = response.data;
|
||||
console.log("merchantList", this.merchantList)
|
||||
});
|
||||
},
|
||||
|
||||
@@ -372,7 +372,7 @@ export default {
|
||||
},
|
||||
getMerchantList() {
|
||||
getMerchantList().then((response) => {
|
||||
this.merchantList = response.rows;
|
||||
this.merchantList = response.data;
|
||||
});
|
||||
},
|
||||
// 查询站点信息
|
||||
|
||||
Reference in New Issue
Block a user