You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.6 KiB

12 months ago
<template>
<view class="content">
<view class="" style="position: absolute; bottom:80px ;left: 30px;z-index: 99999;">
打印
12 months ago
</view>
<web-view src="/hybrid/html/point.html" :fullscreen='false' :webview-styles="webviewStyles"></web-view>
12 months ago
</view>
</template>
<script>
const htmlFileUrl = '/hybrid/html/point.html';
12 months ago
export default {
data() {
return {
webviewStyles: {
progress: {
color: '#FF3333'
},
width: '100%',
height: '600px',
}
12 months ago
}
},
12 months ago
mounted() {
12 months ago
},
methods: {
readFile(path, callback) {
plus.io.resolveLocalFileSystemURL(path, function(entry) {
entry.file(function(file) {
var reader = new plus.io.FileReader();
reader.onloadend = function(e) {
callback(e.target.result);
};
reader.readAsText(file);
}, function(e) {
console.log("读取文件失败:" + e.message);
});
}, function(e) {
console.log("获取图片资源失败:" + e.message);
});
12 months ago
}
},
onShow() {
this.readFile(htmlFileUrl, function(htmlContent) {
console.log(htmlContent); // 这里是HTML文件的内容字符串
console.log(typeof htmlContent); // 这里是HTML文件的内容字符串
});
// uni.request({
// url: htmlFileUrl,
// method: 'GET',
// success: function(res) {
// // res.data就是HTML文件的内容
// var htmlString = res.data;
// console.log(htmlString);
// },
// fail: function(error) {
// console.error('请求HTML文件失败:', error);
// }
// });
},
12 months ago
}
</script>
<style>
</style>