123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <div :class="[$style.odrForm, $style.rectprojectForm]">
- <sd-webflow
- ref="flow"
- :validate-form="validForm"
- :removed-tabs="['sdRelatedDoc']"
- @actionBtnClick="actionBtnClick"
- >
- <template v-slot:form="{ model, fields, FlowData }">
- <table>
- <tr>
- <td style="border:none">
- <audit-advanced-group
- :expand="infoExpand"
- :expand-str="'infoExpand'"
- :group-label="'基本信息'"
- tablestyle="''"
- @changedClick="changedClick"
- ></audit-advanced-group>
- </td>
- </tr>
- </table>
- <table v-show="infoExpand">
- <colgroup>
- <col style="width: 180px;"/>
- <col />
- <col style="width: 180px;"/>
- <col
- /></colgroup>
- <tr>
- <!-- 审计发现标题 -->
- <sd-form-item-td name="findingTitle" readonly :label="'问题名称(定性描述)'">
- {{ model.findingTitle }}
- </sd-form-item-td>
- <!-- 审计发现编号 -->
- <sd-form-item-td name="findingCode" readonly :label="'问题编号'">
- {{ model.findingCode }}
- </sd-form-item-td>
- </tr>
- <!-- <tr> -->
- <!-- 审计问题类别 -->
- <!-- <sd-form-item-td name="findType" readonly :label="'问题类别'">
- {{ model.findType }}
- </sd-form-item-td> -->
- <!-- 问题分类 -->
- <!-- <sd-form-item-td name="problemCategoryFunction" readonly :label="'问题分类'" /> -->
- <!-- </tr> -->
- <tr>
- <!-- 审计问题描述 -->
- <sd-form-item-td name="findDesc" :colspan="3" readonly :label="'描述'">
- {{ model.findDesc }}
- </sd-form-item-td>
- </tr>
- <tr>
- <!-- 问题下发时间-->
- <sd-form-item-td name="creationTime" :colspan="3" readonly :label="'问题下发时间'">
- {{ model.creationTime }}
- </sd-form-item-td>
- </tr>
- </table>
- <table>
- <tr>
- <td style="padding-left:5px;border:none">
- <audit-advanced-group
- :expand="findExpand"
- :expand-str="'findExpand'"
- :group-label="'风险落实情况'"
- tablestyle="''"
- @changedClick="changedClick"
- ></audit-advanced-group>
- </td>
- </tr>
- </table>
- <table v-show="findExpand">
- <colgroup>
- <col style="width: 180px;"/>
- <col />
- <col style="width: 180px;"/>
- <col
- /></colgroup>
- <tr>
- <!-- 整改责任部门 -->
- <sd-form-item-td name="responsibleDeptName" :label="'整改责任部门'" />
- <!-- 直接责任人 -->
- <sd-form-item-td name="directResponsible" :label="'直接责任人'" />
- </tr>
- <tr>
- <!-- 整改类别 -->
- <sd-form-item-td name="rectType" :label="'风险状态'">
- <a-select
- v-model="model.rectType"
- @change="handlerRectType(model, model.rectType, fields)"
- >
- <a-select-option
- v-for="item in fields.rectType.attr.selectListItem.filter((itc) =>
- ['04', '05'].includes(itc.value)
- )"
- :key="item.value"
- :value="item.value"
- >
- {{ item.label }}
- </a-select-option>
- </a-select>
- <!-- <template v-slot>
- {{ JSON.parse(model.rectType)[0].name }}
- {{ rtgetjson(model.rectType) }}
- >
- </template> -->
- </sd-form-item-td>
- </tr>
- <tr>
- <!-- 说明 -->
- <sd-form-item-td name="remark" :colspan="3" :label="'说明'"
- ><a-textarea v-model="model.remark" :rows="3" />
- </sd-form-item-td>
- </tr>
- <tr>
- <!-- 附件 -->
- <sd-form-item-td name="attachment" :colspan="3" />
- </tr>
- <tr>
- <!-- 问题性质 -->
- <sd-form-item-td name="problemNature" :colspan="3" :hidden="true" />
- </tr>
- </table>
- </template>
- </sd-webflow>
- </div>
- </template>
- <script>
- import axios from '@/common/services/axios-instance'
- import auditAdvancedGroup from '@product/iam/components/audit-advanced-group.vue'
- import auditAdvancedGroupMixins from '@product/iam/components/audit-advanced-group-mixins'
- import components from './_import-components/spic-riskfeedback-form-import'
- export default {
- name: 'SpicRiskfeedbackForm',
- metaInfo: {
- title: '审计风险反馈',
- },
- components: {
- ...components,
- auditAdvancedGroup,
- },
- mixins: [auditAdvancedGroupMixins],
- data() {
- return {
- projectId: '',
- infoExpand: true,
- findExpand: true,
- groupId: '',
- rectTypeOptions: [],
- }
- },
- mounted() {
- // 初始化数据字典信息
- this.initDictionaryInfo()
- let query = {}
- if (this.$route.query.extParams) {
- query = JSON.parse(this.$route.query.extParams)
- } else {
- query = {
- id: this.$refs.flow.getFieldValue('id'),
- }
- }
- axios({
- url: `api/xcoa-mobile/v1/spicrectfeedback/getInfoById?id=${query.id}`,
- method: 'get',
- }).then((res) => {
- this.$refs.flow.setFieldValue('findingTitle', res.data.findingTitle)
- this.$refs.flow.setFieldValue('findingCode', res.data.findingCode)
- // this.$refs.flow.setFieldValue('findType', res.data.findType)
- this.$refs.flow.setFieldValue('findDesc', res.data.findDesc)
- this.$refs.flow.setFieldValue('creationTime', res.data.creationTime)
- // this.$refs.flow.setFieldValue('problemCategoryFunction', res.data.problemCategoryFunction)
- })
- },
- methods: {
- initDictionaryInfo() {
- // 获取审计流程下拉框信息
- axios({
- url: 'api/xcoa-mobile/v1/iam-law/dictionary?key=RECT_TYPE',
- method: 'get',
- }).then((res) => {
- if (res.status === 200) {
- var newArr = []
- res.data.forEach((item) => {
- if (item.id === '04' || item.id === '05') {
- newArr.push(item)
- }
- })
- this.rectTypeOptions = newArr
- }
- })
- },
- fngetjson(data) {
- if (data !== undefined && data !== '') {
- if (typeof JSON.parse(data) === 'object') {
- return JSON.parse(data).text
- } else {
- return data
- }
- } else {
- return ''
- }
- },
- actionBtnClick(evt, { button, FlowData }) {
- // debugger
- evt.waitUntil(
- new Promise((resolve, reject) => {
- if (button.buttonId === 'G_1_RISK_FEED_BACK.7') {
- // 开始-> 转其他人反馈环节
- this.$refs.flow.FlowData.processFormData.processFormPropertyValues.find((item) => {
- return item.name === 'rectType'
- }).required = false
- this.$refs.flow.FlowData.processFormData.processFormPropertyValues.find((item) => {
- return item.name === 'remark'
- }).required = false
- }
- if (button.buttonId === 'G_1_RISK_FEED_BACK.1') {
- // 开始-> 转其他人反馈环节
- this.$refs.flow.FlowData.processFormData.processFormPropertyValues.find((item) => {
- return item.name === 'rectType'
- }).required = true
- this.$refs.flow.FlowData.processFormData.processFormPropertyValues.find((item) => {
- return item.name === 'remark'
- }).required = true
- }
- resolve()
- })
- )
- },
- },
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- .btnselect {
- position: relative;
- float: right;
- .batchselect {
- z-index: 100;
- margin-right: 190px;
- }
- }
- :global(.ant-modal-content) {
- :global(.ant-input-number) {
- width: 100%;
- }
- }
- </style>
|