123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <template>
- <view>
- <image src="https://cczdsz.cn/app/images/background-from.png" class="background"></image>
- <view class="project-content">
- <u-form :model="form" :rules="rules" ref="form">
- <u-form-item label="路段名称" borderBottom ref="item1" labelWidth="140">
- <u-input v-model="form.sectionName" borderBottom @click="showbuilding= true "
- placeholder="请输入路段名称"></u-input>
- </u-form-item>
- <u-form-item label="抽检米数" labelWidth="140" borderBottom ref="item1">
- <u-input v-model="form.samplingMeterCount" borderBottom @click="showbuilding= true "
- placeholder="请输入抽检米数" @input="checksamplingMeterCount()"></u-input>
- </u-form-item>
- <u-form-item label="发现问题" labelWidth="140" borderBottom ref="item1">
- <u-radio-group v-model="form.findProblem" >
- <u-radio @change="confirm"
- v-for="(item, index) in typelist.find_problem"
- :key="index" :name="item.dictValue">
- {{item.dictLabel}}
- </u-radio>
- </u-radio-group>
- </u-form-item>
- <!-- <u-form-item label="发现时间" labelWidth="140" borderBottom ref="item1">
- <u-input v-model="form.findTime" borderBottom placeholder="请选择接警时间" disabled
- @click="showtime=true "></u-input>
- <u-picker v-model="showtime" mode="time" :params="params" @confirm="time()"></u-picker>
- </u-form-item> -->
- <u-form-item borderBottom ref="item1">
- <view>巡检照片</view>
- <u-input v-model="WarningColumnInformation" disabled placeholder="请上传巡检照片"></u-input>
- <view class="" style="display: flex; flex-wrap: wrap; margin: 0 55rpx;">
- <image src="https://cczdsz.cn/app/images/chooseimg.png" mode=""
- style="width: 190rpx; height: 190rpx; margin: 0 12rpx; " @click="choose()" >
- </image>
- <view v-for="(item,index) in imgymxs" :key="index" style="position: relative;">
- <view v-if="item.type == 'image'">
- <image :src="item.url" mode="" style="width: 190rpx; height: 190rpx; margin: 0 20rpx;"
- @click="showPhoto(index)">
- </image>
- </view>
- <view v-else>
- <video :src="item" style="width: 190rpx; height: 190rpx; margin: 0 20rpx;"></video>
- </view>
- <view @click="remove(index)"
- style="position: absolute; top: 0; right: 14rpx; border-radius: 50%; background-color: #FF0000;">
- <u-icon name="close" color="#FFFFFF" size="35" ></u-icon>
- </view>
- </view>
- </view>
- </u-form-item>
- <u-form-item borderBottom ref="item1">
- <view>备注</view>
- <u-input v-model="form.remark" type="textarea" placeholder="请输入备注" ></u-input>
- </u-form-item>
- </u-form>
- <u-button style="background: #2d95f4;color: #fff;border-radius: 20rpx;" @click="save()"
- type='primary' v-if="type!=1">确认上传</u-button>
- <u-button style="background: #2d95f4;color: #fff;border-radius: 20rpx;" @click="update()"
- type='primary ' v-else>确认修改</u-button>
- </view>
- </view>
- </template>
- <script>
- import service from '@/api/index.js'
- export default {
- data() {
- return {
- repairType: [{
- label: '施工问题',
- value: 1
- }, {
- label: '施工问题',
- value: 2
- }, ],
- showrepairType: false,
- action: this.$HTTP.webUrl + `/obs`,
- headers: {
- MAuthorization: "wxBearer " + uni.getStorageSync('token')
- },
- url: [],
- params: {
- year: true,
- month: true,
- day: true,
- hour: true,
- minute: true,
- second: false
- },
- uploading: false,
- showtime:false,
- imgArr: [],
- imgymxs: [],
- progress: 0, //图片或视频上传百分比
- form: {
- findProblem:1
- },
- typelist: [],
- causesOfFamageLabel: null,
- dictlist: ['find_problem'],
- buildingName: null,
- unit: null,
- unitName: null,
- showbuilding: false,
- showunit: false,
- buildingList: [],
- unitList: [],
- type: 2,
- id: null,
- community: null,
- createBy:null
- }
- },
- onLoad(e) {
- // this.building = e.building
- // this.buildingName = e.buildingName
- // this.community = e.community
- // this.unitName = e.unitName
- // this.unit = e.unit
- this.id = e.id
- this.type = e.type
- console.log(e)
- this.getdictsysinfo()
- uni.setNavigationBarTitle({
- title: '路段巡查'
- });
- uni.setNavigationBarColor({
- frontColor: '#ffffff',
- backgroundColor: '#2d95f4',
- })
- // if (this.type != 1) {
- // this.getBuildingList()
- // }
- this.getUserName()
- },
- methods: {
- time(e) {
- console.log(`${e.year}-${e.month}-${e.day} ${e.hour}:${e.minute}`)
- this.form.findTime = `${e.year}-${e.month}-${e.day} ${e.hour}:${e.minute}`
- },
- checksamplingMeterCount(e) {
- console.log(e)
- //正则表达试
- e = (e.match(/^\d*(\.?\d{0,10})/g)[0]) || null
- //重新赋值给input
- this.$nextTick(() => {
- this.form.samplingMeterCount= e
- })
- },
- getUserName(){
- service.getUserName().then(res=>{
- this.userId=res.id
- this.createBy=res.name
- })
- },
- // showPhoto(index) {
- // uni.previewImage({
- // current: index,
- // urls: this.imgArr,
- // })
- // },
- // showPhotos(index) {
- // uni.previewImage({
- // current: index,
- // urls: this.photo,
- // })
- // },
- // buildingconfirm(e) {
- // this.buildingName = e[0].label
- // this.building = e[0].value
- // console.log(this.building)
- // //this.getUnitList(e[0].value)
- // },
- // unitconfirm(e) {
- // this.unitName = e[0].label
- // this.unit = e[0].value
- // },
- // getBuildingList() {
- // const _this = this
- // service.getBuildingList({
- // areaId: this.community
- // }).then(res => {
- // _this.buildingList = res
- // })
- // },
- // getUnitList(building) {
- // const _this = this
- // service.getUnitList({
- // buildingId: building
- // }).then(res => {
- // _this.unitList = res
- // })
- // },
- save() {
- let _this = this
- this.form.photoList = this.imgArr
- // if(this.building==null)
- // {
- // uni.showToast({
- // title: '请选择楼栋',
- // icon: 'none'
- // })
- // return
- // }
- if(this.imgArr.length==0)
- {
- uni.showToast({
- title: '请上传图片或视频!',
- icon: 'none'
- })
- return
- }
- // this.form.buildingId = this.building
- // this.form.communityId=this.community
- this.form.userId=this.userId
- this.form.createBy=this.userId
- service.saveroadSectionInspection(this.form).then(res => {
- console.log(res)
- _this.$UTILS.showPrompt('上报成功!')
- // setTimeout(() => {
- // console.log('跳')
- // uni.switchTab({
- // url: '/pages/index/index'
- // })
- // }, 2000)
- this.form={findProblem:1}
- // this.buildingName=''
- this.imgArr=[]
- this.imgymxs=[]
- })
- },
- update() {
- let _this = this
- this.form.pressureStatus = null
- this.form.photoList = this.imgArr
- // if(this.building==null)
- // {
- // uni.showToast({
- // title: '请选择楼栋',
- // icon: 'none'
- // })
- // return
- // }
- if(this.imgArr.length==0)
- {
- uni.showToast({
- title: '请上传图片或视频!',
- icon: 'none'
- })
- return
- }
- // this.form.buildingId = this.building
- // this.form.communityId=this.community
- this.form.userId=this.userId
- this.form.createBy=this.userId
- service.updateroadSectionInspection(this.form).then(res => {
- console.log(res)
- _this.$UTILS.showPrompt('修改成功!')
- // setTimeout(() => {
- // console.log('跳')
- // uni.switchTab({
- // url: '/pages/index/index'
- // })
- // }, 2000)
- //this.form={findProblem:1}
- // this.buildingName=''
- // this.imgArr=[]
- // this.imgymxs=[]
- })
- },
- getdictsysinfo() {
- let _this = this
- service.getDictInfoList({
- type: this.dictlist
- }).then(res => {
- if (this.type == 1) {
- let _this = this
- console.log(this.id)
- service.getroadSectionInspection(this.id).then(res => {
- // console.log(_this.typelist)
- // _this.buildingName = res.buildingName
- // _this.unitName = res.unitName
- // let list = []
- // list = _this.typelist.find_problem
- // list.forEach((item) => {
- // if (item.dictValue == res.findProblem) {
- // _this.causesOfFamageLabel = item.dictLabel
- // }
- // })
- if (null != res.photoList) {
- res.photoList.forEach(item => {
- let url = {}
- url.url = item
- url.type = 'image'
- this.imgymxs.push(url)
- this.imgArr.push(item)
- })
- }
- this.form = res
- })
- }
- _this.typelist = res
- console.log(res)
- })
- },
- confirm(e) {
- this.form.findProblem =e
- },
- choose() {
- let _this = this;
- uni.showActionSheet({
- title: '上传',
- itemList: ['图片', '视频'],
- success: (res) => {
- // console.log(res)
- if (res.tapIndex == 0) {
- this.chooseimage()
- } else {
- this.choosevideo()
- }
- }
- })
- },
- chooseimage() {
- console.log('图片')
- let _this = this;
- uni.chooseImage({
- sourceType: ['camera'],
- success(resp) {
- console.log('res--uni.chooseMedia', resp);
- resp.tempFiles.forEach((item, index) => {
- const task = uni.uploadFile({
- url: _this.$HTTP.webUrl + `/obs`,
- filePath: item.path,
- name: 'file',
- formData: {},
- header: _this.headers,
- success: res => {
- // 判断是否json字符串,将其转为json格式
- let data = _this.$u.test.jsonString(res.data) ? JSON.parse(
- res.data) : res.data;
- if (![200, 201, 204].includes(res.statusCode)) {
- // this.uploadError(index, data);
- _this.$UTILS.showPrompt('选取失败!')
- } else {
- // 上传成功
- // this.lists[index].response = data;
- // this.lists[index].progress = 100;
- // this.lists[index].error = false;
- // this.$emit('on-success', data, index, this.lists, this
- // .index);
- if (_this.progress === 100) {
- // console.log('_this.progress', _this.progress)
- // console.log('data----', data)
- // console.log('res--', res)
- _this.imgymxs.push({
- url: data.data.url,
- type: 'image'
- })
- _this.imgArr.push(data.data.url)
- // console.log('imgArr', _this.imgArr)
- _this.$UTILS.showPrompt('选取成功!')
- }
- }
- },
- fail: e => {
- _this.$UTILS.showPrompt('选取失败!')
- this.uploadError(index, e);
- },
- complete: res => {
- _this.uploading = false;
- // _this.uploadFile(index + 1);
- // this.$emit('on-change', res, index, this.lists, this
- // .index);
- }
- });
- task.onProgressUpdate(res => {
- // if (res.progress > 0) {
- // this.lists[index].progress = res.progress;
- // this.$emit('on-progress', res, index, this.lists, this.index);
- // }
- _this.progress = res.progress;
- console.log('onProgressUpdate', res)
- uni.showLoading({
- title: '选取中'
- })
- });
- })
- },
- })
- },
- choosevideo() {
- let _this = this;
- console.log('视频')
- uni.chooseVideo({
- sourceType: ['camera'],
- maxDuration: 30,
- success(resp) {
- const task = uni.uploadFile({
- url: _this.$HTTP.webUrl + `/obs`,
- filePath: resp.tempFilePath,
- name: 'file',
- formData: {},
- header: _this.headers,
- success: res => {
- // 判断是否json字符串,将其转为json格式
- let data = _this.$u.test.jsonString(res.data) ? JSON.parse(res.data) :
- res.data;
- if (![200, 201, 204].includes(res.statusCode)) {
- this.uploadError(index, data);
- } else {
- // 上传成功
- // this.lists[index].response = data;
- // this.lists[index].progress = 100;
- // this.lists[index].error = false;
- // this.$emit('on-success', data, index, this.lists, this
- // .index);
- if (_this.progress === 100) {
- console.log('_this.progress', _this.progress)
- console.log('data----', data)
- console.log('res--', res)
- // _this.imgArr.push(data.data.url)
- _this.imgymxs.push({
- url: data.data.url,
- type: 'video'
- })
- _this.imgArr.push(data.data.url)
- console.log('imgArr', _this.imgArr)
- _this.$UTILS.showPrompt('选取成功!')
- }
- }
- },
- fail: e => {
- _this.$UTILS.showPrompt('选取失败!')
- this.uploadError(index, e);
- },
- complete: res => {
- uni.hideLoading();
- _this.uploading = false;
- // _this.uploadFile(index + 1);
- // this.$emit('on-change', res, index, this.lists, this
- // .index);
- }
- });
- task.onProgressUpdate(res => {
- // if (res.progress > 0) {
- // this.lists[index].progress = res.progress;
- // this.$emit('on-progress', res, index, this.lists, this.index);
- // }
- _this.progress = res.progress;
- console.log('onProgressUpdate', res)
- uni.showLoading({
- title: '选取中'
- })
- });
- },
- })
- },
- remove(index) {
- uni.showModal({
- title: '提示',
- content: '是否删除该图片或视频?',
- success: (res) => {
- if (res.confirm) {
- this.imgArr.splice(index, 1);
- this.imgymxs.splice(index, 1);
- console.log('this.imgarr', this.imgArr)
- }
- }
- })
- },
- }
- }
- </script>
- <style>
- .project-content {
- padding: 10rpx 20rpx;
- border-radius: 20rpx;
- background: #fff;
- width: 90%;
- margin: 0 auto;
- }
- .background {
- z-index: -1;
- position: fixed;
- width: 100%;
- height: 100%;
- background-size: 100% 100%;
- }
- </style>
|