马宇豪
2023-04-25 0c0fa2483fd431104f6498e40fffd983d913dce2
src/views/analyse/applyReview/components/reportDialog.vue
@@ -178,7 +178,8 @@
                        <td class="w-25 m-color">{{item.approveStage}}</td>
                        <td class="w-25">{{item.approvePerson}}</td>
                        <td class="w-25 m-color">审批结果</td>
                        <td class="w-25">{{item.approveStatus==1?'未审批':item.approveStatus==2?'通过':'未通过'}}</td>
<!--                        <td class="w-25">{{item.approveStatus==1?'未审批':item.approveStatus==2?'通过':'未通过'}}</td>-->
                        <td class="w-25" :class="item.approveStatus==3?'redTit':''">{{item.approveStatus==1?'未审批':item.approveStatus==2?'通过':'未通过'}}</td>
                      </tr>
                      <tr>
                        <td class="w-25 m-color autoheight">审批意见</td>
@@ -374,12 +375,15 @@
const getPersonList = async () => {
    let res = await userApi().getUserList({
        roleId: 1,
        usePage: false,
        pageIndex: 1,
        pageSize: 10
      pageIndex: 1,
      pageSize: 99999,
      searchParams:{
        roleId: null,
        name: '',
        realName: ''
      }
    });
    if(res.data.code === 100){
    if(res.data.code === 200){
        reportDialogState.systemPersonList = JSON.parse(JSON.stringify(res.data.data));
    }else{
        ElMessage({
@@ -501,6 +505,10 @@
         width: 75%;
     }
    &.redTit{
      color: red;
    }
    &.autoheight {
      min-height: 44px;
      height: auto;