代码拉取完成,页面将自动刷新
同步操作将从 凯文同学/前端铺子 - uniapp移动端 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<template>
<view>
<camera :device-position="device" :flash="flash" @error="error" :style="{ width: '100%',position: 'relative', height: getHeight + 'px' }">
<cover-view class="topBox">
<cover-view class="topItem text-bold text-xl">陕A·88888</cover-view>
<cover-view class="topItem">{{nowTime2}}</cover-view>
<cover-view class="topItem">{{nowTime}}</cover-view>
<cover-view class="topItem">{{address}}</cover-view>
</cover-view>
<cover-image @click="xzBtn" class="xzImg" src="https://cdn.zhoukaiwen.com/xz.png"></cover-image>
<cover-image @click="sgdBtn" class="sgdImg" :src="sgdUrl"></cover-image>
<cover-view class="cameraBtn" @click="takePhoto">
<cover-view class="cameraBtn2"></cover-view>
</cover-view>
<cover-view class="bottomBtn" v-if="imgList.length < 1">
<cover-view @click="history" class="btn">历史</cover-view>
<cover-view class="btn" @click="goBack">取消</cover-view>
</cover-view>
<cover-view class="bottomBg" v-if="imgList.length > 0">
<cover-view>
<cover-view @click="ViewImage(index)" class="imgBox" v-for="(item,index) in imgList" :key="index">
<cover-image class="imgItem" :src="item.src" mode="aspectFill"></cover-image>
<cover-view class="cu-tag" @tap.stop="DelImg" :data-index="index">
<cover-image class="iconClose" src="https://cdn.zhoukaiwen.com/icon_close.png" mode="aspectFill"></cover-image>
</cover-view>
</cover-view>
</cover-view>
<cover-view @click="reportBtn" class="report">上报({{imgList.length}})</cover-view>
</cover-view>
<cover-view v-if="rreportShow" class="reportBox animation-slide-bottom">
<cover-view class="text-lg margin-left-sm margin-bottom-sm" style="height:78rpx;line-height: 78rpx;">请选择照片备注内容</cover-view>
<cover-view class="listBox">
<cover-view class="item active">堵车</cover-view>
<cover-view class="item">事故</cover-view>
<cover-view class="item">停车休息</cover-view>
<cover-view class="item">车辆故障</cover-view>
<cover-view class="item">加油</cover-view>
<cover-view class="item">恶劣天气</cover-view>
<cover-view class="item">货物巡检</cover-view>
<cover-view class="item">其他</cover-view>
</cover-view>
<cover-view @click="endBtn" class="repBtn">上报异常</cover-view>
</cover-view>
</camera>
<view style="position: absolute;top: -999999px;">
<view><canvas :style="{ width: w, height: h }" canvas-id="firstCanvas"></canvas></view>
</view>
</view>
</template>
<script>
import QQMapWX from "@/common/qqmap-wx-jssdk";
export default {
data() {
return {
getHeight: '200',
device: 'back', //前置或后置摄像头,值为front, back
flash: 'off', //闪光灯,值为auto, on, off
nowTime: '', //日期
nowTime2: '', //时间
address: '', //当前地址信息
sgdUrl: 'https://cdn.zhoukaiwen.com/sgd.png',
imgList: [
// {
// src: "https://cdn.zhoukaiwen.com/angular.jpg"
// }
],
imgListData: '',
rreportShow: false, //选择照片备注内容弹窗
src:'',
w:'',
h:''
}
},
onLoad() {
const that = this;
var qqmapsdk;
uni.getSystemInfo({
success: function(res) {
that.getHeight = res.windowHeight;
}
});
uni.showModal({
title: '在途异常上报',
content: '车辆行驶途中,道路发生拥堵/事故等情况无法正常驶离时,请拍照上报企业,保留证据。',
showCancel: false,
confirmText: '知道了',
confirmColor: '#3056F6',
success: function(res) {
if (res.confirm) {
console.log('用户点击确定');
}
}
});
this.getTime();
uni.getLocation({
type: 'wgs84',
success: function(res) {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
qqmapsdk = new QQMapWX({
key: "662BZ-2EAR6-M34S7-M4NPO-HFV3F-QEBTV" //自己申请的key
});
qqmapsdk.reverseGeocoder({
location: {
latitude: res.latitude,
longitude: res.longitude
},
success(addressRes) {
console.log(addressRes)
that.address = addressRes.result.address;
},
fail(res) {}
});
}
});
},
methods: {
// 上报:最终上报
endBtn(){
this.rreportShow = false;
this.imgList = [];
},
// 上报:选择类型
reportBtn() {
this.rreportShow = true;
var str = this.imgListData;
var newImgData = this.imgListData.substr(0, this.imgListData.length - 1);
console.log(newImgData)
},
xzBtn() {
if (this.device == 'front') {
this.device = 'back'
} else {
this.device = 'front'
}
},
sgdBtn() {
if (this.flash == 'off') {
this.flash = 'on'
this.sgdUrl = 'https://cdn.zhoukaiwen.com/sgd_on.png'
} else {
this.flash = 'off'
this.sgdUrl = 'https://cdn.zhoukaiwen.com/sgd.png'
}
},
DelImg(e) {
uni.showModal({
// title: '异常照片',
content: '确定要删除这张照片吗?',
cancelText: '取消',
confirmText: '确认',
success: res => {
if (res.confirm) {
console.log(e)
this.imgList.splice(e.currentTarget.dataset.index, 1)
console.log(this.imgList)
var arr = this.imgList;
var str = '';
for (var i = 0; i < arr.length; i++) {
str += arr[i].src + ",";
}
this.imgListData = str;
console.log(this.imgListData)
}
}
})
},
// 查看照片
ViewImage(index) {
const imgList = [this.imgList[index].src];
console.log(imgList)
uni.previewImage({
urls: imgList
});
},
// 点击拍照
takePhoto() {
var that = this;
if (this.imgList.length < 3) {
const ctx = uni.createCameraContext();
ctx.takePhoto({
quality: 'high',
success: (res) => {
var tempImagePath = res.tempImagePath;
// 获取图片信息
uni.getImageInfo({
src: res.tempImagePath,
success: ress => {
that.w = ress.width / 3 + 'px';
that.h = ress.height / 3.01 + 'px';
let ctx = uni.createCanvasContext('firstCanvas'); /** 创建画布 */
//将图片src放到cancas内,宽高为图片大小
ctx.drawImage(res.tempImagePath, 0, 0, ress.width / 3, ress.height / 3);
ctx.setFontSize(12);
ctx.setFillStyle('#FFFFFF');
// ctx.rotate(30 * Math.PI / 180);
let textToWidth = (ress.width / 3) * 0.03;
let textToHeight = (ress.height / 3) * 0.9;
ctx.fillText('陕A88888', textToWidth, textToHeight);
ctx.setFontSize(10);
let textToHeight2 = (ress.height / 3) * 0.94;
ctx.fillText(that.nowTime + ' ' + that.nowTime2, textToWidth, textToHeight2);
let textToHeight3 = (ress.height / 3) * 0.98;
ctx.fillText(that.address, textToWidth, textToHeight3);
ctx.draw(false, () => {
setTimeout(() => {
uni.canvasToTempFilePath({
canvasId: 'firstCanvas',
success: res1 => {
tempImagePath = res1.tempFilePath;
console.log('----------',tempImagePath);
this.imgList.push({
src: tempImagePath
})
console.log(this.imgList);
var arr = this.imgList
var str = '';
for (var i = 0; i < arr.length; i++) {
str += arr[i].src + ",";
}
this.imgListData = str;
console.log(this.imgListData)
}
});
}, 1000);
});
}
});
}
});
} else {
uni.showToast({
title: '最大上传3张照片',
duration: 2000,
icon: 'none'
});
}
},
error(e) {
console.log(e.detail);
},
getTime: function() {
var date = new Date(),
year = date.getFullYear(),
month = date.getMonth() + 1,
day = date.getDate(),
hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours(),
minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes(),
second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
month >= 1 && month <= 9 ? (month = "0" + month) : "";
day >= 0 && day <= 9 ? (day = "0" + day) : "";
var timer = year + '年' + month + '月' + day + '日';
var timer2 = hour + ':' + minute + ':' + second;
this.nowTime = timer;
this.nowTime2 = timer2;
console.log(this.nowTime);
console.log(this.nowTime2);
},
goBack() {
uni.navigateBack({
delta: 1
});
},
history() {
uni.navigateTo({
url: 'timeline'
})
}
}
}
</script>
<style lang="scss">
.topBox {
width: 750rpx;
box-sizing: border-box;
padding: 30rpx;
color: #EEEEEE;
font-size: 34rpx;
.topItem {
width: 100%;
white-space: pre-wrap;
margin-bottom: 15rpx;
}
}
.cameraBtn {
width: 120rpx;
height: 120rpx;
line-height: 120rpx;
border: 6rpx #FFFFFF solid;
border-radius: 50%;
padding: 8rpx;
position: absolute;
left: calc(50% - 60rpx);
bottom: 210rpx;
}
.cameraBtn2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #FFFFFF;
text-align: center;
color: #007AFF;
}
.xzImg {
width: 52rpx;
height: auto;
position: absolute;
right: 44rpx;
bottom: 580rpx;
}
.sgdImg {
width: 40rpx;
height: auto;
position: absolute;
right: 50rpx;
bottom: 450rpx;
}
.bottomBtn {
width: 100%;
height: 150rpx;
padding-bottom: 15rpx;
position: absolute;
bottom: 0;
left: 0;
text-align: center;
display: flex;
justify-content: space-between;
.btn {
width: 30%;
height: 150rpx;
font-size: 34rpx;
color: #FFFFFF;
line-height: 150rpx;
}
}
.bottomBg {
width: 100%;
height: 170rpx;
box-sizing: border-box;
padding: 20rpx 30rpx 40rpx;
position: absolute;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, .8);
display: flex;
justify-content: space-between;
align-items: center;
.imgBox {
width: 110rpx;
height: 110rpx;
float: left;
margin-right: 40rpx;
position: relative;
.cu-tag {
position: absolute;
right: 0;
top: 0;
border-bottom-left-radius: 2px;
padding: 3px 5px;
height: auto;
background-color: rgba(0, 0, 0, 0.5);
font-size: 10px;
vertical-align: middle;
font-family: Helvetica Neue, Helvetica, sans-serif;
white-space: nowrap;
color: #ffffff;
}
}
.imgItem {
width: 110rpx;
height: 110rpx;
}
}
.report {
height: 68rpx;
line-height: 68rpx;
text-align: center;
color: #FFFFFF;
box-sizing: border-box;
padding: 0rpx 20rpx;
border-radius: 10rpx;
background-color: #2157FF;
}
.iconClose {
width: 20rpx;
height: 20rpx;
}
.reportBox {
width: 750rpx;
height: auto;
box-sizing: border-box;
padding: 10rpx 20rpx;
background-color: #FFFFFF;
position: absolute;
bottom: 0;
}
.listBox {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.item {
width: 160rpx;
height: 68rpx;
line-height: 68rpx;
text-align: center;
background: #F7F7F9;
margin-bottom: 40rpx;
color: #888888;
}
.active {
background-color: #F1F7FF;
color: #025ADD;
}
.repBtn {
width: 680rpx;
height: 78rpx;
line-height: 78rpx;
background-color: #025ADD;
color: #FFFFFF;
font-size: 33rpx;
text-align: center;
border-radius: 10rpx;
margin: 5rpx auto 20rpx;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。