1234567891011121314151617181920212223242526272829 |
- (function(){
- Vue.component('iframe-page',{
- template:'<div style="height: 100%;overflow: auto;margin-bottom: 50px;">\
- <iframe :src="hreftext" frameborder="0" width="100%" height="600px"></iframe>\
- <div id="footer">\
- <div class="c-row btn-wrap c-border-top fr">\
- <div class="div-foot-btn active" @click="confirmClick">\
- <a href="#" class="c-666 f-fs16">保存</a>\
- </div>\
- </div>\
- </div>\
- </div>',
- props:['hreftext'],
- data: function(){
- return {
- }
- },
- mounted: function(){
- },
- methods: {
- confirmClick:function(){
- var vm = this;
- //触发刷新
- this.$emit('vuedals:close', {});
- },
- }
- });
-
- })()
|