<template> <view class="content"> <view class="card"> <u-form labelPosition="left" :model="form" :rules="rules" ref="formRef" labelWidth="140px"> <u-form-item label="申请单位" prop="APPLY_DEPARTMENT_NAME" borderBottom required> <u-input v-model="form.APPLY_DEPARTMENT_NAME" border="none" readonly/> </u-form-item> <u-form-item label="申请人" prop="APPLY_USER_NAME" borderBottom required> <u-input v-model="form.APPLY_USER_NAME" border="none" readonly/> </u-form-item> <u-form-item label="作业分公司" prop="CORP_NAME" borderBottom required> <u-input v-model="form.CORP_NAME" border="none" readonly/> </u-form-item> <u-form-item label="受限空间所属单位" prop="BELONG_CORP" borderBottom required> <u-input v-model="form.BELONG_CORP" border="none"/> </u-form-item> <u-form-item label="受限空间名称" prop="LIMITSPACE_NAME" borderBottom required @click="fnSingleChoiceClick('LIMITSPACE_NAME')"> <u-input v-model="form.LIMITSPACE_NAME" border="none" readonly/> <u-icon name="arrow-right"></u-icon> </u-form-item> <u-form-item label="受限空间内原有介质名称" prop="MEDIUM_NAME" borderBottom required> <u-input v-model="form.MEDIUM_NAME" border="none"/> </u-form-item> <u-form-item label="作业内容" prop="WORK_CONTENT" borderBottom required labelPosition="top" labelWidth="auto"> <u-textarea v-model="form.WORK_CONTENT" border="none" autoHeight/> </u-form-item> <u-form-item label="作业开始时间" prop="WORK_START_DATE" borderBottom required @click="fnDateTimePickerClick('WORK_START_DATE')"> <u-input v-model="form.WORK_START_DATE" border="none" readonly/> <u-icon name="arrow-right"></u-icon> </u-form-item> <u-form-item label="作业结束时间" prop="WORK_END_DATE" borderBottom required @click="fnDateTimePickerClick('WORK_END_DATE')"> <u-input v-model="form.WORK_END_DATE" border="none" readonly/> <u-icon name="arrow-right"></u-icon> </u-form-item> <u-form-item label="地点坐标" borderBottom required> <u-button type="primary" size="small" text="定位" :customStyle="{width:'100upx',margin:0}" @click="fnLocation"/> </u-form-item> <u-form-item label="经度" prop="WORK_LONGITUDE" borderBottom required> <u-input v-model="form.WORK_LONGITUDE" border="none" readonly/> </u-form-item> <u-form-item label="纬度" prop="WORK_LATITUDE" borderBottom required> <u-input v-model="form.WORK_LATITUDE" border="none" readonly/> </u-form-item> <u-form-item label="作业人" prop="WORK_USER" borderBottom required> <u-input v-model="form.WORK_USER" border="none"/> </u-form-item> <u-form-item label="关联的其他特殊作业及安全作业票编号" prop="SPECIAL_WORK" borderBottom required labelPosition="top" labelWidth="auto"> <u-button type="primary" size="mini" text="选择其它" :customStyle="{position: 'absolute',top: '-46upx',right: '20upx',width: '150upx'}" @click="otherAssignmentsShow = true"/> <u-textarea v-model="form.SPECIAL_WORK" border="none" autoHeight maxlength="-1"/> </u-form-item> <u-form-item label="风险辨识结果" prop="RISK_IDENTIFICATION" borderBottom required labelPosition="top" labelWidth="auto"> <u-button type="primary" size="mini" text="选择其它" :customStyle="{position: 'absolute',top: '-46upx',right: '20upx',width: '150upx'}" @click="otherIdentificationShow = true"/> <u-textarea v-model="form.RISK_IDENTIFICATION" border="none" autoHeight maxlength="-1"/> </u-form-item> </u-form> <view class="mt-10"> <u-button type="primary" text="下一步" @click="$u.debounce(fnSubmit, 1000,true)"/> </view> </view> <u-picker :show="picker.show" :columns="picker.columns" :keyName="picker.key" :key="picker.type" @confirm="fnSingleChoiceConfirm" @cancel="fnSingleChoiceCancel"/> <u-datetime-picker :show="dateTimePicker.show" v-model="dateTimePicker.value" :mode="dateTimePicker.mode" :minDate="dateTimePicker.min" :key="dateTimePicker.type" @confirm="fnDateTimePickerConfirm" @cancel="fnDateTimePickerCancel"/> <other-select :visible.sync="otherAssignmentsShow" v-model="form.SPECIAL_WORK" type="assignments"/> <other-select :visible.sync="otherIdentificationShow" v-model="form.RISK_IDENTIFICATION" type="identification"/> </view> </template> <script> import {getConfinedSpaceSelectList} from '@/api' import OtherSelect from '@/components/other-select/index.vue'; import {getData, setSubmitForm} from "@/utils/submitHomeworkProcess"; export default { components: { OtherSelect }, data() { return { type: '', formItems: [ {name: '申请单位', key_name: 'APPLY_DEPARTMENT_NAME', key_id: 'APPLY_DEPARTMENT_ID', type: 0}, {name: '申请人', key_name: 'APPLY_USER_NAME', key_id: 'APPLY_USER_ID', type: 0}, {name: '作业分公司', key_name: 'CORP_NAME', key_id: 'CORP_ID', type: 0}, {name: '受限空间所属单位', key_name: 'BELONG_CORP', type: 0}, {name: '受限空间名称', key_name: 'LIMITSPACE_NAME', key_id: 'LIMITSPACE_ID', type: 0}, {name: '受限空间内原有介质名称', key_name: 'MEDIUM_NAME', type: 0}, {name: '作业内容', key_name: 'WORK_CONTENT', type: 0}, {name: '作业开始时间', key_name: 'WORK_START_DATE', type: 0}, {name: '作业结束时间', key_name: 'WORK_END_DATE', type: 0}, {name: '经度', key_name: 'WORK_LONGITUDE', type: 0}, {name: '纬度', key_name: 'WORK_LATITUDE', type: 0}, {name: '作业人', key_name: 'WORK_USER', type: 0}, {name: '关联的其他特殊作业及安全作业票编号', key_name: 'SPECIAL_WORK', type: 0}, {name: '风险辨识结果', key_name: 'RISK_IDENTIFICATION', type: 0}, ], form: { APPLY_DEPARTMENT_ID: this.$store.getters.getUserInfo.DEPARTMENT_ID, APPLY_DEPARTMENT_NAME: this.$store.getters.getUserInfo.DEPARTMENT_NAME, APPLY_USER_ID: this.$store.getters.getUserInfo.USER_ID, APPLY_USER_NAME: this.$store.getters.getUserInfo.NAME, CORP_ID: '', CORP_NAME: '', BELONG_CORP: '', LIMITSPACE_NAME: '', LIMITSPACE_ID: '', MEDIUM_NAME: '', WORK_CONTENT: '', WORK_START_DATE: '', WORK_END_DATE: '', WORK_LONGITUDE: '1', WORK_LATITUDE: '1', WORK_USER: '', SPECIAL_WORK: '', RISK_IDENTIFICATION: '', }, rules: { APPLY_DEPARTMENT_ID: [{type: 'string', required: true, message: '请选择申请单位', trigger: ['blur', 'change']}], APPLY_USER_NAME: [{type: 'string', required: true, message: '请选择申请人', trigger: ['blur', 'change']}], CORP_NAME: [{type: 'string', required: true, message: '请选择作业分公司', trigger: ['blur', 'change']}], BELONG_CORP: [{type: 'string', required: true, message: '请输入受限空间所属单位', trigger: ['blur', 'change']}], LIMITSPACE_NAME: [{type: 'string', required: true, message: '请选择受限空间名称', trigger: ['blur', 'change']}], MEDIUM_NAME: [{ type: 'string', required: true, message: '请输入受限空间内原有介质名称', trigger: ['blur', 'change'] }], WORK_CONTENT: [{type: 'string', required: true, message: '请输入作业内容', trigger: ['blur', 'change']}], WORK_START_DATE: [{type: 'string', required: true, message: '请选择作业开始时间', trigger: ['blur', 'change']}], WORK_END_DATE: [{type: 'string', required: true, message: '请选择作业结束时间', trigger: ['blur', 'change']}], WORK_LONGITUDE: [{type: 'string', required: true, message: '请选择经度', trigger: ['blur', 'change']}], WORK_LATITUDE: [{type: 'string', required: true, message: '请选择纬度', trigger: ['blur', 'change']}], WORK_USER: [{type: 'string', required: true, message: '请输入作业人', trigger: ['blur', 'change']}], SPECIAL_WORK: [{ type: 'string', required: true, message: '请输入关联的其他特殊作业及安全作业票编号', trigger: ['blur', 'change'] }], RISK_IDENTIFICATION: [{ type: 'string', required: true, message: '请输入风险辨识结果', trigger: ['blur', 'change'] }], }, picker: { show: false, columns: [], key: 'NAME', type: 'picker' }, dateTimePicker: { show: false, value: Number(new Date()), min: new Date().getTime(), mode: 'datetime', type: 'datetime-picker' }, otherAssignmentsShow: false, otherIdentificationShow: false, taskId: '' } }, async onLoad(options) { this.form.CORP_ID = options.CORPINFO_ID this.form.CORP_NAME = options.CORP_NAME this.type = options.type if (options.taskId) { this.form = await getData(options.taskId) this.taskId = options.taskId } }, methods: { async fnGetConfinedSpaceSelectList() { const resData = await getConfinedSpaceSelectList({TYPE: 2, CORP_ID: this.form.CORP_ID}) this.picker.columns = [resData.varList] }, fnSingleChoiceClick(event) { this.picker.type = event if (event === 'LIMITSPACE_NAME') this.fnGetConfinedSpaceSelectList() this.picker.show = true }, fnSingleChoiceConfirm(event) { if (this.picker.type === 'LIMITSPACE_NAME') { this.form.LIMITSPACE_ID = event.value[0].LIMITSPACE_ID this.form.LIMITSPACE_NAME = event.value[0].NAME } this.fnSingleChoiceCancel() }, fnSingleChoiceCancel() { this.picker.show = false }, fnDateTimePickerClick(event) { this.dateTimePicker.type = event this.dateTimePicker.value = Number(new Date(this.form[event])) || Number(new Date()) this.dateTimePicker.show = true }, fnDateTimePickerConfirm(event) { this.form[this.dateTimePicker.type] = uni.$u.timeFormat(event.value, 'yyyy-mm-dd hh:MM') this.fnDateTimePickerCancel() }, fnDateTimePickerCancel() { this.dateTimePicker.show = false }, fnLocation() { uni.navigateTo({ url: '/pages/map/index', events: { acceptLocationData: (event) => { this.form.WORK_LONGITUDE = event.data.longitue.toString(); this.form.WORK_LATITUDE = event.data.latitude.toString(); } }, }) }, async fnSubmit() { try { console.log(this.form) await this.$refs.formRef.validate() try { await setSubmitForm({ form: this.form, formItems: this.formItems, TYPE: this.type, CORP_ID: this.form.CORP_ID, EW_RU_TASK_ID: this.taskId }) } catch { } } catch { uni.$u.toast('请补全必填项') } } } } </script> <style scoped lang="scss"> </style>