|
@@ -33,12 +33,16 @@
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <w-compress ref='wCompress' />
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import WCompress from '@/components/w-compress/w-compress.vue'
|
|
|
export default {
|
|
|
+ components: {
|
|
|
+ WCompress
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
list:'',
|
|
@@ -102,14 +106,41 @@
|
|
|
},
|
|
|
upimg(){
|
|
|
var that = this;
|
|
|
- uni.chooseImage({
|
|
|
- sourceType: ['album','camera'],
|
|
|
- count:1,
|
|
|
- sizeType:['compressed'],
|
|
|
+ uni.chooseImage({
|
|
|
+ sourceType: ['album','camera'],
|
|
|
+ count:1,
|
|
|
+ sizeType:['compressed'],
|
|
|
success: (chooseImageRes) => {
|
|
|
const tempFilePaths = chooseImageRes.tempFilePaths;
|
|
|
- that.file=tempFilePaths[0]
|
|
|
- uni.uploadFile({
|
|
|
+ console.log(tempFilePaths[0])
|
|
|
+ //that.getImageInfo(tempFilePaths[0])
|
|
|
+ that.file=tempFilePaths[0];
|
|
|
+ that.$refs.wCompress.start(that.file, {
|
|
|
+ pixels: 400000, // 最大分辨率,默认二百万
|
|
|
+ quality: 0.9, // 压缩质量,默认0.8
|
|
|
+ type: 'png', // 图片类型,默认jpg
|
|
|
+ base64: true, // 是否返回base64,默认false,非H5有效
|
|
|
+ }).then(resxx => {
|
|
|
+ uni.uploadFile({
|
|
|
+ url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
|
|
|
+ filePath: resxx,
|
|
|
+ name: 'file',
|
|
|
+ formData: {
|
|
|
+ 'user': 'test'
|
|
|
+ },
|
|
|
+ success: (uploadFileRes) => {
|
|
|
+ console.log(JSON.parse(uploadFileRes.data).data );
|
|
|
+ //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
|
|
|
+ that.imgurl=JSON.parse(uploadFileRes.data).data[0];
|
|
|
+ that.goAddzdy(that.imgurl)
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }).catch(e => {
|
|
|
+
|
|
|
+ })
|
|
|
+ // }
|
|
|
+ /* uni.uploadFile({
|
|
|
url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
|
|
|
filePath: tempFilePaths[0],
|
|
|
name: 'file',
|
|
@@ -122,12 +153,80 @@
|
|
|
that.imgurl=JSON.parse(uploadFileRes.data).data[0];
|
|
|
that.goAddzdy(that.imgurl)
|
|
|
}
|
|
|
- });
|
|
|
-
|
|
|
+ });
|
|
|
+ */
|
|
|
|
|
|
}
|
|
|
});
|
|
|
- }
|
|
|
+
|
|
|
+ },
|
|
|
+ getImageInfo(src){
|
|
|
+ let _this = this
|
|
|
+ uni.getImageInfo({
|
|
|
+ src,
|
|
|
+ success(res) {
|
|
|
+ let canvasWidth = res.width //图片原始长宽
|
|
|
+ let canvasHeight = res.height
|
|
|
+ let ratio = canvasWidth / canvasHeight;
|
|
|
+ if (canvasWidth > 500) {
|
|
|
+ canvasWidth = 500;
|
|
|
+ canvasHeight = Math.floor(canvasWidth / ratio);
|
|
|
+ }
|
|
|
+
|
|
|
+ let img = new Image()
|
|
|
+ img.src = res.path
|
|
|
+
|
|
|
+ let canvas = document.createElement('canvas');
|
|
|
+ let ctx = canvas.getContext('2d')
|
|
|
+ canvas.width = canvasWidth
|
|
|
+ canvas.height = canvasHeight
|
|
|
+ ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
|
|
|
+ canvas.toBlob(function(fileSrc) {
|
|
|
+
|
|
|
+ let imgSrc = window.URL.createObjectURL(fileSrc)
|
|
|
+ _this.upimgfwq(imgSrc)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ upimgfwq(imgSrc){
|
|
|
+ console.log(imgSrc)
|
|
|
+ //let file = new File([imgSrc], '122.png')
|
|
|
+ // var renameFile =new File([imgSrc], this.time(new Date()) + '.png' );
|
|
|
+
|
|
|
+ // var formdata = new FormData();
|
|
|
+ // formdata.append('file', renameFile);
|
|
|
+ // console.log(formdata)
|
|
|
+ var that=this;
|
|
|
+ uni.uploadFile({
|
|
|
+ url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
|
|
|
+ filePath: imgSrc,
|
|
|
+ name: 'file',
|
|
|
+ formData: {
|
|
|
+ 'user': 'test'
|
|
|
+ },
|
|
|
+ success: (uploadFileRes) => {
|
|
|
+ console.log(JSON.parse(uploadFileRes.data).data );
|
|
|
+ //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
|
|
|
+ that.imgurl=JSON.parse(uploadFileRes.data).data[0];
|
|
|
+ that.goAddzdy(that.imgurl)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ time(time) {
|
|
|
+ let month = time.getMonth() + 1; // 月
|
|
|
+ let date = time.getDate(); // 日
|
|
|
+ let hh = time.getHours(); // 时
|
|
|
+ let mm = time.getMinutes(); // 分
|
|
|
+ let ss = time.getSeconds(); // 秒
|
|
|
+ if (hh >=0 && hh<10){hh= '0' + hh;}
|
|
|
+ if (mm >=0 && mm<10){mm= '0' + mm;}
|
|
|
+ if (ss >=0 && ss<10){ss= '0' + ss;}
|
|
|
+ if (month < 10){month= '0' + month;}
|
|
|
+ if (date < 10){date= '0' + date;}
|
|
|
+ return time.getFullYear().toString() + month.toString() + date.toString() + hh.toString() + mm.toString() + ss.toString();
|
|
|
+ },
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
</script>
|