123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <view class="check">
- <uni-forms ref="form" :model="datainfo">
- <view class="cbox">
- <view class="patlist">
- <view class="pattop flexc">
- <image :src="home" class="imgs"></image>
- <view class="tit">幸福小区1栋2单元电梯间</view>
- <view class="flex1"></view>
- </view>
- <view class="patlistr">
- <view class="clist"><view class="tit">巡检类型</view>:设备维修</view>
- <view class="clist"><view class="tit">巡检时间</view>:2024-11-27 10:00</view>
- <view class="clist"><view class="tit">巡检路线</view>:幸福小区1号楼1-2单元</view>
- <view class="clist"><view class="tit">巡检人</view>:刘兵琦</view>
- </view>
- </view>
- </view>
- <view class="cbox" style="padding-bottom: 98rpx;">
- <view class="chmain">
- <uni-forms-item label="巡检结果" name="phonenumber">
- <picker range-key='text' :value="syqxidx" :range="sexs" @change='bindDateChange'>
- <view class="flexc">
- <view class="flex1 txr f13" :class="datainfo.iszc?'co27':'coa'">{{datainfo.iszc?'是':'请选择是否正常'}}</view>
- <view class="rimg"><image :src="rimg"></image></view>
- </view>
- </picker>
- </uni-forms-item>
- <uni-easyinput maxlength='-1' type="textarea" autoHeight v-model="datainfo.companyIntroduction" :inputBorder='false' placeholder="可详细描述巡检结果…" />
- <view class="voice mb20">
- <view class="flexc">
- <image :src="voice"></image>
- 语音输入
- </view>
- </view>
- <!-- 图片 -->
- <view class="imgs">
- <view class="img" @click="getPreview">
- <image :src="photo" class="pico"></image>
- <image :src="del" class="del" @click="getDelFn"></image>
- </view>
- <view class="img" @click="getPreview">
- <image :src="photo" class="pico"></image>
- <image :src="del" class="del" @click="getDelFn"></image>
- </view>
- <view class="img" @click="getPreview">
- <image :src="photo" class="pico"></image>
- <image :src="del" class="del" @click="getDelFn"></image>
- </view>
- <view class="img" @click="getPreview">
- <image :src="photo" class="pico"></image>
- <image :src="del" class="del" @click="getDelFn"></image>
- </view>
- <view class="addbox" @click="getaddImage">
- <image :src="photo" class="pico"></image>
- <view>添加图片</view>
- </view>
- </view>
- </view>
- <view class="pdlr12 mt63">
- <view class="rhbtn" @click="getNext">提交信息</view>
- </view>
- </view>
- </uni-forms>
-
- <loading></loading>
- </view>
- </template>
- <script>
- import config from '@/config'
- import {checkPermi,checkRole} from "@/utils/permission"; // 权限判断函数
- import {uploadmore} from '@/utils/common.js'
- export default {
- components: {},
- data() {
- return {
- voice: require('@/work/static/service/voice.png'),
- home:require("@/work/static/service/home.png"),
- photo:require("@/work/static/service/photo.png"),
- del:require('@/work/static/car/del.png'),
- rimg: require('@/work/static/people/rimg.png'),
- baseUrl: config.baseUrl,
- checkflag:true,
- datainfo: {
- sex:0,
- },
- syqxidx:'',
- sexs: [{
- text: '男',
- value: 0
- }, {
- text: '女',
- value: 1
- }],
- }
- },
- onLoad: function() {
- },
- methods: {
- checkPermi,
- checkRole,
- bindDateChange(e){
- var val=e.detail.value;
- // this.datainfo.applicationBank=this.sdyhlist[val].value;
- // this.applicationBank=this.sdyhlist[val].label;
- },
- getPreview(idx,arr) {
- var newArr=[];
- arr.forEach(ite=>{
- var ds=this.baseUrl+ite
- newArr.push(ds)
- })
- uni.previewImage({
- urls: newArr,
- current:idx,
- success: function(data) {},
- fail: function(err) {}
- });
- },
- getDelFn(){
- var that=this;
- uni.showModal({
- title: '确认删除',
- content: "是否确认删除",
- cancelText: '取消',
- confirmText: '确认',
- success: function(res) {
- if (res.confirm) {
- // that.filelist.splice(idx,1)
- } else if (res.cancel) {
- }
- }
- });
- },
- getaddImage(e){
- let that = this;
- // var rs=['D:\\idcard.png']
- // if(rs&&rs.length>0){
- // var obj={
- // type:e,
- // // url:baseUrl+rs.join(',')
- // url:rs.join(',')
- // }
- // that.getOcrIdCard(obj)
- // }
- // return
- let file =[],count=9
- uni.chooseImage({
- count: 1,
- success:function(res){
- let img= res.tempFilePaths;
- if(img.length + file.length > count){
- uni.showToast({
- title: '最多上传'+count+'张图片',
- icon: 'none',
- duration: 2000
- })
- }else{
- let imglen = res.tempFilePaths.length;
- var fuwufile = [];
- uploadmore('/common/upload',img,0,0,0,imglen,fuwufile,function(rs){
- var resurl=rs[0];
- // if(e=='front'){
- // that.datainfo.front=resurl.fileName;
- // }else{
- // that.datainfo.back=resurl.fileName;
- // }
- })
- }
- }
- });
- },
- }
- }
- </script>
- <style>
- page{background: #F3F3F0;}
- </style>
- <style lang="scss" scoped>
- .check /deep/ .uni-forms-item{min-height: 106rpx;box-sizing: border-box;display: flex;align-items: center;margin-bottom: 0;border-bottom: 2rpx solid #E6E6E6;padding:10rpx 0;}
- .check .cbox /deep/ .uni-forms-item:last-child{border: none;}
- .check /deep/ .uni-forms-item__label{font-weight: bold;font-size: 26rpx;color: #222327;flex: 0 0 auto;width: auto !important;}
- .check /deep/ .uni-easyinput{flex: 1;text-align: left;font-size: 26rpx;color: #222327;padding-left: 12rpx;min-height: 200rpx;}
- .check /deep/ .uni-easyinput__content-textarea{min-height: 40rpx;font-size: 26rpx;}
- .check /deep/ .uni-easyinput__placeholder-class{font-size: 26rpx;color: #AAAAAA;}
- .check /deep/ .uni-input-input{font-size: 26rpx;}
- .check /deep/ .uni-textarea-textarea{font-size: 26rpx;}
- .check /deep/ .is-disabled{color: #222327;background-color: #ffffff !important;}
- .check /deep/ .uni-data-checklist .checklist-group .checklist-box{margin:10rpx 8rpx 10rpx 16rpx;}
- .check /deep/ .uni-data-checklist{flex: 0 0 auto;}
- .check{min-height: 100vh;padding: 20rpx 18rpx 24rpx;box-sizing: border-box;}
- .cbox{background: #FFFFFF;border-radius: 20rpx;flex: 1;margin-bottom: 24rpx;
- .chmain{padding: 0 32rpx;
- .rimg{width: 16rpx;height: 28rpx;flex: 0 0 auto;margin-left: 20rpx;
- image{width: 100%;height: 100%;}
- }
- }
- .voice{font-weight: 500;display: flex;justify-content:flex-end;align-items: center;margin-top: 40rpx;
- font-size: 24rpx;
- color: #45CB99;
- image{width: 24rpx;height: 24rpx;margin-right: 8rpx;}
- }
- .imgs{display: flex;align-items: center;flex-wrap: wrap;
- .img{width: 142rpx;height:142rpx;border-radius: 20rpx;margin: 0 26rpx 20rpx 0;position: relative;
- &:nth-of-type(4n){margin-right: 0;}
- }
- .pico{width: 100%;height: 100%;border-radius: 20rpx;}
- .del{width: 24rpx;height: 24rpx;position: absolute;right: 0;top: 0;}
- .addbox{background: #F0F0F0;border-radius: 20rpx;display: flex;align-items: center;flex-direction: column;width: 142rpx;height:142rpx;justify-content: center;margin-bottom: 20rpx;
- image{width: 48rpx;height: 42rpx;margin-bottom: 12rpx;}
- view{font-weight: 500;font-size: 24rpx;color: #666666;}
- }
- }
- }
- .patlist{background: #FFFFFF;border-radius: 20rpx;margin-bottom: 24rpx;padding: 0 24rpx 30rpx;
- .pattop{padding:22rpx 30rpx;margin-bottom: 2rpx;
- .imgs{width: 28rpx;height: 28rpx;margin-right: 12rpx;}
- .tit{font-size: 30rpx;color: #272727;font-weight: bold;margin-right: 14rpx;}
- .txt{font-weight: 500;font-size:24rpx;
- &.ca{color: #3565ED;}
- &.cb{color: #FE5A0E;}
- &.cc{color: #28C529;}
- &.cd{color: #FF6969;}
- }
- }
- .patlistr{background: #EFF4FF;border-radius: 20rpx;padding: 20rpx 32rpx;
- .clist{font-weight: 500;font-size: 26rpx;color: #272727;display: flex;line-height: 50rpx;
- .tit{font-size: 26rpx;flex: 0 0 auto;min-width: 108rpx;text-align-last: justify;font-weight: bold;}
- }
- }
- }
- </style>
|