|
|
|
<template>
|
|
|
|
<view class="content">
|
|
|
|
<view class="" style="position: absolute; bottom:80px ;left: 30px;z-index: 99999;">
|
|
|
|
打印
|
|
|
|
</view>
|
|
|
|
<web-view src="/hybrid/html/point.html" :fullscreen='false' :webview-styles="webviewStyles"></web-view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
const htmlFileUrl = '/hybrid/html/point.html';
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
webviewStyles: {
|
|
|
|
progress: {
|
|
|
|
color: '#FF3333'
|
|
|
|
},
|
|
|
|
width: '100%',
|
|
|
|
height: '600px',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
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);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|