Commit a55e4994 authored by lvshibao's avatar lvshibao

rule页面修改

parent 784b4497
...@@ -7,9 +7,9 @@ new Vue({ ...@@ -7,9 +7,9 @@ new Vue({
cityList:[], cityList:[],
countryList:[], countryList:[],
teamList:[], teamList:[],
cityvalue: null, cityvalue: '',
countryvalue: null, countryvalue: '',
teamvalue: null, teamvalue: '',
country_show: false, country_show: false,
team_show: true, team_show: true,
start_date: '', start_date: '',
...@@ -60,8 +60,8 @@ new Vue({ ...@@ -60,8 +60,8 @@ new Vue({
changeCity(msg){ changeCity(msg){
console.log(msg); console.log(msg);
this.cityvalue = msg; this.cityvalue = msg;
this.countryvalue = null; this.countryvalue = '';
this.teamvalue = null; this.teamvalue = '';
this.getCountry(); this.getCountry();
this.getTeam(); this.getTeam();
this.getRule(this.cityvalue,this.countryvalue,this.teamvalue,this.start_date,this.end_date,this.takevalue); // 获取统计数据 this.getRule(this.cityvalue,this.countryvalue,this.teamvalue,this.start_date,this.end_date,this.takevalue); // 获取统计数据
...@@ -69,7 +69,7 @@ new Vue({ ...@@ -69,7 +69,7 @@ new Vue({
changeCountry(msg){ changeCountry(msg){
console.log(msg); console.log(msg);
this.countryvalue = msg; this.countryvalue = msg;
this.teamvalue = null; this.teamvalue = '';
this.getTeam(); this.getTeam();
this.getRule(this.cityvalue,this.countryvalue,this.teamvalue,this.start_date,this.end_date,this.takevalue); // 获取统计数据 this.getRule(this.cityvalue,this.countryvalue,this.teamvalue,this.start_date,this.end_date,this.takevalue); // 获取统计数据
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment