123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536 |
- <template>
- <view class="inspectionValue">
- <scroll-view scroll-y class="body">
- <uni-forms ref="baseForm" :model="formValues" :rules="rules" class="form" label-position="top">
- <template v-for="(item, index) of baseFormData" :key="index">
- <!-- 下拉 -->
- <uni-forms-item v-if="item.type === '1'" class="formItem" :required="item.required" :name="item.key">
- <template v-slot:label>
- <view class="customLabelWrap">
- <text :class="{'is-required': item.required}">*</text><text class="customLabel">{{item.name}}</text><text v-if="item.isException" class="customLabel red"> 异</text>
- </view>
- </template>
- <uni-data-picker :placeholder="'请选择' + item.name" :popup-title="'请选择' + item.name" :localdata="item.list" v-model="formValues[item.key]" @change="changeForm()">
- </uni-data-picker>
- </uni-forms-item>
- <!-- 单选 -->
- <uni-forms-item v-if="item.type === '2'" class="formItem" :required="item.required" :name="item.key">
- <template v-slot:label>
- <view class="customLabelWrap">
- <text :class="{'is-required': item.required}">*</text><text class="customLabel">{{item.name}}</text><text v-if="item.isException" class="customLabel red"> 异</text>
- </view>
- </template>
- <uni-data-checkbox v-model="formValues[item.key]" @change="changeForm()" :localdata="item.list" />
- </uni-forms-item>
- <!-- 多选 -->
- <uni-forms-item v-if="item.type === '3'" class="formItem" :required="item.required" :name="item.key">
- <template v-slot:label>
- <view class="customLabelWrap">
- <text :class="{'is-required': item.required}">*</text><text class="customLabel">{{item.name}}</text><text v-if="item.isException" class="customLabel red"> 异</text>
- </view>
- </template>
- <uni-data-checkbox v-model="formValues[item.key]" @change="changeForm()" multiple :localdata="item.list" />
- </uni-forms-item>
- <!-- 数字 -->
- <uni-forms-item v-if="item.type === '4'" class="formItem" :required="item.required" :name="item.key">
- <template v-slot:label>
- <view class="customLabelWrap">
- <text :class="{'is-required': item.required}">*</text><text class="customLabel">{{item.name}}</text><text v-if="item.isException" class="customLabel red"> 异</text>
- </view>
- </template>
- <uni-number-box v-model="formValues[item.key]" @change="changeForm()" :min="-9999" :max="9999" :placeholder="'请输入' + item.name"></uni-number-box>
- </uni-forms-item>
- <!-- 单行 -->
- <uni-forms-item v-if="item.type === '5' && item.isException" class="formItem" :label="item.name" :required="item.required" :name="item.key">
- <uni-easyinput style="padding-top: 8px;" v-model="formValues[item.key]" :placeholder="'请输入' + item.name" />
- </uni-forms-item>
- <!-- 多行 -->
- <uni-forms-item v-if="item.type === '6' && item.isException" class="formItem" :label="item.name" :required="item.required" :name="item.key">
- <uni-easyinput type="textarea" v-model="formValues[item.key]" :placeholder="'请输入' + item.name" />
- </uni-forms-item>
- <!-- 图片上传 -->
- <uni-forms-item v-if="item.type === '7' && item.isException" class="formItem" :label="item.name" :required="item.required" :name="item.key">
- <DsFilePicker :extra="item.id" :inspectionExecuteId="inspectionExecuteId" :ref="(el) => itemRefs[item.id] = el"></DsFilePicker>
- </uni-forms-item>
- <!-- 分割线 -->
- <view class="detail_head" v-if="item.type === '8'">
- <text class="title">{{ item.name }}</text>
- </view>
- </template>
- </uni-forms>
- </scroll-view>
- <view class="foot_common_btns">
- <button @click="goBack" type="default" class="cancelButton btn">返回</button>
- <button @click="submit" type="default" class="primaryButton btn">保存</button>
- </view>
- </view>
- </template>
- <script setup>
- import fromPairs from 'lodash-es/fromPairs'
- import keyBy from 'lodash-es/keyBy'
- import DsFilePicker from '@/components/DsFilePicker.vue';
- import { ref, reactive, nextTick } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- import { api_addModel, api_getDictionary } from "@/http/api.js"
- import { defaultColor } from '@/static/js/theme.js'
- import { useSetTitle } from '@/share/useSetTitle.js'
- import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
- import { useGoBack } from '@/share/useGoBack.js'
- import { useLoginUserStore } from '@/stores/loginUser'
- import { useInspectionValueStore } from '@/stores/inspectionValue'
- import { forIn } from 'lodash-es';
- import { useIncidentBuildStore } from '@/stores/incidentBuild'
- useSetTitle();
- const loginUserStore = useLoginUserStore();
- const { goBack } = useGoBack();
- const inspectionValueStore = useInspectionValueStore();
- const incidentBuildStore = useIncidentBuildStore();
- // 主题颜色
- const primaryColor = ref(defaultColor)
- // 所有页码数据
- const formPageList = reactive([]);
-
- // 故障来源列表
- const defaultSourceValue = ref();
- // 表单
- const baseForm = ref()
-
- // 图片上传ref数组
- const itemRefs = ref({});
- const inspectionExecuteId = ref()
- // 数据-原始
- const dataInfo = reactive({})
- // 数据-检验
- const rules = reactive({})
- // 数据-填写值
- const formValues = reactive({})
- // 表单数据-渲染
- // 下拉框 1
- // 单选 2
- // 多选 3
- // 数值 4
- // 单行文本 5
- // 多行文本 6
- // 照片上传 7
- // 分割线 8
- const baseFormData = reactive([
- // { type: 1, name: '', value: '', list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 2, name: '', value: '', list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 3, name: '', value: [], list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 4, name: '', value: '', list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 5, name: '', value: '', list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 6, name: '', value: '', list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- // { type: 7, name: '', value: [], list: [], required: false, checkType: 0, valueMin: '', valueMax: '', },
- ])
- // 修改
- function changeForm(){
- handleData(true);
- }
-
- // 跳转巡检列表
- function toInspectionExecute(){
- inspectionValueStore.clearInspectionValueData();
- uni.reLaunch({
- url: `/pages/inspection/inspectionExecute/inspectionExecute`
- })
- }
-
- // 获取故障来源列表
- function getSources(){
- let postData = {
- "key": 'incident_source',
- "type": "list",
- };
- api_getDictionary(postData).then(res => {
- res = res || [];
- let discover = res.find(v => v.value === 'inspection');
- if(discover){
- defaultSourceValue.value = discover.id;
- }
- })
- }
-
- // 跳转新建事件
- function toBuildIncident(res){
- let imgList = Object.values(itemRefs.value);
- let repairImgList = [];
- if(imgList.length){
- repairImgList = imgList[0].baseFormData.handlerImgList;
- }
- let incidentData = {
- place: res.inspectionNode.floorDTO,
- houseNumber: res.inspectionNode.address,
- source: defaultSourceValue.value,
- description: res.inspectionValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
- requester: loginUserStore.loginUser.user,
- branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
- contacts: loginUserStore.loginUser.user.name,
- contactsInformation: loginUserStore.loginUser.user.phone,
- category: res.inspectionForm.categoryDTO,
- department: res.inspectionForm.repairDeptDTO,
- priority: res.inspectionForm.priorityDTO,
- repairImgList,
- inspectionTaskId: res.id,
- }
- console.log(repairImgList, 'repairImgList')
- console.log(incidentData, 'incidentData')
- incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
- inspectionValueStore.clearInspectionValueData();
- uni.navigateTo({
- url: `/pages/buildIncident/buildIncident?type=inspection`
- })
- }
- // 保存
- function submit(){
- console.log(itemRefs.value);
- console.log(formValues);
- console.log(baseFormData);
- // 处理图片上传检验问题
- Object.values(itemRefs.value).forEach(v => {
- if(v && v.baseFormData.handlerImgList.length){
- baseFormData.forEach(vv => {
- if(vv.id == v.extra){
- formValues[vv.key] = v.inspectionExecuteId;
- vv.value = v.inspectionExecuteId;
- }
- })
- }
- })
-
- nextTick(() => {
- baseForm.value.validate().then(res => {
- console.log('success', res);
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- console.log(formValues);
- let postData = {
- account: loginUserStore.loginUser.user.account,
- valuesList: [],
- };
- // baseFormData
- for(let key in formValues){
- let obj = baseFormData.find(v => v.key === key);
- if(!((obj.type === '5' && !obj.isException) || (obj.type === '6' && !obj.isException) || (obj.type === '7' && !obj.isException))){
- let name = obj.name;
- let itemId = obj.id;
- let _formPageList = dataInfo.inspectionFormDTO?.formPageList || [];
- _formPageList = _formPageList.map(v => v.formItemList).flat();
- let formItem = _formPageList.find(v => v.id === itemId);
- postData.valuesList.push({
- taskId: inspectionExecuteId.value,
- nodeId: dataInfo.id,
- formId: dataInfo.inspectionFormDTO.id,
- itemId: formItem.id,
- pageId: formItem.pageId,
- orders: formItem.orders,
- name,
- valuex: (formItem.type.value === '1' || formItem.type.value === '2' || formItem.type.value === '3') ? '' : formValues[key].toString(),
- configIds: (formItem.type.value === '1' || formItem.type.value === '2' || formItem.type.value === '3') ? formValues[key].toString() : undefined,
- hosId: dataInfo.inspectionFormDTO.hosId,
- })
- }
- }
- console.log(postData);
- console.log(itemRefs.value);
- // return;
- api_addModel(postData).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- Object.values(itemRefs.value).forEach(v => {
- v && v.uploadFn();
- })
- if(res.exception){
- // 异常
- if(res.inspectionForm.createOrder == 1){
- // 是否自动生成维修单
- uni.showModal({
- title: '提示',
- content: `巡检提交成功,您巡检有产生异常;系统自动生成工单:${res.incidentSign}`,
- showCancel: false,
- confirmText: '返回巡检列表',
- success: (res) => {
- if (res.confirm) {
- toInspectionExecute();
- }
- }
- });
- } else if(res.inspectionForm.showOrder == 1){
- // 是否显示生成维修单
- uni.showModal({
- title: '提示',
- content: '巡检提交成功,您巡检有产生异常,是否生成维修单',
- confirmText: '生成维修单',
- cancelText: '返回巡检列表',
- success: (result) => {
- if (result.confirm) {
- toBuildIncident(res);
- } else if (result.cancel) {
- toInspectionExecute();
- }
- }
- });
- } else {
- uni.showToast({
- icon: 'none',
- title: "巡检提交成功,有异常",
- duration: 2000,
- mask: true,
- })
- setTimeout(() => {
- toInspectionExecute();
- }, 2000)
- }
- }else{
- // 无异常
- uni.showToast({
- icon: 'none',
- title: "巡检提交成功,无异常",
- duration: 2000,
- mask: true,
- })
- setTimeout(() => {
- toInspectionExecute();
- }, 2000)
- }
- } else if(res.status == 555){
- // 自动生成维修单失败
- uni.showModal({
- title: '提示',
- content: '巡检提交成功,您巡检有产生异常;系统自动生成工单失败,请手动建单',
- confirmText: '生成维修单',
- cancelText: '返回巡检列表',
- success: (result) => {
- if (result.confirm) {
- toBuildIncident(res);
- } else if (result.cancel) {
- toInspectionExecute();
- }
- }
- });
- } else {
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- });
- }).catch(err => {
- console.log('err', err);
- })
- })
- }
- // 处理数据
- function handleData(isException = false){
- // 目前只取第一页
- let firstPage = formPageList[0]?.formItemList || [];
- firstPage = firstPage.filter( v => v.display === 1);
- firstPage = firstPage.map((v, i) => {
- let value = '';
- v.formItemConfigList = v.formItemConfigList || [];
- // value
- if(v.type.value === '3'){
- // 多选
- let arr = v.formItemConfigList.filter(v => v.checkDefault === 1);
- value = arr.length ? arr.map(v => v.id) : [];
- console.log('多选', value)
- } else if(v.type.value === '7'){
- // 图片
- value = [];
- } else if(v.type.value === '1' || v.type.value === '2') {
- // 单选或下拉
- let defaultValue = v.formItemConfigList.find(v => v.checkDefault === 1);
- value = defaultValue ? defaultValue.id : '';
- console.log('单选或下拉', value)
- } else{
- // 其他
- value = v.defaultValue;
- }
- return {
- id: v.id,
- key: `field${i}`,
- type: v.type.value,
- name: v.name,
- value: isException ? formValues[`field${i}`] : value,
- list: v.formItemConfigList ? v.formItemConfigList.map(v => ({text: v.name, value: v.id, checkException: v.checkException, uncheckException: v.uncheckException})) : [],
- required: v.required === 1,
- checkType: v.checkType,
- showError: v.showError,
- orders: v.orders,
- valueMin: v.checkType === 2 ? v.valueLow : ( v.checkType === 1 ? (v.valuex - v.valueGap) : undefined),
- valueMax: v.checkType === 2 ? v.valueUp : ( v.checkType === 1 ? (v.valuex + v.valueGap) : undefined),
- }
- });
- let firstPageBottom = firstPage.filter(v => v.type === '5' || v.type === '6' || v.type === '7');
- firstPage = firstPage.filter(v => v.type !== '5' && v.type !== '6' && v.type !== '7');
- // 其他项
- if(!isException){
- firstPage.forEach(v => {
- // 下拉,单选
- if(v.type === '1' || v.type === '2'){
- let obj = v.list.find(vv => formValues[v.key] === vv.value);
- v.isException = obj ? obj.checkException === 1 : false;
- } else if(v.type === '3'){
- // 多选
- v.isException = v.list.some(vv => {
- if(formValues[v.key].includes(vv.value)){
- return vv.checkException === 1;
- }else{
- return false;
- }
- })
- } else if(v.type === '4'){
- v.isException = (v.value < v.valueMin) || (v.value > v.valueMax);
- }
- })
- }else{
- firstPage.forEach(v => {
- if(v.type === '1' || v.type === '2'){
- // 下拉,单选
- let obj = v.list.find(vv => v.value === vv.value);
- v.isException = obj ? obj.checkException === 1 : false;
- } else if(v.type === '3'){
- // 多选
- v.isException = v.list.some(vv => {
- if(v.value.includes(vv.value)){
- return vv.checkException === 1;
- }else{
- return false;
- }
- })
- } else if(v.type === '4'){
- // 数值
- v.isException = (formValues[v.key] < v.valueMin) || (formValues[v.key] > v.valueMax);
- }
- })
- }
- // 单行|多行|图片上传
- let someIsException = firstPage.filter(v => v.type !== '8').some(v => v.isException);
- console.log('someIsException=>', someIsException)
- firstPageBottom.forEach(v => {
- console.log('v.showError=>', v.showError)
- v.isException = (v.showError === 1 && someIsException) || v.showError === 0;
- })
- firstPage = firstPage.concat(firstPageBottom).sort((a, b) => a.orders - b.orders);
- console.log('firstPage=>', firstPage);
- Object.assign(baseFormData, firstPage);
- console.log('baseFormData=>', baseFormData);
- Object.assign(formValues, fromPairs(firstPage.filter(v => v.type !== '8').map(v => ([v.key, v.value]))));
- console.log('formValues=>', formValues);
- let rulesObj = keyBy(firstPage.filter(v => v.type !== '8'), 'key');
- console.log(rulesObj)
- for(let key in rulesObj){
- rulesObj[key] = {
- rules: [
- { required: rulesObj[key].required, errorMessage: `${rulesObj[key].name}不能为空` }
- ]
- }
- }
- Object.assign(rules, rulesObj);
- console.log('rules=>', rules);
- }
- onLoad((option) => {
- getSources();
- inspectionExecuteId.value = +option.inspectionExecuteId;
- // 巡检项
- if(inspectionValueStore.inspectionValue.data){
- Object.assign(dataInfo, inspectionValueStore.inspectionValue.data);
- Object.assign(formPageList, dataInfo.inspectionFormDTO?.formPageList || []);
- handleData()
- }
- })
- </script>
- <style lang="scss" scoped>
- .customLabelWrap{
- .is-required{
- color: #dd524d;
- font-weight: bold;
- margin-top: 8rpx;
- }
- }
- ::v-deep .uni-modal__btn_primary{
- color: $uni-primary!important;
- }
- .inspectionValue{
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .body{
- box-sizing: border-box;
- flex: 1;
- min-height: 0;
- padding-bottom: 24rpx;
- .formItem{
- padding: 32rpx 24rpx 0;
- margin-bottom: 0;
- }
- ::v-deep .uni-forms-item__label{
- width: auto!important;
- padding: 0!important;
- height: auto!important;
- align-items: flex-start!important;
- }
- .detail_head{
- padding: 24rpx;
- border-top: 1rpx solid #D2D2D2;
- border-bottom: 1rpx solid #D2D2D2;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 24rpx;
- &:first-of-type{
- border-top: none;
- margin-top: 0;
- }
- .title{
- font-size: 26rpx;
- color: $uni-primary;
- padding-left: 18rpx;
- position: relative;
- &:before{
- content: '';
- width: 8rpx;
- height: 25rpx;
- background-color: $uni-primary;
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- }
- }
- </style>
|