index.js 394 B

1234567891011121314151617181920212223
  1. // 慢阻肺患者档案-健康档案
  2. var template = ''
  3. $.ajax('../../../component/statistics/HealthRecord/index.html',{
  4. data: {},
  5. dataType: 'html',
  6. cache: false,
  7. timeout: 60000,
  8. async: false,
  9. error: function(res) {
  10. },
  11. success: function(res) {
  12. template = res
  13. }
  14. })
  15. Vue.component('health-record', {
  16. template: template,
  17. props: [],
  18. data() {
  19. return {
  20. }
  21. }
  22. });