iframe-page.js 767 B

1234567891011121314151617181920212223242526272829
  1. (function(){
  2. Vue.component('iframe-page',{
  3. template:'<div style="height: 100%;overflow: auto;margin-bottom: 50px;">\
  4. <iframe :src="hreftext" frameborder="0" width="100%" height="600px"></iframe>\
  5. <div id="footer">\
  6. <div class="c-row btn-wrap c-border-top fr">\
  7. <div class="div-foot-btn active" @click="confirmClick">\
  8. <a href="#" class="c-666 f-fs16">保存</a>\
  9. </div>\
  10. </div>\
  11. </div>\
  12. </div>',
  13. props:['hreftext'],
  14. data: function(){
  15. return {
  16. }
  17. },
  18. mounted: function(){
  19. },
  20. methods: {
  21. confirmClick:function(){
  22. var vm = this;
  23. //触发刷新
  24. this.$emit('vuedals:close', {});
  25. },
  26. }
  27. });
  28. })()