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.

88 lines
1.9 KiB

12 months ago
<template>
<view class="content">
<view class="" style="position: absolute; bottom:80px ;left: 30px;z-index: 99999;">
打印
12 months ago
</view>
11 months ago
<!-- #ifdef APP -->
<web-view src="/hybrid/html/point.html" :fullscreen='false' :webview-styles="webviewStyles"></web-view>
11 months ago
<!-- #endif -->
12 months ago
</view>
</template>
<script>
const htmlFileUrl = '/hybrid/html/point.html';
11 months ago
import {
getList
} from '@/api/request2.js';
12 months ago
export default {
data() {
return {
webviewStyles: {
progress: {
color: '#FF3333'
},
width: '100%',
11 months ago
height: '500px',
}
12 months ago
}
},
12 months ago
methods: {
11 months ago
// #ifdef APP
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
}
11 months ago
// #endif
},
onShow() {
11 months ago
// this.readFile(htmlFileUrl, function(htmlContent) {
// console.log(htmlContent); // 这里是HTML文件的内容字符串
// console.log(typeof htmlContent); // 这里是HTML文件的内容字符串
// });
11 months ago
// #ifdef APP
console.log(11)
var filters = []
if (this.checkedToday) {
filters.push({
column: "request_time",
action: "betweeen",
value: this.todayTime
})
}
console.log(22)
var params = {
filters: filters,
pageNo: this.pageNo,
pageSize: this.pageSize,
}
console.log(33)
getList(params).then(res => {
console.log(44)
this.data = res.data.list[7]
console.log(this.data)
}).catch(error => {
console.log(55)
this.showMessage(error)
})
// #endif
},
12 months ago
}
</script>
<style>
</style>