1、审批第二节点没有存审批意见bug修复

2、修别字修改
3、流程页面样式修改
2024年1月24日测试
liujun 2024-01-30 15:20:59 +08:00
parent 656614a79b
commit e71ba80f39
4 changed files with 8 additions and 7 deletions

View File

@ -53,7 +53,7 @@ export default {
visible: false,
loading: false,
form: {
STATUS: null,
STATUS: '1',
APPOINT_CORP_ID: '',
APPOINT_CORP_NAME: '',
APPOINT_DEPARTMENT_ID: null,

View File

@ -9,7 +9,7 @@
<el-steps :space="200" :active="list.length" direction="vertical" finish-status="success">
<el-step v-for="item in list" :key="item.FLOW_DETAIL_ID" :value="item.FLOW_DETAIL_ID" :title="item.SORT">
<template slot="description">
<el-card class="box-card" style="width: 900px;">
<el-card class="box-card a" style="width: 900px;">
<div slot="header" class="clearfix">
<span>{{ item.STEP_NAME }}</span>
</div>

View File

@ -15,7 +15,7 @@
fit
highlight-current-row>
<el-table-column type="index" label="序号" width="50" align="center"/>
<el-table-column prop="CREATOR_TIME" label="用户名" align="center"/>
<el-table-column prop="CREATOR_TIME" label="审批流创建时间" align="center"/>
<el-table-column label="操作" align="center" width="250">
<template slot-scope="{row}">
<el-button type="primary" icon="el-icon-edit" size="mini" @click="handleShow(row)"></el-button>

View File

@ -19,7 +19,7 @@
<el-col>
审批人{{ item.APPOINT_USER_NAME }}
</el-col>
<el-col>
<el-col v-if="item.INDEX !== step">
审批人公司{{ item.APPOINT_CORP_NAME }}
</el-col>
<el-col>
@ -31,7 +31,7 @@
<el-col v-if="item.INDEX !== step">
审批时间{{ item.APPOINT_TIME }}
</el-col>
<el-col v-if="item.APPOINT_OPINION">
<el-col v-if="item.APPOINT_OPINION && item.INDEX !== step">
审批意见{{ item.APPOINT_OPINION }}
</el-col>
</el-row>
@ -42,7 +42,6 @@
</el-steps>
<div slot="footer" class="dialog-footer">
<el-button @click="closeWindow"> </el-button>
<el-button :loading="loading" type="primary" @click="save"> </el-button>
</div>
</el-dialog>
</template>
@ -67,7 +66,8 @@ export default {
form: {
XGF_USER_ID: ''
},
step: 0
step: 0,
endFlag: ''
}
},
methods: {
@ -81,6 +81,7 @@ export default {
).then((data) => {
this.list = data.flow.info
this.step = data.flow.STEP
this.step = data.flow.endFlag
if (data.flow.endFlag === '1') {
this.title = '审批中'
}