|
|
@@ -76,10 +76,10 @@ export default {
|
|
|
plateValue: "",
|
|
|
tableData: [],
|
|
|
getDateList: [
|
|
|
- { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
- { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
- { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
- { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 1, fans: 118529}
|
|
|
+ // { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
+ // { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
+ // { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 0, fans: 118529},
|
|
|
+ // { num: "1", id: "123", dlr: 'L0201', area: '北区', distributor: '北京博瑞',plate:'微信公众号', account: '雷克萨斯北京博瑞4S店', isAttest: 1, fans: 118529}
|
|
|
],
|
|
|
functionData: [],
|
|
|
};
|
|
|
@@ -116,6 +116,21 @@ export default {
|
|
|
submit: function () {
|
|
|
console.log(this.plateValue);
|
|
|
console.log(this.areaValue);
|
|
|
+ this.$http({
|
|
|
+ method: 'post',
|
|
|
+ url: '/sys/agent/selectAgentInfoPage',
|
|
|
+ data: {
|
|
|
+ queryParams:this.areaValue
|
|
|
+ },
|
|
|
+ }).then((res) => {
|
|
|
+ if(res.data.code === 200) {
|
|
|
+ this.getDateList = res.data.data;
|
|
|
+ }else {
|
|
|
+ console.log('message', res.data.message);
|
|
|
+ }
|
|
|
+ }).catch((err) => {
|
|
|
+ console.log(err);
|
|
|
+ })
|
|
|
},
|
|
|
getData: function () {
|
|
|
this.tableData = [];
|
|
|
@@ -143,12 +158,18 @@ export default {
|
|
|
getDealerListRequest(){//获取经销商列表
|
|
|
this.$http({
|
|
|
method: 'post',
|
|
|
- url: '/sys/agent/selectAgentInfoPage',
|
|
|
+ url: '/sys/mediaAccount/selectMediaAccountPage',
|
|
|
data: {
|
|
|
},
|
|
|
}).then((res) => {
|
|
|
if(res.data.code === 200) {
|
|
|
this.getDateList = res.data.data;
|
|
|
+ this.$notify({
|
|
|
+ message:"成功",
|
|
|
+ type: "success",
|
|
|
+ horizontalAlign:'center',
|
|
|
+ showClose:false
|
|
|
+ });
|
|
|
}else {
|
|
|
console.log('message', res.data.message);
|
|
|
}
|