参数收集--历史记录中的引号不对称

This commit is contained in:
zyx.net
2022-12-30 10:52:07 +08:00
parent c9891afed0
commit 46a89d7b4a
5 changed files with 36 additions and 5 deletions
@@ -45,7 +45,7 @@
@change='handleTableChange'>
<template slot="file" slot-scope="text, record">
<a class="action-edit" href="javascript:;" @click="dowloadfile(record)" v-has="'bqnrzdpzxlbj'">{{record.exportFileName}}</a>
<a class="action-edit" href="javascript:;" @click="dowloadfile(record)">{{record.exportFileName}}</a>
</template>
</a-table>
<div class="page" style='display: flex;justify-content: flex-end;'>
@@ -698,7 +698,7 @@
this.dataSourcehistory = res.result.records
if(this.dataSourcehistory && this.dataSourcehistory.length > 0){
this.dataSourcehistory.forEach(val=>{
val.logContent = val.logContent.replace(/\"/g,"")
val.logContent = val.logContent.replace(/\"/g,"<span class='textData'>\"</span>")
})
}
this.total = res.result.total
@@ -1036,6 +1036,9 @@
.table .ant-table-column-title {
font-weight: bold;
}
.textData{
font-family:cursive;
}
</style>
<style scoped lang="less">
.box {
@@ -1043,7 +1046,6 @@
height: calc(100% - 100px);
overflow: auto;
}
.text {
margin-right: 10px;
}