Browse Source

调整待办工作数量展示、审批记录页面内添加滚动条、意见行间距设为20px

master
yunuo970428 3 years ago
parent
commit
33775840d9
  1. 3
      anrui-system-ui/src/components/flow/flowRecord.vue
  2. 4
      anrui-system-ui/src/views/Home/Home.vue
  3. 2
      anrui-system-ui/src/views/flow/doneList.vue
  4. 2
      anrui-system-ui/src/views/flow/todoList.vue

3
anrui-system-ui/src/components/flow/flowRecord.vue

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<!--流程流转记录--> <!--流程流转记录-->
<el-card> <el-card style="overflow: auto;height: 600px">
<el-col :span="24"> <el-col :span="24">
<div> <div>
<div style="width:50%;float:left;"> <div style="width:50%;float:left;">
@ -96,5 +96,6 @@ export default {
.el-tag { .el-tag {
white-space: normal; white-space: normal;
height: auto; height: auto;
line-height: 20px;
} }
</style> </style>

4
anrui-system-ui/src/views/Home/Home.vue

@ -375,6 +375,7 @@
list-style: none; list-style: none;
width: 25%; width: 25%;
text-align: center; text-align: center;
position: relative;
img { img {
width: 70px; width: 70px;
@ -488,6 +489,7 @@
} }
.mark { .mark {
position: absolute; position: absolute;
top: 54px; top: 48px;
right: 87px;
} }
</style> </style>

2
anrui-system-ui/src/views/flow/doneList.vue

@ -106,7 +106,7 @@
<!-- End查看页面--> <!-- End查看页面-->
<!-- 编辑信息 --> <!-- 编辑信息 -->
<el-dialog title="审批记录" :visible.sync="editDialog" width="60%"> <el-dialog title="审批记录" :visible.sync="editDialog" width="80%" style="overflow: hidden">
<!--流程流转记录--> <!--流程流转记录-->
<flow-records :xmlData="xmlData" :taskData="taskList" :flowRecordList="flowRecordList"></flow-records> <flow-records :xmlData="xmlData" :taskData="taskList" :flowRecordList="flowRecordList"></flow-records>
</el-dialog> </el-dialog>

2
anrui-system-ui/src/views/flow/todoList.vue

@ -105,7 +105,7 @@
<!-- End办理页面--> <!-- End办理页面-->
<!-- 编辑信息页面 --> <!-- 编辑信息页面 -->
<el-dialog title="审批记录" :visible.sync="editDialog" width="80%" > <el-dialog title="审批记录" :visible.sync="editDialog" width="80%" style="overflow: hidden">
<flow-records :xmlData="xmlData" :taskData="taskList" :flowRecordList="flowRecordList"></flow-records> <flow-records :xmlData="xmlData" :taskData="taskList" :flowRecordList="flowRecordList"></flow-records>
</el-dialog> </el-dialog>

Loading…
Cancel
Save