|
|
<template> |
|
|
<view class="container"> |
|
|
<uni-forms ref="form" :modelValue="form" :rules="rules" class="padding-wrap" label-position="top"> |
|
|
<view class="user-box"> |
|
|
<view class="user-avatar"> |
|
|
<image class="user-avatar-image" src="@/static/header.png" mode="widthFix"></image> |
|
|
</view> |
|
|
<view class="user-info"> |
|
|
<view class="user-info-name">{{form.employeeId}}</view> |
|
|
<view class="user-info-group">1组</view> |
|
|
</view> |
|
|
</view> |
|
|
<!-- 语音录入记录 --> |
|
|
<view class="voice-rocord-box" v-for="(item,index) in voicePathList" :key="'voice'+index"> |
|
|
<view class="voice-box" @click="playVoice(index,item)"> |
|
|
<view class="voice-mins">{{item.duration}}”</view> |
|
|
</view> |
|
|
<view class="voice-del" @click="delRecord(index)">删除</view> |
|
|
</view> |
|
|
<view class="tab-switch" @click="switchPositionType"> |
|
|
<view class="tab-btn" :class="positionType == 1 ? 'tab-btn active' : 'tab-btn'"> |
|
|
<view class="tab-btn-item"></view> |
|
|
</view> |
|
|
<view class="tab-label">使用常用报警位置</view> |
|
|
</view> |
|
|
<uni-forms-item v-if="positionType === 0" label="当前位置" label-width="200upx"> |
|
|
<view class="choose-map" @click="goMap" :style="{color:form.buildId? '#000' : '#C4C7CB'}"> |
|
|
{{form.buildId ? form.buildId + '号楼' + form.floorNo + '层 纬度'+ form.latidute + ' 经度' + form.longidute : '请选择地图定位'}} |
|
|
</view> |
|
|
</uni-forms-item> |
|
|
<uni-forms-item v-if="positionType == 1" label="常用报警位置" label-width="200upx"> |
|
|
<view class="choose-map" @click="goSetOther" :style="{color:form.buildId? '#000' : '#C4C7CB'}"> |
|
|
{{form.buildId ? form.buildId + '号楼' + form.floorNo + '层 纬度'+ form.latidute + ' 经度' + form.longidute : '去设置常用报警定位'}} |
|
|
</view> |
|
|
</uni-forms-item> |
|
|
<uni-forms-item label="应急预案选择" label-width="200upx"> |
|
|
<uni-data-select v-model="form.planTypeId" :localdata="planTypeList" |
|
|
placeholder="请选择常应急预案报警类型"></uni-data-select> |
|
|
</uni-forms-item> |
|
|
<view style="text-align: right;"> |
|
|
<view class="submit-btn" @click="submit">上报</view> |
|
|
</view> |
|
|
</uni-forms> |
|
|
<!-- 录音按钮 --> |
|
|
<view class="voice-btn-box"> |
|
|
<view class="btn-box" @click="doRecord"> |
|
|
<view class="btn-box-dot"></view> |
|
|
</view> |
|
|
<view class="btn-text" v-if="!isStart">点击录音</view> |
|
|
<view class="btn-text" v-else @click="endRecord">结束录音</view> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
|
|
|
<script> |
|
|
export default { |
|
|
data() { |
|
|
return { |
|
|
form: { |
|
|
type: '1', |
|
|
employeeId: '', |
|
|
deviceId: '', |
|
|
buildId: '', |
|
|
floorNo: '', |
|
|
longidute: '', |
|
|
latidute: '', |
|
|
planTypeId: '', |
|
|
planTypeName: '', |
|
|
}, |
|
|
positionType: 1, //是否使用常用报警位置 |
|
|
planTypeList: [], //常用预案 |
|
|
position: null, //地图定位 |
|
|
rules: { |
|
|
longidute: { |
|
|
rules: [{ |
|
|
required: true, |
|
|
errorMessage: "请输入上报经度" |
|
|
}] |
|
|
}, |
|
|
latidute: { |
|
|
rules: [{ |
|
|
required: true, |
|
|
errorMessage: "请输入上报维度" |
|
|
}] |
|
|
} |
|
|
}, |
|
|
voicePathList: [], //录音记录 |
|
|
voices: [], |
|
|
userInfo: {}, |
|
|
locationInfo: {}, |
|
|
isStart: false, //是否开始录音 |
|
|
recorderManager: {}, |
|
|
innerAudioContext: {}, |
|
|
fileUrl: getApp().globalData.fileUrl, |
|
|
times: null, |
|
|
num: 0, |
|
|
isPlaying: false, //是否正在播放 |
|
|
} |
|
|
}, |
|
|
onUnload() { |
|
|
console.log('释放监听') |
|
|
uni.$off('mapData'); |
|
|
}, |
|
|
onShow() { |
|
|
//当前用户设置和常用报警点信息渲染 |
|
|
let userInfo = uni.getStorageSync('mobileInfo'); |
|
|
let locationInfo = uni.getStorageSync('locationInfo'); |
|
|
if (userInfo) { |
|
|
this.userInfo = JSON.parse(userInfo); |
|
|
this.form.employeeId = this.userInfo.employeeId; |
|
|
this.form.deviceId = this.userInfo.employeeId; |
|
|
} |
|
|
if (locationInfo && this.positionType == 1) { |
|
|
this.locationInfo = JSON.parse(locationInfo); |
|
|
this.form.planTypeId = this.locationInfo.planId; |
|
|
this.form.planTypeName = this.locationInfo.planTypeName; |
|
|
this.form.buildId = this.locationInfo.buildId; |
|
|
this.form.floorNo = this.locationInfo.floorNo; |
|
|
this.form.latidute = this.locationInfo.latidute; |
|
|
this.form.longidute = this.locationInfo.longidute; |
|
|
} |
|
|
}, |
|
|
onLoad() { |
|
|
uni.$on('mapData', (data) => { |
|
|
let obj = JSON.parse(data.data[0].detail); |
|
|
console.log('监听到事件来自返回的参数:', obj); |
|
|
this.position = obj; |
|
|
this.form.buildId = obj.buildId; |
|
|
this.form.floorNo = obj.floorNo; |
|
|
this.form.latidute = obj.x; |
|
|
this.form.longidute = obj.y; |
|
|
}) |
|
|
this.recorderManager = uni.getRecorderManager(); |
|
|
this.innerAudioContext = uni.createInnerAudioContext(); |
|
|
this.innerAudioContext.autoplay = true; |
|
|
//录音结束监听 |
|
|
this.recorderManager.onStop((res) => { |
|
|
console.log('recorder stop' + JSON.stringify(res)); |
|
|
clearInterval(this.times); |
|
|
this.times = null; |
|
|
this.voicePathList.push({ |
|
|
name: 'file' + (this.voicePathList.length > 0 ? this.voicePathList.length : 0), |
|
|
file: res, |
|
|
uri: res.tempFilePath, |
|
|
duration: this.num, |
|
|
playing:false, |
|
|
}); |
|
|
}) |
|
|
//录音播放监听 |
|
|
this.recorderManager.onError((res) => { |
|
|
console.log('recorder onError' + JSON.stringify(res)); |
|
|
}) |
|
|
this.queryPlanTypeList(); |
|
|
}, |
|
|
methods: { |
|
|
//预案类型 |
|
|
queryPlanTypeList() { |
|
|
uni.request({ |
|
|
url: "http://172.19.2.177:8081/GetAllPlanInfo", |
|
|
success: (data) => { |
|
|
let _data = JSON.parse(data); |
|
|
if (_data.code == 200) { |
|
|
_data.data.forEach(item => { |
|
|
item.value = item.planId; |
|
|
item.text = item.planName; |
|
|
}) |
|
|
this.planTypeList = _data.data; |
|
|
} |
|
|
} |
|
|
}) |
|
|
}, |
|
|
//跳到重用设置页面 |
|
|
goSetOther() { |
|
|
uni.navigateTo({ |
|
|
url: '/pages/setting/other' |
|
|
}) |
|
|
}, |
|
|
//跳到地图页面获取定位 |
|
|
goMap() { |
|
|
console.log('页面跳转') |
|
|
uni.navigateTo({ |
|
|
url: '/pages/map/map' |
|
|
}) |
|
|
}, |
|
|
//切换定位类型 |
|
|
switchPositionType() { |
|
|
this.positionType = this.positionType == 1 ? 0 : 1 |
|
|
this.form.buildId = this.positionType == 1 ? this.locationInfo.buildId : this.position ? this.position.buildId : |
|
|
''; |
|
|
this.form.floorNo = this.positionType == 1 ? this.locationInfo.floorNo : this.position ? this.position.floorNo : |
|
|
''; |
|
|
this.form.latidute = this.positionType == 1 ? this.locationInfo.latidute : this.position ? this.position.x : ''; |
|
|
this.form.longidute = this.positionType == 1 ? this.locationInfo.longidute : this.position ? this.position.y : |
|
|
''; |
|
|
}, |
|
|
//录音 |
|
|
doRecord() { |
|
|
if (!this.isStart) { |
|
|
console.log('开始录音'); |
|
|
this.isStart = true; |
|
|
this.num = 0; |
|
|
this.recorderManager.start(); |
|
|
this.times = setInterval(() => { |
|
|
++this.num; |
|
|
}, 1000); |
|
|
} |
|
|
}, |
|
|
endRecord() { |
|
|
console.log('录音结束'); |
|
|
this.recorderManager.stop(); |
|
|
this.isStart = false; |
|
|
}, |
|
|
//删除录音 |
|
|
delRecord(index) { |
|
|
console.log('delete', index) |
|
|
this.voicePathList.splice(index, 1); |
|
|
}, |
|
|
//录音播放 |
|
|
playVoice(index,val) { |
|
|
if(this.voicePathList[index].playing){ |
|
|
console.log('停止播放'); |
|
|
this.innerAudioContext.stop(); |
|
|
this.voicePathList[index].playing = false; |
|
|
}else{ |
|
|
console.log('播放录音 ===>',index,this.voicePathList[index]); |
|
|
this.voicePathList.forEach(item =>{ |
|
|
if(item.uri !== val.uri){ |
|
|
item.playing = false |
|
|
}else{ |
|
|
this.innerAudioContext.src = this.voicePathList[index].uri; //this.fileUrl + this.voicePathList[index].uri; |
|
|
this.innerAudioContext.play(); |
|
|
console.log('uri ===>',this.voicePathList) |
|
|
this.voicePathList[index].playing = true; |
|
|
} |
|
|
}) |
|
|
} |
|
|
// if (this.isPlaying) { |
|
|
// console.log('停止播放'); |
|
|
// this.innerAudioContext.stop(); |
|
|
// this.isPlaying = false; |
|
|
// } else { |
|
|
// console.log('播放录音'); |
|
|
// this.innerAudioContext.src = this.voicePathList[index].uri; //this.fileUrl + this.voicePathList[index].uri; |
|
|
// this.innerAudioContext.play(); |
|
|
// console.log('uri ===>',this.voicePathList) |
|
|
// this.isPlaying = true; |
|
|
// } |
|
|
}, |
|
|
submit() { |
|
|
this.$refs.form.validate().then(res => { |
|
|
if (this.voicePathList.length == 0) { |
|
|
uni.showToast({ |
|
|
title: '请先上传语音', |
|
|
icon: 'none' |
|
|
}) |
|
|
return; |
|
|
} |
|
|
uni.uploadFile({ |
|
|
url: getApp().globalData.apiUrl + '/appData/putFile', |
|
|
files: this.voicePathList, |
|
|
formData: this.form, |
|
|
success: (res) => { |
|
|
let _data = JSON.parse(res.data); |
|
|
if (_data.code == 200) { |
|
|
// uni.showToast({ |
|
|
// title: '成功' |
|
|
// }); |
|
|
this.voices = _data.data; |
|
|
this.reportIot(); |
|
|
//测试使用 |
|
|
// uni.redirectTo({ |
|
|
// url: '/pages/voiceRecord/list' |
|
|
// }) |
|
|
} else { |
|
|
uni.showToast({ |
|
|
title: _data.msg, |
|
|
icon: 'none' |
|
|
}); |
|
|
} |
|
|
}, |
|
|
fail: (err) => { |
|
|
console.log(err) |
|
|
} |
|
|
}) |
|
|
}).catch(err => { |
|
|
console.log('表单错误信息:', err); |
|
|
uni.showToast({ |
|
|
title: err |
|
|
}); |
|
|
}) |
|
|
}, |
|
|
//消息上报 |
|
|
reportIot() { |
|
|
let _arr = []; |
|
|
this.voices.forEach(item => { |
|
|
_arr.push({url:item}); |
|
|
}) |
|
|
let data = { |
|
|
"alarmTypeIdentity": "700005", |
|
|
"description": "语音上报", |
|
|
"deviceSn": this.form.deviceId, |
|
|
"platformCode": "DIANXIN", |
|
|
"pictureList": _arr |
|
|
} |
|
|
uni.request({ |
|
|
url: getApp().globalData.apiUrl + '/appData/escalation', |
|
|
method: 'POST', |
|
|
data: data, |
|
|
success: (res) => { |
|
|
let _data = JSON.parse(res.data.data); |
|
|
if (_data.resultCode == 0) { |
|
|
uni.showToast({ |
|
|
title: '成功', |
|
|
success: () => { |
|
|
uni.redirectTo({ |
|
|
url: '/pages/voiceRecord/list' |
|
|
}) |
|
|
} |
|
|
}); |
|
|
} else { |
|
|
uni.showToast({ |
|
|
title: _data.msg, |
|
|
icon: 'none' |
|
|
}); |
|
|
} |
|
|
}, |
|
|
fail: (err) => { |
|
|
console.log(err) |
|
|
} |
|
|
}) |
|
|
} |
|
|
}, |
|
|
} |
|
|
</script> |
|
|
|
|
|
<style lang="scss" scoped> |
|
|
page, |
|
|
.container { |
|
|
min-height: 100vh; |
|
|
background-color: #FFFFFF; |
|
|
|
|
|
/deep/.uni-forms-item__label { |
|
|
color: #031945; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Bold, PingFang SC; |
|
|
font-weight: bold; |
|
|
} |
|
|
|
|
|
/deep/.uni-select { |
|
|
height: 99upx; |
|
|
background: #F6F8FA; |
|
|
border-radius: 30upx; |
|
|
padding: 0 15upx 0 30upx; |
|
|
border: 0; |
|
|
} |
|
|
|
|
|
/deep/.uni-select__input-box { |
|
|
height: 99upx; |
|
|
} |
|
|
|
|
|
/deep/.uni-select__input-placeholder { |
|
|
color: #C4C7CB; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Regular, PingFang SC; |
|
|
font-weight: 400; |
|
|
} |
|
|
|
|
|
/deep/.uni-icons { |
|
|
color: #C4C7CB; |
|
|
font-size: 28upx; |
|
|
} |
|
|
} |
|
|
|
|
|
.padding-wrap { |
|
|
padding: 30upx; |
|
|
} |
|
|
|
|
|
.voice-rocord-box { |
|
|
display: flex; |
|
|
align-items: center; |
|
|
justify-content: space-between; |
|
|
margin-bottom: 40upx; |
|
|
|
|
|
.voice-box { |
|
|
display: flex; |
|
|
align-items: center; |
|
|
justify-content: flex-end; |
|
|
width: 260px; |
|
|
height: 90upx; |
|
|
background: #338AF8 url(@/static/voive_bg.png) 40upx 28upx no-repeat; |
|
|
background-size: 226upx 34upx; |
|
|
border-radius: 100upx; |
|
|
|
|
|
.voice-mins { |
|
|
color: #FFFFFF; |
|
|
font-size: 28upx; |
|
|
font-family: Arial-Regular, Arial; |
|
|
font-weight: 400; |
|
|
margin-right: 40upx; |
|
|
} |
|
|
} |
|
|
|
|
|
.voice-del { |
|
|
color: #B6B8BB; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Regular, PingFang SC; |
|
|
font-weight: 400; |
|
|
margin-left: 20upx; |
|
|
} |
|
|
} |
|
|
|
|
|
.choose-map { |
|
|
line-height: 44upx; |
|
|
color: #C4C7CB; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Regular, PingFang SC; |
|
|
font-weight: 400; |
|
|
text-align: left; |
|
|
background: #F6F8FA; |
|
|
border-radius: 30upx; |
|
|
word-break: break-all; |
|
|
padding: 22upx 15upx 22upx 33upx; |
|
|
} |
|
|
|
|
|
.submit-btn { |
|
|
display: inline-block; |
|
|
width: 140upx; |
|
|
color: #338AF8; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Regular, PingFang SC; |
|
|
font-weight: 400; |
|
|
line-height: 66upx; |
|
|
text-align: center; |
|
|
background: #E5F0FF; |
|
|
border-radius: 20upx; |
|
|
border: 1px solid #338AF8; |
|
|
} |
|
|
|
|
|
.tab-switch { |
|
|
display: flex; |
|
|
justify-content: flex-end; |
|
|
align-items: center; |
|
|
|
|
|
.tab-btn { |
|
|
width: 80upx; |
|
|
height: 40upx; |
|
|
border-radius: 20upx; |
|
|
background-color: #eee; |
|
|
margin-right: 10upx; |
|
|
|
|
|
.tab-btn-item { |
|
|
float: left; |
|
|
width: 36upx; |
|
|
height: 36upx; |
|
|
border-radius: 18upx; |
|
|
background-color: #FFFFFF; |
|
|
margin: 2upx; |
|
|
} |
|
|
|
|
|
&.active { |
|
|
background-color: #338AF8; |
|
|
|
|
|
.tab-btn-item { |
|
|
float: right; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
.user-box { |
|
|
display: flex; |
|
|
flex-direction: row; |
|
|
align-items: center; |
|
|
margin-bottom: 40upx; |
|
|
|
|
|
.user-avatar { |
|
|
display: block; |
|
|
margin-right: 26upx; |
|
|
|
|
|
.user-avatar-image { |
|
|
width: 90upx; |
|
|
height: 90upx; |
|
|
} |
|
|
} |
|
|
|
|
|
.user-info { |
|
|
flex: 1; |
|
|
color: #031945; |
|
|
font-size: 28upx; |
|
|
line-height: 40upx; |
|
|
font-family: PingFang SC-Bold, PingFang SC; |
|
|
font-weight: bold; |
|
|
|
|
|
.user-info-group { |
|
|
color: #90959D; |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
// 录音按钮 |
|
|
.voice-btn-box { |
|
|
text-align: center; |
|
|
|
|
|
.btn-box { |
|
|
display: inline-block; |
|
|
width: 190upx; |
|
|
height: 190upx; |
|
|
background: #E5F0FF; |
|
|
border-radius: 100upx; |
|
|
margin: 40upx auto; |
|
|
|
|
|
.btn-box-dot { |
|
|
display: inline-block; |
|
|
width: 126upx; |
|
|
height: 126upx; |
|
|
background: #338AF8; |
|
|
border-radius: 63upx; |
|
|
margin: 32upx; |
|
|
} |
|
|
} |
|
|
|
|
|
.btn-text { |
|
|
color: #031945; |
|
|
font-size: 28upx; |
|
|
font-family: PingFang SC-Bold, PingFang SC; |
|
|
font-weight: bold; |
|
|
} |
|
|
} |
|
|
</style> |