2024-05-10 17:37:36 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
2024-05-13 15:32:48 +08:00
|
|
|
|
<u-navbar :is-back="true" title='上传' title-color="#000" :border-bottom="false" :background="true" id="navbar">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</u-navbar>
|
|
|
|
|
<!-- 111 -->
|
|
|
|
|
<button @click="btn()">上传图片</button>
|
|
|
|
|
<view style="width: 750rpx;height: 750rpx;">
|
2024-05-13 15:32:48 +08:00
|
|
|
|
<image :src="item" v-for="(item,index) in imglist" :key="index" style="width: 750rpx;height: 750rpx;">
|
|
|
|
|
</image>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
2024-07-24 18:02:34 +08:00
|
|
|
|
|
|
|
|
|
<button @click="select">选择图片</button>
|
|
|
|
|
<image mode="widthFix" :src="path" />
|
|
|
|
|
<ksp-cropper mode="free" :width="200" :height="140" :maxWidth="1024" :maxHeight="1024" :url="url"
|
|
|
|
|
@cancel="oncancel" @ok="onok"></ksp-cropper>
|
|
|
|
|
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2024-05-13 15:32:48 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
imglist: [],
|
|
|
|
|
token: '',
|
2024-07-24 18:02:34 +08:00
|
|
|
|
url: "",
|
|
|
|
|
path: ""
|
2024-05-13 15:32:48 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.getQiniuToken()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-07-24 18:02:34 +08:00
|
|
|
|
select() {
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
count: 1,
|
|
|
|
|
success: (rst) => {
|
|
|
|
|
// 设置url的值,显示控件
|
|
|
|
|
this.url = rst.tempFilePaths[0];
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
onok(ev) {
|
|
|
|
|
this.url = "";
|
|
|
|
|
this.path = ev.path;
|
|
|
|
|
let math = 'static/' + this.$u.guid(20)
|
|
|
|
|
wx.uploadFile({
|
|
|
|
|
url: 'https://up-z2.qiniup.com',
|
|
|
|
|
name: 'file',
|
|
|
|
|
filePath: this.path,
|
|
|
|
|
formData: {
|
|
|
|
|
token: this.token, //后端返回的token
|
|
|
|
|
key: 'smartmeter/img/' + math
|
|
|
|
|
},
|
|
|
|
|
success: function(res) {
|
|
|
|
|
let str = JSON.parse(res.data)
|
|
|
|
|
console.log(str.key)
|
|
|
|
|
this.userImgs = 'https://api.ccttiot.com/' + str.key
|
|
|
|
|
console.log(this.userImgs,'101010')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
oncancel() {
|
|
|
|
|
// url设置为空,隐藏控件
|
|
|
|
|
this.url = ""
|
|
|
|
|
},
|
|
|
|
|
|
2024-05-13 15:32:48 +08:00
|
|
|
|
btn() {
|
|
|
|
|
let _this = this
|
|
|
|
|
let math = 'static/' + _this.$u.guid(20)
|
|
|
|
|
uni.chooseMessageFile({
|
|
|
|
|
count: 10,
|
|
|
|
|
type: 'all',
|
|
|
|
|
success(res) {
|
|
|
|
|
const tempFilePaths = res.tempFiles
|
2024-05-10 17:37:36 +08:00
|
|
|
|
wx.uploadFile({
|
2024-05-13 15:32:48 +08:00
|
|
|
|
url: 'https://up-z2.qiniup.com',
|
2024-05-10 17:37:36 +08:00
|
|
|
|
name: 'file',
|
|
|
|
|
filePath: tempFilePaths[0].path,
|
|
|
|
|
formData: {
|
|
|
|
|
token: _this.token, //后端返回的token
|
2024-05-13 15:32:48 +08:00
|
|
|
|
key: 'smartmeter/img/' + math
|
2024-05-10 17:37:36 +08:00
|
|
|
|
},
|
|
|
|
|
success: function(res) {
|
2024-05-13 15:32:48 +08:00
|
|
|
|
console.log(res, 'resres');
|
2024-05-10 17:37:36 +08:00
|
|
|
|
let str = JSON.parse(res.data)
|
|
|
|
|
console.log(str.key)
|
|
|
|
|
_this.userImgs = 'https://api.ccttiot.com/' + str.key
|
|
|
|
|
console.log(_this.userImgs)
|
|
|
|
|
_this.imglist.push(_this.userImgs)
|
|
|
|
|
}
|
2024-08-02 18:00:50 +08:00
|
|
|
|
})
|
2024-05-13 15:32:48 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取上传七牛云token
|
|
|
|
|
getQiniuToken() {
|
|
|
|
|
this.$u.get("/common/qiniu/uploadInfo").then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.token = res.token
|
|
|
|
|
}
|
2024-08-02 18:00:50 +08:00
|
|
|
|
})
|
2024-05-13 15:32:48 +08:00
|
|
|
|
},
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-05-13 15:32:48 +08:00
|
|
|
|
}
|
2024-08-03 18:03:02 +08:00
|
|
|
|
</script>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|