| | |
| | | <template> |
| | | <el-dialog v-model="visible" title="操作日志" width="1000px" destroy-on-close> |
| | | <div class="log-container"> |
| | | <el-table v-if="logModalRef == 'listReceivableFeeManagementLog'" v-loading="loading" :data="tableData" border stripe style="width: 100%" max-height="500px"> |
| | | <el-table v-if="logModalRef == 'receivable'" v-loading="loading" :data="tableData" border stripe style="width: 100%" max-height="500px"> |
| | | <el-table-column prop="operator" label="操作人" width="120" /> |
| | | <el-table-column prop="createTime" label="操作时间" width="180" /> |
| | | <el-table-column prop="operationDesc" label="操作描述" show-overflow-tooltip /> |
| | | </el-table> |
| | | <el-table v-if="logModalRef == 'listReceivableBillManagementLog'" v-loading="loading" :data="tableData" border stripe style="width: 100%" max-height="500px"> |
| | | <el-table v-if="logModalRef == 'payable'" v-loading="loading" :data="tableData" border stripe style="width: 100%" max-height="500px"> |
| | | <el-table-column prop="createBy" label="操作人" width="120" /> |
| | | <el-table-column prop="createTime" label="操作时间" width="180" /> |
| | | <el-table-column prop="operation" label="操作描述" show-overflow-tooltip /> |
| | | </el-table> |
| | | |
| | | </div> |
| | | <template #footer> |
| | | <el-button @click="visible = false">关 闭</el-button> |