223 lines
7.6 KiB
Vue
223 lines
7.6 KiB
Vue
<template>
|
|
<Cn-page :loading="loading">
|
|
<view slot="body">
|
|
<view class="new">
|
|
<view class="content">
|
|
<uni-forms :label-width="80">
|
|
<uni-forms-item label="工程名称">
|
|
<uni-easyinput v-model="formData.engineeringName" placeholder="请输入项目名称" @click.native="showDrawer" :clearable="false" />
|
|
</uni-forms-item>
|
|
<uni-forms-item label="项目名称">
|
|
<uni-easyinput v-model="formData.name" placeholder="请输入项目名称" />
|
|
</uni-forms-item>
|
|
<!-- <uni-forms-item label="项目类别">
|
|
<uni-data-select v-model="formData.projectType" :localdata="TypeRange"></uni-data-select>
|
|
</uni-forms-item> -->
|
|
<uni-forms-item label="区域">
|
|
<view style="display: flex">
|
|
<uni-easyinput
|
|
:clearable="false"
|
|
type="textarea"
|
|
autoHeight
|
|
v-model="formData.area"
|
|
placeholder="请输入区域信息"
|
|
/>
|
|
<uni-icons type="location" color="#007aff" size="26" class="ml20" @click="chooseLocation"></uni-icons>
|
|
</view>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="描述">
|
|
<uni-easyinput type="textarea" autoHeight v-model="formData.description" placeholder="请输入项目描述" />
|
|
</uni-forms-item>
|
|
<uni-file-picker
|
|
v-model="formData.files"
|
|
title="请上传拓扑图"
|
|
:sourceType="['album']"
|
|
@select="select"
|
|
></uni-file-picker>
|
|
</uni-forms>
|
|
</view>
|
|
<view class="btn-wrap">
|
|
<view class="btn-wrap-item" @click="submit"> 提交 </view>
|
|
</view>
|
|
<uni-drawer ref="showRight" mode="right" :mask-click="false" :width="375">
|
|
<uni-indexed-list :options="gcListFilter" :showSelect="false" @click="closeDrawer"></uni-indexed-list>
|
|
</uni-drawer>
|
|
</view>
|
|
</view>
|
|
</Cn-page>
|
|
</template>
|
|
<script>
|
|
import { pinyin } from 'pinyin-pro'
|
|
import { addAppProject } from '../../common/api/project'
|
|
import { queryEngineering } from '@/common/api/gc.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
formData: {
|
|
engineeringId: '',
|
|
engineeringName: '',
|
|
area: '',
|
|
files: [],
|
|
description: '',
|
|
projectType: '1',
|
|
name: '',
|
|
lat: '2',
|
|
lng: '3',
|
|
},
|
|
TypeRange: [
|
|
{
|
|
text: '监测',
|
|
value: '1',
|
|
},
|
|
{
|
|
text: '用能',
|
|
value: '2',
|
|
},
|
|
],
|
|
gcList: [],
|
|
}
|
|
},
|
|
computed: {
|
|
gcListFilter() {
|
|
let result = []
|
|
this.gcList.forEach((item) => {
|
|
let arr = pinyin(item.name[0], { toneType: 'none', type: 'array' })
|
|
let letter = arr[0][0].toUpperCase()
|
|
console.log(letter)
|
|
let index = result.findIndex((item) => item.letter === letter)
|
|
if (index === -1) {
|
|
result.push({
|
|
letter,
|
|
data: [item.name],
|
|
})
|
|
} else {
|
|
result[index].data.push(item.name)
|
|
}
|
|
})
|
|
return result
|
|
},
|
|
},
|
|
onLoad() {
|
|
uni.getLocation({
|
|
type: 'wgs84',
|
|
success: function (res) {
|
|
console.log(res)
|
|
console.log('当前位置的经度:' + res.longitude)
|
|
console.log('当前位置的纬度:' + res.latitude)
|
|
},
|
|
})
|
|
queryEngineering().then((res) => {
|
|
this.gcList = res.data
|
|
})
|
|
},
|
|
methods: {
|
|
showDrawer() {
|
|
this.$refs.showRight.open()
|
|
},
|
|
closeDrawer(e) {
|
|
console.log(e)
|
|
this.formData.engineeringName = e.item.name
|
|
this.formData.engineeringId = this.gcList.find((item) => item.name === e.item.name).id
|
|
this.$refs.showRight.close()
|
|
},
|
|
select(e) {
|
|
console.log(e)
|
|
console.log(this.formData.files)
|
|
this.formData.files = this.formData.files.concat(e.tempFiles)
|
|
},
|
|
chooseLocation() {
|
|
uni.chooseLocation({
|
|
success: function (res) {
|
|
this.address = res.name
|
|
console.log('位置名称:' + res.name)
|
|
console.log('详细地址:' + res.address)
|
|
console.log('纬度:' + res.latitude)
|
|
console.log('经度:' + res.longitude)
|
|
},
|
|
})
|
|
},
|
|
async submit() {
|
|
console.log(this.formData)
|
|
if (!this.formData.name) {
|
|
this.$util.toast('请输入项目名称')
|
|
return
|
|
}
|
|
if (!this.formData.projectType) {
|
|
this.$util.toast('请选择项目类别')
|
|
return
|
|
}
|
|
if (!this.formData.area) {
|
|
this.$util.toast('请输入区域信息')
|
|
return
|
|
}
|
|
if (!this.formData.description) {
|
|
this.$util.toast('请输入项目描述')
|
|
return
|
|
}
|
|
if (!this.formData.files.length) {
|
|
this.$util.toast('请上传拓扑图')
|
|
return
|
|
}
|
|
let arr = []
|
|
for (let i = 0; i < this.formData.files.length; i++) {
|
|
let item = this.formData.files[i]
|
|
arr.push({
|
|
name: 'files',
|
|
url: item.url,
|
|
})
|
|
}
|
|
let data = JSON.parse(JSON.stringify(this.formData))
|
|
delete data.files
|
|
addAppProject(data, arr).then((res) => {
|
|
console.log(res)
|
|
this.$util.toast('项目创建成功')
|
|
setTimeout(() => {
|
|
uni.navigateBack({ delta: 1 })
|
|
}, 1500);
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
.new {
|
|
padding: 34rpx;
|
|
|
|
.content {
|
|
.content-des {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
margin-bottom: 20rpx;
|
|
padding: 34rpx;
|
|
background: $uni-theme-white;
|
|
border-radius: 12rpx;
|
|
}
|
|
|
|
.btn-wrap {
|
|
margin-top: 40rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.btn-wrap-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
background: $uni-theme-blue;
|
|
color: #fff;
|
|
height: 80rpx;
|
|
border-radius: 12rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
/deep/ .uni-drawer__content {
|
|
width: 100vw !important;
|
|
}
|
|
</style>
|