medical.js 953 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. new Vue({
  2. el: '#app',
  3. data: {
  4. leftChart1:null,
  5. city:'贵港市',
  6. town: [
  7. {
  8. "townName": "港北区",
  9. "result": "26531"
  10. },
  11. {
  12. "townName": "港南区",
  13. "result": "25634"
  14. },
  15. {
  16. "townName": "覃塘区",
  17. "result": "12587"
  18. },
  19. {
  20. "townName": "平南县",
  21. "result": "74128"
  22. },
  23. {
  24. "townName": "桂平市",
  25. "result": "113485"
  26. }
  27. ],
  28. },
  29. mounted: function() {
  30. this.setLeftChart1();
  31. },
  32. methods: {
  33. setLeftChart1:function(){
  34. var options =gxyrq['重点服务人群增加趋势']['本年'];
  35. this.leftChart1 = options
  36. },
  37. setCity(item){
  38. this.city = item.townName
  39. }
  40. }
  41. });