|
@@ -248,7 +248,8 @@
|
|
|
|
|
|
<!-- 日志内容 -->
|
|
<!-- 日志内容 -->
|
|
<el-dialog v-model="operationContentModal" class="hc-modal-border" title="日志内容" width="38rem">
|
|
<el-dialog v-model="operationContentModal" class="hc-modal-border" title="日志内容" width="38rem">
|
|
- {{ operationContent }}
|
|
|
|
|
|
+ <!-- {{ operationContent }} -->
|
|
|
|
+ <div v-html="saveData" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -678,8 +679,10 @@ const getLogTableData = async () => {
|
|
//查看日志内容
|
|
//查看日志内容
|
|
const operationContentModal = ref(false)
|
|
const operationContentModal = ref(false)
|
|
const operationContent = ref('')
|
|
const operationContent = ref('')
|
|
|
|
+const saveData = ref('')
|
|
const tableOperationContent = (row) => {
|
|
const tableOperationContent = (row) => {
|
|
operationContent.value = row['operationContent'] ?? ''
|
|
operationContent.value = row['operationContent'] ?? ''
|
|
|
|
+ saveData.value = row['saveData']
|
|
operationContentModal.value = true
|
|
operationContentModal.value = true
|
|
}
|
|
}
|
|
|
|
|