qa-prevention-xgf-app/pages/eight_assignments/view_info.vue

103 lines
3.2 KiB
Vue
Raw Normal View History

2024-07-05 18:01:23 +08:00
<template>
<view class="content">
2024-07-08 17:59:08 +08:00
<view class="card">
<u-cell-group>
2024-08-29 16:19:09 +08:00
<block v-for="(item, index) in form" :key="index">
2024-07-08 17:59:08 +08:00
<u-cell v-if="item.TYPE === 0" :key="index" :title="item.ITEM" :value="item.ITEM_VALUE"></u-cell>
</block>
</u-cell-group>
2024-07-11 18:04:46 +08:00
<u-divider text="安全措施" textPosition="left" textColor="#3c9cff" lineColor="#3c9cff"/>
<u-cell-group>
<u-cell v-for="(item,index) in questionnaires" :key="index" :title="item.QUESTION">
2024-07-12 16:24:51 +08:00
<template #title>
<view style="display: flex;justify-content: space-between">
<view style="width: 75%;">{{ item.QUESTION }}</view>
2024-07-12 16:24:51 +08:00
<view>{{ item.TEXT_INFO || item.ANSWER }}</view>
</view>
</template>
<template #label>
<block v-for="(item1,index1) in item.answers" :key="index1">
<view>{{ item1.TEXT_INFO }}{{ item1.ANSWER }}</view>
</block>
</template>
2024-07-11 18:04:46 +08:00
</u-cell>
</u-cell-group>
<u-divider text="审批人员" textPosition="left" textColor="#3c9cff" lineColor="#3c9cff"/>
2024-07-08 17:59:08 +08:00
<u-cell-group>
2024-08-29 16:19:09 +08:00
<block v-for="(item, index) in jobs" :key="index">
2024-07-09 13:36:05 +08:00
<u-cell :key="index" :title="item.TYPE_DESCRIBE">
<template #label>
<view class="mt-10">
2024-07-11 18:04:46 +08:00
<view>部门{{ item.DEPARTMENT_NAME }}</view>
<view>人员{{ item.USER_NAME }}</view>
2024-07-09 13:36:05 +08:00
<view v-if="item.SIGN_PICTURE">
<u-image width="400rpx" height="200rpx" :src="$filePath + '/' +item.SIGN_PICTURE" mode="widthFix"/>
2024-07-11 18:04:46 +08:00
<view>审批意见{{ item.APPROVAL_OPINIONS }}</view>
<view>审批意见{{ item.APPROVAL_TIME }}</view>
2024-07-09 13:36:05 +08:00
</view>
</view>
</template>
</u-cell>
2024-07-08 17:59:08 +08:00
</block>
</u-cell-group>
<view class="mt-10">
<u-button type="primary" text="下一步" @click="$u.debounce(fnSubmit, 1000,true)"/>
</view>
</view>
2024-07-05 18:01:23 +08:00
</view>
</template>
<script>
import {getTaskInfo} from "@/api";
2024-07-08 17:59:08 +08:00
import {resolveNextOperation} from "@/utils/submitHomeworkProcess";
2024-07-05 18:01:23 +08:00
export default {
2024-07-08 17:59:08 +08:00
data() {
return {
taskId: '',
type: '',
jobId: '',
form: [],
2024-07-11 18:04:46 +08:00
jobs: [],
questionnaires: [],
2024-07-08 17:59:08 +08:00
}
},
2024-07-05 18:01:23 +08:00
onLoad(query) {
2024-07-08 17:59:08 +08:00
this.taskId = query.taskId
this.type = query.type
this.jobId = query.jobId
2024-07-05 18:01:23 +08:00
this.fnGetData(query.taskId)
uni.setNavigationBarTitle({
title: query.title + '查看'
})
},
methods: {
async fnGetData(taskId) {
let resData = await getTaskInfo({EW_RU_TASK_ID: taskId})
2024-07-08 17:59:08 +08:00
this.form = resData.list.form
2024-07-09 13:36:05 +08:00
this.jobs = resData.list.jobs
2024-07-12 16:24:51 +08:00
this.questionnaires = resData.list.simpleQues[0]
2024-07-08 17:59:08 +08:00
},
async fnSubmit() {
2024-07-09 18:01:48 +08:00
let CORP_ID = ''
for (let i = 0; i < this.form.length; i++) {
2024-07-11 18:04:46 +08:00
if (this.form[i].FK_NAME === 'CORP_ID') {
2024-07-09 18:01:48 +08:00
CORP_ID = this.form[i].FK_VALUE
break
}
}
2024-07-08 17:59:08 +08:00
await resolveNextOperation({
EW_RU_TASK_ID: this.taskId,
TYPE: this.type,
2024-07-09 18:01:48 +08:00
CORP_ID,
2024-07-08 17:59:08 +08:00
EW_RU_JOB_ID: this.jobId,
})
2024-07-12 16:24:51 +08:00
},
2024-07-05 18:01:23 +08:00
},
}
</script>
<style scoped lang="scss">
</style>