123456789101112131415161718192021222324252627282930313233343536373839404142 |
- new Vue({
- el: '#app',
- data: {
- leftChart1:null,
- city:'贵港市',
- town: [
- {
- "townName": "港北区",
- "result": "26531"
- },
- {
- "townName": "港南区",
- "result": "25634"
- },
- {
- "townName": "覃塘区",
- "result": "12587"
- },
- {
- "townName": "平南县",
- "result": "74128"
- },
- {
- "townName": "桂平市",
- "result": "113485"
- }
- ],
- },
- mounted: function() {
- this.setLeftChart1();
- },
- methods: {
- setLeftChart1:function(){
- var options =gxyrq['重点服务人群增加趋势']['本年'];
- this.leftChart1 = options
- },
- setCity(item){
- this.city = item.townName
- }
- }
- });
|