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

2、修别字修改
3、流程页面样式修改
2024年2月1日V1.0.53.2
liujun 2024-01-30 15:21:00 +08:00
parent 4e58cf0745
commit bd29264f7c
1 changed files with 2 additions and 3 deletions

View File

@ -19,7 +19,7 @@
<el-col> <el-col>
审批人{{ item.APPOINT_USER_NAME }} 审批人{{ item.APPOINT_USER_NAME }}
</el-col> </el-col>
<el-col> <el-col v-if="item.INDEX !== step">
审批人公司{{ item.APPOINT_CORP_NAME }} 审批人公司{{ item.APPOINT_CORP_NAME }}
</el-col> </el-col>
<el-col> <el-col>
@ -31,7 +31,7 @@
<el-col v-if="item.INDEX !== step"> <el-col v-if="item.INDEX !== step">
审批时间{{ item.APPOINT_TIME }} 审批时间{{ item.APPOINT_TIME }}
</el-col> </el-col>
<el-col v-if="item.APPOINT_OPINION"> <el-col v-if="item.APPOINT_OPINION && item.INDEX !== step">
审批意见{{ item.APPOINT_OPINION }} 审批意见{{ item.APPOINT_OPINION }}
</el-col> </el-col>
</el-row> </el-row>
@ -42,7 +42,6 @@
</el-steps> </el-steps>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="closeWindow"> </el-button> <el-button @click="closeWindow"> </el-button>
<el-button :loading="loading" type="primary" @click="save"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>