|
|
@ -2,11 +2,11 @@ |
|
|
|
<template> |
|
|
|
<el-dialog v-model="dialogVisible" title="变更详情" width="80%" :before-close="handleClose"> |
|
|
|
<div style="display: flex"> |
|
|
|
<div style="flex: 1; width: 0px"> |
|
|
|
<div style="flex: 1; width: 0px" v-if="beforeContent"> |
|
|
|
<div style="font-size: 16px; font-weight: bold; margin-bottom: 10px"> 变更前 </div> |
|
|
|
<Descriptions :data="beforeContent" :schema="schema" :columns="2" /> |
|
|
|
</div> |
|
|
|
<div style="flex: 1; width: 0px; margin-left: 20px"> |
|
|
|
<div style="flex: 1; width: 0px; margin-left: 20px" v-if="afterContent"> |
|
|
|
<div style="font-size: 16px; font-weight: bold; margin-bottom: 10px"> 变更后 </div> |
|
|
|
<Descriptions :data="afterContent" :schema="schema" :columns="2" /> |
|
|
|
</div> |
|
|
|