Commit a55e4994 authored by lvshibao's avatar lvshibao

rule页面修改

parent 784b4497
......@@ -7,9 +7,9 @@ new Vue({
cityList:[],
countryList:[],
teamList:[],
cityvalue: null,
countryvalue: null,
teamvalue: null,
cityvalue: '',
countryvalue: '',
teamvalue: '',
country_show: false,
team_show: true,
start_date: '',
......@@ -60,8 +60,8 @@ new Vue({
changeCity(msg){
console.log(msg);
this.cityvalue = msg;
this.countryvalue = null;
this.teamvalue = null;
this.countryvalue = '';
this.teamvalue = '';
this.getCountry();
this.getTeam();
this.getRule(this.cityvalue,this.countryvalue,this.teamvalue,this.start_date,this.end_date,this.takevalue); // 获取统计数据
......@@ -69,7 +69,7 @@ new Vue({
changeCountry(msg){
console.log(msg);
this.countryvalue = msg;
this.teamvalue = null;
this.teamvalue = '';
this.getTeam();
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