| | |
| | | <tr> |
| | | <el-input type="textarea" :autosize="{ minRows: 3}" :disabled="reportDialogState.disabled" v-model="reportDialogState.reportForm.description" placeholder="评定依据(必填)" /> |
| | | </tr> |
| | | <tr v-if="reportDialogState.reportForm.person?.length>0" class="m-color b-font" style="text-align: center">审批内容</tr> |
| | | <template v-if="reportDialogState.reportForm.person?.length>0" v-for="item in reportDialogState.reportForm.person"> |
| | | <tr> |
| | | <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" :class="item.approveStatus==3?'redTit':''">{{item.approveStatus==1?'未审批':item.approveStatus==2?'通过':'未通过'}}</td> |
| | | </tr> |
| | | <tr> |
| | | <td class="w-25 m-color autoheight">审批意见</td> |
| | | <td class="w-75 autoheight l-border"> |
| | | {{ item.approveDesc }} |
| | | </td> |
| | | </tr> |
| | | </template> |
| | | </table> |
| | | </el-form> |
| | | <template #footer> |
| | |
| | | width: 75%; |
| | | } |
| | | |
| | | &.redTit{ |
| | | color: red; |
| | | } |
| | | |
| | | .ant-input { |
| | | height: 100%; |
| | | border: none; |