|
|
|
|
<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">1001</view>
|
|
|
|
|
<view class="user-info-group">1组</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<uni-forms-item label="当前位置" label-width="200upx">
|
|
|
|
|
<text>{{form.floor}}楼 x:{{form.latidute}} y:{{form.longidute}}</text>
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
<view class="tab-switch" @click="positionType = positionType == 1 ? 0 : 1">
|
|
|
|
|
<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 == 1" label="常用报警位置" label-width="200upx">
|
|
|
|
|
<uni-data-select v-model="position" :localdata="positionList" placeholder="请选择常用报警位置"></uni-data-select>
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
<uni-forms-item label="应急预案选择" label-width="200upx">
|
|
|
|
|
<uni-data-select v-model="position" :localdata="positionList" placeholder="请选择常应急预案报警类型"></uni-data-select>
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
<!-- 巡更照片 -->
|
|
|
|
|
<view class="photo-list">
|
|
|
|
|
<image v-for="(item,index) in photoList" @click="previewImg(item)" :src="item" mode="scaleToFill"
|
|
|
|
|
class="img"></image>
|
|
|
|
|
<view class="choose-img-btn"@click="chooseImg" >
|
|
|
|
|
<view class="txt">记录</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="text-align: right;">
|
|
|
|
|
<view class="submit-btn" @click="submit">上报</view>
|
|
|
|
|
</view>
|
|
|
|
|
</uni-forms>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
form: {
|
|
|
|
|
floor: '',
|
|
|
|
|
longidute: '',
|
|
|
|
|
latidute: '',
|
|
|
|
|
},
|
|
|
|
|
photoList: [],//巡更照片
|
|
|
|
|
positionType: 1, //是否使用常用报警位置
|
|
|
|
|
positionList: [], //常用报警点
|
|
|
|
|
position: '',
|
|
|
|
|
rules: {
|
|
|
|
|
longidute: {
|
|
|
|
|
rules: [{
|
|
|
|
|
required: true,
|
|
|
|
|
errorMessage: "请输入上报经度"
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
latidute: {
|
|
|
|
|
rules: [{
|
|
|
|
|
required: true,
|
|
|
|
|
errorMessage: "请输入上报维度"
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
// #endif
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
submit() {
|
|
|
|
|
this.$refs.form.validate().then(res => {
|
|
|
|
|
uni.request({
|
|
|
|
|
url: 'http://192.168.3.32:81/appData/putFile',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
header:{
|
|
|
|
|
'content-type':'application/x-www-form-urlencoded; charset=UTF-8'//重点
|
|
|
|
|
},
|
|
|
|
|
data: {
|
|
|
|
|
files: this.photoList,
|
|
|
|
|
longidute: this.form.longidute,
|
|
|
|
|
latidute: this.form.latidute,
|
|
|
|
|
planTypeId: '1',
|
|
|
|
|
planTypeName: '预案01'
|
|
|
|
|
},
|
|
|
|
|
success: (data) => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '成功'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.log('表单错误信息:', err);
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: err
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//图片选择
|
|
|
|
|
chooseImg() {
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
count: 6, //默认9
|
|
|
|
|
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
|
|
|
|
|
sourceType: ['album'], //从相册选择
|
|
|
|
|
success: (res) => {
|
|
|
|
|
console.log(res.tempFilePaths);
|
|
|
|
|
this.photoList = this.photoList.concat(res.tempFilePaths)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//图片预览
|
|
|
|
|
previewImg(url) {
|
|
|
|
|
uni.previewImage({
|
|
|
|
|
urls: [url],
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</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;
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 80upx;
|
|
|
|
|
height: 40upx;
|
|
|
|
|
border-radius: 20upx;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
margin-right: 10upx;
|
|
|
|
|
|
|
|
|
|
.tab-btn-item {
|
|
|
|
|
float: right;
|
|
|
|
|
width: 36upx;
|
|
|
|
|
height: 36upx;
|
|
|
|
|
border-radius: 18upx;
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
margin: 2upx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background-color: #338AF8;
|
|
|
|
|
|
|
|
|
|
.tab-btn-item {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.photo-list{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
.img{
|
|
|
|
|
width: 120upx;
|
|
|
|
|
height: 120upx;
|
|
|
|
|
border-radius: 20upx;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
margin: 10upx;
|
|
|
|
|
}
|
|
|
|
|
.choose-img-btn{
|
|
|
|
|
width: 120upx;
|
|
|
|
|
height: 120upx;
|
|
|
|
|
border-radius: 20upx;
|
|
|
|
|
margin: 10upx;
|
|
|
|
|
background: #F6F8FA url(@/static/upload-icon.png) center 23upx no-repeat;
|
|
|
|
|
background-size: 44upx 44upx;
|
|
|
|
|
.txt{
|
|
|
|
|
color: #EE9070;
|
|
|
|
|
line-height: 33upx;
|
|
|
|
|
font-size: 24upx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
margin-top: 76upx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|