12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016 |
- <template>
- <!-- 危险作业工程 -->
- <scroll-view>
- <view class="background">
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <view>
- 工程名称
- </view>
- <view v-if="this.isEmpty(this.projectObj.enginName)" style="margin-top: 10;"
- @click="pickerShow('name')">
- <span style="color: darkgray;">请选择工程</span>
- <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
- </view>
- <view v-else style="margin-top: 10;" @click="pickerShow('name')">
- <span style="color: black;">{{projectObj.enginName}}</span>
- <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
- </view>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <view>
- 工程地点
- </view>
- <view style="margin-top: 10;">
- <span style="color: black;">{{projectObj.enginAddre}}</span>
- </view>
- </view>
- </view>
- <view class="uni-list">
- <view class="container">
- <view>
- 作业基本信息
- </view>
- <view style="margin-top: 10;">
- <span style="color: black;">{{projectObj.basicInformation}}</span>
- </view>
- </view>
- </view>
- </view>
- <view class="background">
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <view>
- 工程时间
- </view>
- <view v-if="isEmpty(this.projectTime)" @click="openDatetimePicker">
- <span style="color: darkgray;">请选择工程时间</span>
- <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
- </view>
- <view v-else @click="openDatetimePicker">
- <span style="color: black;">{{projectTime}}</span>
- <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
- </view>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管径</text>
- <input class="uni-input" type="digit" v-model="projectObj.pipeDiameter" placeholder="请输入管径"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管材</text>
- <input class="uni-input" type="text" v-model="projectObj.tubularProduct" placeholder="请输入管材"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>是否存在套管</text>
- <view>
- <span style="color: black;">{{bushingText}}</span>
- <switch v-if="isBushing" checked style="transform: scale(0.6,0.6);"
- @change="switchChangePipe" />
- <switch v-else style="transform: scale(0.6,0.6);" @change="switchChangePipe" />
- </view>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管道压力</text>
- <input class="uni-input" type="digit" v-model="projectObj.pipePressure" placeholder="请输入管道压力"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>气源方向</text>
- <input class="uni-input" type="text" v-model="projectObj.gasSourceDirection" placeholder="请输入气源方向"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>作业位置</text>
- <input class="uni-input" type="text" v-model="projectObj.taskPosition" placeholder="请输入作业位置"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>作业相关阀门位置</text>
- <input class="uni-input" type="text" v-model="projectObj.valvePosition" placeholder="请输入作业相关阀门位置"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>压力报告</text>
- <input class="uni-input" type="text" v-model="projectObj.stressReport" placeholder="请输入压力报告"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>监理旁站记录</text>
- <input class="uni-input" type="text" v-model="projectObj.supervisionRecord" placeholder="请输入监理旁站记录"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>工作联系单</text>
- <input class="uni-input" type="text" v-model="projectObj.workContactForm" placeholder="请输入工作联系单"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>巡线确认单</text>
- <input class="uni-input" type="text" v-model="projectObj.linePatrolConfirmationForm"
- placeholder="请输入巡线确认单" maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>危险作业坑大小(长,宽,深)</text>
- <input class="uni-input" type="digit" v-model="projectObj.hazardousWorkPitsLong" placeholder="请输入长"
- maxlength="9"
- style="margin-left: 10px;text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
- <input class="uni-input" type="digit" v-model="projectObj.hazardousWorkPitsWide" placeholder="请输入宽"
- maxlength="9"
- style="margin-left: 10px;text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
- <input class="uni-input" type="digit" v-model="projectObj.hazardousWorkPitsDeep" placeholder="请输入深"
- maxlength="9"
- style="margin-left: 10px;text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>是否需要支护</text>
- <view>
- <span style="color: black;">{{needSupportText}}</span>
- <switch v-if="isNeedSupport" checked style="transform: scale(0.6,0.6);"
- @change="switchChangeSupport" />
- <switch v-else style="transform: scale(0.6,0.6);" @change="switchChangeSupport" />
- </view>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>作业坑内其他管道情况</text>
- <input class="uni-input" type="text" v-model="projectObj.otherPipelineConditionsWorkPit"
- placeholder="请输入作业坑内其他管道情况" maxlength="100"
- style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>现场负责人</text>
- <input class="uni-input" type="text" v-model="projectObj.siteHead" placeholder="请输入现场负责人"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>现场负责人联系方式</text>
- <input class="uni-input" type="number" v-model="projectObj.siteHeadPhone" placeholder="请输入现场负责人联系方式"
- maxlength="11" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>作业人员信息</text>
- <input class="uni-input" type="text" v-model="projectObj.operatorInformation"
- placeholder="请输入作业人员信息" maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>检口</text>
- <input class="uni-input" type="text" v-model="projectObj.inspectionPort" placeholder="请输入检口"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管道刷油</text>
- <input class="uni-input" type="text" v-model="projectObj.pipelinePainting" placeholder="请输入管道刷油"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管道防腐</text>
- <input class="uni-input" type="text" v-model="projectObj.pipelineCorrosionProtection"
- placeholder="请输入管道防腐" maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管道支护</text>
- <input class="uni-input" type="text" v-model="projectObj.pipelineSupport" placeholder="请输入管道支护"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>砌筑阀门井</text>
- <input class="uni-input" type="text" v-model="projectObj.masonryValveWell" placeholder="请输入砌筑阀门井"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>保护井</text>
- <input class="uni-input" type="text" v-model="projectObj.protectionWell" placeholder="请输入保护井"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>管件保护井砌筑</text>
- <input class="uni-input" type="text" v-model="projectObj.pipeProtectionWelMasonry"
- placeholder="请输入管件保护井砌筑" maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>回填</text>
- <input class="uni-input" type="text" v-model="projectObj.backfill" placeholder="请输入回填"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>夯实</text>
- <input class="uni-input" type="text" v-model="projectObj.tamp" placeholder="请输入夯实" maxlength="100"
- style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>平整场地</text>
- <input class="uni-input" type="text" v-model="projectObj.levelingTheSite" placeholder="请输入平整场地"
- maxlength="100" style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
- <text>备注</text>
- <input class="uni-input" type="text" v-model="projectObj.remark" placeholder="请输入备注" maxlength="100"
- style="margin-left: 10px;text-align: right;"></input>
- </view>
- </view>
- <view class="uni-list">
- <view class="align-items" style="margin-bottom: 20px;">
- <view class="container" style="color: #b2b2b2;">*请上传文件</view>
- <view style="display: flex; flex-wrap: wrap;margin-top: 10px; margin-left: 10px;">
- <!-- -->
- <image :src="loadImgSrc('updateimg.png')" mode=""
- style="width: 200rpx; height: 150rpx; margin: 0 12rpx; " @click="chooseFile()"></image>
- <view v-for="(item,index) in fileArr" :key="index" style="position: relative;">
- <view style="width: 100rpx; height: 100rpx; margin: 0 12rpx;">
- <image
- v-if="item.picUrl.substring(item.picUrl.length - 3) == 'png' || item.picUrl.substring(item.picUrl.length - 3) == 'jpg' || item.picUrl.substring(item.picUrl.length - 4) == 'jpeg' "
- :src="item.picUrl" @click="this.showPhoto(imgList.indexOf(item.picUrl),imgList)"
- style="width: 100rpx; height: 100rpx; margin: 0 12rpx;">
- </image>
- <video v-else-if="item.picUrl.substring(item.picUrl.length - 3) == 'mp4'"
- :src="item.picUrl" style="width: 100rpx; height: 100rpx; margin: 0 12rpx;">
- </video>
- <text v-else style="width: 100rpx; height: 100rpx; margin: 0 12rpx;"
- @click="chooseModel(item.picUrl,item.fileName)">
- {{item.fileName}}
- </text>
- </view>
- <view v-if="isShowRemoveFile(item)" @click="removeFile(index)"
- style="position: absolute; top: 0; right: 14rpx; border-radius: 50%;">
- <image :src="loadImgSrc('icon_close.png')" style=" width: 15px; height: 15px;">
- </image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="action-btn">
- <button @click="submit" class="btn cu-btn block bg-blue lg round">提交</button>
- </view>
- <SelectPicker :list="rows" @change="projectListSelect" v-if="open" @close="close" titleKey="name"
- subtitleKey="id" v-model="name"></SelectPicker>
- <yt-dateTimePicker ref="myPicker" @submit="handleSubmit" :start-year="2024" :end-year="2099"
- :time-hide="[true, true, true, true, true, true]" :time-label="['年', '月', '日', '时', '分', '秒']" />
- <!-- 下载提示页面 -->
- <mypopup :show="show_loding" :popupText="popupText" :titleText="titleText" :cancelText="cancelText"
- :confirmText="confirmText" @close="cancel_loding" @confirm="confirm_loding">
- </mypopup>
- </scroll-view>
- </template>
- <script>
- import SelectPicker from '../../components/selectPicker/select_picker.vue'
- import {
- getToken
- } from '../../utils/auth';
- import {
- getDangerousWorkProjectList,
- getDangerousWorkProjectDetails,
- updateDangerousWorkProject
- } from '@/api/common'
- export default {
- components: {
- SelectPicker
- },
- data() {
- return {
- headers: {
- Authorization: "Bearer " + getToken()
- },
- isBushing: false,
- bushingText: "否",
- isNeedSupport: false,
- needSupportText: "否",
- file: [], // 附件
- pics: [], // 附件返回
- rows: [],
- open: false,
- projectObj: {},
- currentTime: "",
- fileArr: [],
- projectTime: "",
- imgList: [],
- popupText: '', //对话框内容
- titleText: '',
- cancelText: '',
- confirmText: '',
- show_loding: false,
- fileUrl: '', //点击的文件地址
- fileName: '', //点击的文件名称
- }
- },
- created() {
- this.currentTime = this.traversalTime(new Date().getTime()); //在data里定义变量-nowTime
- },
- methods: {
- isEmpty(str) {
- return (!str || 0 === str.length);
- },
- chooseModel(url, name) {
- this.cancelText = '复制';
- this.confirmText = "下载";
- this.titleText = "温馨提示"
- this.popupText = "下载或者复制链接";
- this.show_loding = true;
- this.fileName = name;
- this.fileUrl = url; //文件名称和下载地址赋值
- },
- //取消按钮
- cancel_loding() {
- let _this = this;
- _this.show_loding = false;
- if (!_this.isEmpty(_this.fileUrl)) {
- uni.setClipboardData({
- data: _this.fileUrl,
- success() {
- uni.showToast({
- title: '已复制' + _this.fileName + '地址成功 请在浏览器打开',
- icon: 'none'
- });
- },
- fail(e) {
- uni.showToast({
- title: '复制失败',
- icon: 'none'
- });
- }
- });
- }
- },
- //确定按钮
- confirm_loding() {
- this.show_loding = false;
- this.download(this.fileUrl, this.fileName);
- },
- getDownLoadFilePath() {
- let cachePath = `${uni.env.USER_DATA_PATH}/downloads`
- let fm = uni.getFileSystemManager()
- try {
- // 访问成功则存在
- fm.accessSync(cachePath)
- } catch (error) {
- // 不存在则新建
- fm.mkdirSync(cachePath, true)
- }
- return cachePath
- },
- download(url, name) {
- let savePath = this.getDownLoadFilePath();
- //var savePath = uni.env.USER_DATA_PATH + '/savePath'
- uni.downloadFile({
- url: url,
- success: response => {
- if (response.statusCode === 200) {
- uni.getFileSystemManager().saveFile({
- tempFilePath: response.tempFilePath,
- filePath: `${savePath}/${name}`,
- success: (resData) => {
- uni.showToast({
- title: '下载成功'
- })
- },
- fail: error => {}
- })
- }
- }
- })
- },
- showPhoto(index, list) {
- uni.previewImage({
- current: index,
- urls: list,
- })
- },
- pickerShow(e) {
- if (e == 'name') {
- this.open = true;
- let param = {};
- getDangerousWorkProjectList(param).then(res => {
- this.rows = res.data;
- })
- }
- },
- changeSelect(e) {
- },
- close() {
- this.open = false;
- },
- projectListSelect(item, index) {
- this.open = false;
- getDangerousWorkProjectDetails(item.id).then(res => {
- this.projectObj = res.data;
- this.projectTime = this.projectObj.enginTime;
- // if (this.isEmpty(this.projectTime)) {
- // this.projectTime = this.currentTime;
- // this.projectObj.enginTime = this.currentTime;
- // }
- this.isNeedSupport = this.projectObj.needSupport == "1";
- if (this.isNeedSupport) {
- this.needSupportText = "是";
- this.projectObj.needSupport = "1";
- } else {
- this.needSupportText = "否";
- this.projectObj.needSupport = "0";
- }
- this.isBushing = this.projectObj.casingPresent == "1";
- if (this.isBushing) {
- this.bushingText = "是";
- this.projectObj.casingPresent = "1";
- } else {
- this.bushingText = "否";
- this.projectObj.casingPresent = "0";
- }
- this.fileArr = this.projectObj.pics;
- for (let i = 0; i < this.fileArr.length; i++) {
- if (this.fileArr[i].picUrl.substring(this.fileArr[i].picUrl.length - 3) == 'png' || this
- .fileArr[i].picUrl.substring(this.fileArr[i].picUrl.length - 3) == 'jpg' ||
- this.fileArr[i].picUrl.substring(this.fileArr[i].picUrl.length - 4) ==
- 'jpeg') {
- this.imgList.push(this.fileArr[i].picUrl);
- }
- }
- })
- },
- switchChangePipe(e) {
- this.isBushing = e.detail.value;
- if (this.isBushing) {
- this.projectObj.casingPresent = "1";
- this.bushingText = "是";
- } else {
- this.projectObj.casingPresent = "0";
- this.bushingText = "否";
- }
- },
- switchChangeSupport(e) {
- this.isNeedSupport = e.detail.value;
- if (this.isNeedSupport) {
- this.projectObj.needSupport = "1";
- this.needSupportText = "是";
- } else {
- this.projectObj.needSupport = "0";
- this.needSupportText = "否";
- }
- },
- chooseFile() {
- if (this.isEmpty(this.projectObj.id)) {
- this.$modal.msg('请选择工程')
- return;
- }
- let _this = this;
- uni.chooseMessageFile({
- // sizeType: ['album', 'camera'],
- type: 'all',
- // extension: ['dwg', 'dwt', 'doc', 'docx', 'xls', 'xlsx', 'jpg', 'png', 'jpeg', 'mp4'],
- success(resp) {
- resp.tempFiles.forEach((item, index) => {
- const task = uni.uploadFile({
- url: _this.$HTTP + `/obs`,
- filePath: item.path,
- name: 'file',
- formData: {},
- header: _this.headers,
- success: res => {
- // 判断是否json字符串,将其转为json格式
- let data = JSON.parse(res.data);
- if (![200].includes(data.code)) {
- _this.$modal.msg(data.msg)
- } else {
- if (_this.progress === 100) {
- _this.fileArr.push({
- 'fileName': item
- .name,
- 'picUrl': data
- .data.url,
- })
- _this.$modal.msg('上传成功!')
- }
- }
- },
- fail: e => {
- _this.$modal.msg('上传失败!')
- //_this.uploadError(index, e);
- },
- complete: res => {
- uni.hideLoading();
- _this.uploading = false;
- }
- });
- task.onProgressUpdate(res => {
- _this.progress = res.progress;
- uni.showLoading({
- title: '上传中'
- })
- if (_this.progress != 100) {
- _this.loading = false
- } else {
- _this.loading = true
- }
- });
- })
- },
- })
- },
- isShowRemoveFile(item) {
- var isShow = item.createBy == this.$user.state.name;
- return isShow;
- },
- removeFile(index) {
- uni.showModal({
- title: '提示',
- content: '是否删除该文件?',
- success: (res) => {
- if (res.confirm) {
- this.fileArr.splice(index, 1)
- }
- }
- })
- },
- submit() {
- if (this.isEmpty(this.projectObj.pipeDiameter)) {
- this.$modal.msg('请输入管径')
- return;
- }
- if (this.isEmpty(this.projectObj.tubularProduct)) {
- this.$modal.msg('请输入管材')
- return;
- }
- if (this.isEmpty(this.projectObj.pipePressure)) {
- this.$modal.msg('请输入管道压力')
- return;
- }
- if (this.isEmpty(this.projectObj.gasSourceDirection)) {
- this.$modal.msg('请输入气源方向')
- return;
- }
- if (this.isEmpty(this.projectObj.taskPosition)) {
- this.$modal.msg('请输入作业位置')
- return;
- }
- if (this.isEmpty(this.projectObj.valvePosition)) {
- this.$modal.msg('请输入作业相关阀门位置')
- return;
- }
- if (this.isEmpty(this.projectObj.stressReport)) {
- this.$modal.msg('请输入压力报告')
- return;
- }
- if (this.isEmpty(this.projectObj.supervisionRecord)) {
- this.$modal.msg('请输入监理旁站记录')
- return;
- }
- if (this.isEmpty(this.projectObj.workContactForm)) {
- this.$modal.msg('请输入工作联系单')
- return;
- }
- if (this.isEmpty(this.projectObj.linePatrolConfirmationForm)) {
- this.$modal.msg('请输入巡线确认单')
- return;
- }
- if (this.isEmpty(this.projectObj.hazardousWorkPitsLong)) {
- this.$modal.msg('请输入危险作业坑长度')
- return;
- }
- if (this.isEmpty(this.projectObj.hazardousWorkPitsWide)) {
- this.$modal.msg('请输入危险作业坑宽度')
- return;
- }
- if (this.isEmpty(this.projectObj.hazardousWorkPitsDeep)) {
- this.$modal.msg('请输入危险作业坑深度')
- return;
- }
- if (this.isEmpty(this.projectObj.otherPipelineConditionsWorkPit)) {
- this.$modal.msg('请输入作业坑内其他管道情况')
- return;
- }
- if (this.isEmpty(this.projectObj.siteHead)) {
- this.$modal.msg('请输入现场负责人')
- return;
- }
- if (this.isEmpty(this.projectObj.siteHeadPhone)) {
- this.$modal.msg('请输入现场负责人联系方式')
- return;
- } else {
- if (!this.$validation.mobile(this.projectObj.siteHeadPhone)) {
- this.$modal.msg('请输入正确的联系方式');
- return;
- }
- }
- if (this.isEmpty(this.projectObj.operatorInformation)) {
- this.$modal.msg('请输入作业人员信息')
- return;
- }
- if (this.isEmpty(this.projectObj.inspectionPort)) {
- this.$modal.msg('请输入检口')
- return;
- }
- if (this.isEmpty(this.projectObj.pipelinePainting)) {
- this.$modal.msg('请输入管道刷油')
- return;
- }
- if (this.isEmpty(this.projectObj.pipelineCorrosionProtection)) {
- this.$modal.msg('请输入管道防腐')
- return;
- }
- if (this.isEmpty(this.projectObj.pipelineSupport)) {
- this.$modal.msg('请输入管道支护')
- return;
- }
- if (this.isEmpty(this.projectObj.masonryValveWell)) {
- this.$modal.msg('请输入砌筑阀门井')
- return;
- }
- if (this.isEmpty(this.projectObj.protectionWell)) {
- this.$modal.msg('请输入保护井')
- return;
- }
- if (this.isEmpty(this.projectObj.pipeProtectionWelMasonry)) {
- this.$modal.msg('请输入管件保护井砌筑')
- return;
- }
- if (this.isEmpty(this.projectObj.backfill)) {
- this.$modal.msg('请输入回填')
- return;
- }
- if (this.isEmpty(this.projectObj.tamp)) {
- this.$modal.msg('请输入夯实')
- return;
- }
- if (this.isEmpty(this.projectObj.levelingTheSite)) {
- this.$modal.msg('请输入平整场地')
- return;
- }
- if (this.isEmpty(this.projectObj.remark)) {
- this.$modal.msg('请输入备注')
- return;
- }
- if (this.fileArr.length <= 0) {
- this.$modal.msg('请选择附件')
- return;
- }
- this.projectObj.enginTime = this.projectTime;
- this.projectObj.pics = this.fileArr;
- uni.showLoading()
- updateDangerousWorkProject(this.projectObj).then(res => {
- uni.hideLoading()
- this.$modal.msg(res.msg);
- setTimeout(() => {
- uni.navigateBack();
- }, 1000);
- })
- },
- handleSubmit(e) {
- this.projectTime =
- `${e.year}-${e.month}-${e.day} ${e.hour}:${e.minute}:${e.second}`;
- this.projectObj.enginTime = this.projectTime;
- },
- // 打开picker
- openDatetimePicker() {
- if (this.isEmpty(this.projectObj.id)) {
- this.$modal.msg('请选择工程')
- } else {
- this.$refs.myPicker.show();
- }
- },
- addTimes(m) {
- return m < 10 ? '0' + m : m
- },
- //获取当前时间
- traversalTime(timestamp) {
- //timestamp(时间戳)是整数,否则要parseInt转换
- let time = new Date(timestamp);
- let y = time.getFullYear();
- let m = time.getMonth() + 1;
- let d = time.getDate();
- let h = time.getHours();
- let mm = time.getMinutes();
- let s = time.getSeconds();
- return y + '-' + this.addTimes(m) + '-' + this.addTimes(d) + ' ' + this.addTimes(
- h) + ':' + this.addTimes(
- mm) + ':' + this.addTimes(s);
- },
- }
- }
- </script>
- <style>
- .container {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px;
- position: relative;
- }
- .uni-list {
- border: 1xp solid #eee;
- }
- .to-right-icon {
- width: 15px;
- height: 15px;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- .marginLeft5 {
- margin-left: 5px;
- }
- .title-txt {
- font-size: 15px;
- font-weight: bold;
- color: black;
- }
- .content-txt {
- font-size: 10px;
- font-weight: bold;
- color: black;
- }
- .background {
- // border: 15px solid hsla(0, 0%, 100%, .5);
- background: white;
- background-clip: padding-box;
- padding: 20rpx;
- border-radius: 20rpx;
- margin: 20rpx;
- /*从padding开始往外面裁剪背景*/
- }
- .uni-list-cell {
- position: relative;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .uni-list-cell-left {
- white-space: nowrap;
- font-size: 28rpx;
- }
- .centered {
- text-align: center;
- background-color: #e2f4ff;
- }
- .text {
- background-color: #e2f4ff;
- height: 20rpx;
- }
- .view_bg_build {
- background-color: #e2f4ff;
- padding: 10rpx;
- margin: 20rpx;
- }
- .grid-text {
- font-size: 14px;
- color: #000000;
- text-align: center;
- padding-left: 30rpx;
- padding-right: 30rpx;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- }
- .name {
- flex: 0;
- font-size: 14px;
- color: #000000;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .table-item {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .block-iv {
- width: 10px;
- height: 10px;
- }
- .btn {
- width: 715rpx;
- height: 69rpx;
- background: #79A4F0;
- border-radius: 6rpx;
- font-size: 25rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 69rpx;
- margin-top: 40rpx;
- margin-bottom: 100rpx;
- }
- .number {
- display: flex;
- /* 水平居中显示子元素 */
- align-items: flex-start;
- /* 垂直居中显示子元素 */
- justify-content: space-between;
- /* 左右间距等于间距大小 */
- padding: 10px;
- /* 设置padding以提高视觉效果 */
- }
- .tj-btn {
- height: 69rpx;
- background: #3184f0;
- border-radius: 6rpx;
- font-size: 25rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 69rpx;
- margin: 40rpx 70rpx;
- }
- .sc-btn {
- height: 69rpx;
- background: #f0686b;
- border-radius: 6rpx;
- font-size: 25rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 69rpx;
- margin: 40rpx;
- }
- .num-style {
- background: #e8f4f9;
- margin: 20rpx;
- padding: 10rpx;
- border-radius: 20rpx;
- border: 1px solid #d4e3f0;
- }
- .textarea {
- margin-top: 10upx;
- width: 100%;
- border: 1rpx solid red;
- min-height: 100upx;
- line-height: 20px;
- }
- .text {
- font-size: 16px;
- color: #333;
- }
- input {
- flex-grow: 1;
- font-size: 28rpx;
- color: #808080;
- }
- </style>
|