Commit 07f77701 authored by lvshibao's avatar lvshibao

group页面修改

parent cc8b061d
...@@ -99,6 +99,11 @@ new Vue({ ...@@ -99,6 +99,11 @@ new Vue({
that.$message('服务器错误') that.$message('服务器错误')
} else { } else {
that.countryList = data.data.country_list; that.countryList = data.data.country_list;
if (that.countryList.length > 0) {
that.country_chow = true;
} else {
that.country_chow = false;
};
} }
}) })
}, },
...@@ -119,8 +124,10 @@ new Vue({ ...@@ -119,8 +124,10 @@ new Vue({
that.cityList = data.data.city_list; that.cityList = data.data.city_list;
that.countryList = data.data.country_list; that.countryList = data.data.country_list;
if (that.countryList.length > 0) { if (that.countryList.length > 0) {
that.country_chow = true that.country_chow = true;
} } else {
that.country_chow = false;
};
that.cityvalue = data.data.city_id; that.cityvalue = data.data.city_id;
console.log(that.cityvalue); console.log(that.cityvalue);
that.init_simple = true; that.init_simple = true;
......
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