修改禅道已知bug

This commit is contained in:
qq787203167
2022-05-10 18:05:26 +08:00
parent 85daf53a16
commit bd987ab53f
5 changed files with 108 additions and 28 deletions
+10 -5
View File
@@ -16,7 +16,7 @@
class="table"
:columns="columns"
:pagination="false"
:scroll="{y: 400}"
:scroll="{y: 420}"
:data-source="dataSource"
:loading="loading"
>
@@ -56,11 +56,12 @@
loading:false,
pageNo: 1,
pageSize: 10,
queryId:{},
total: 0,
columns: [
{
title: this.$t('OperationDetails'),
dataIndex: 'content',
dataIndex: 'logContent',
align: 'center',
ellipsis: true,
scopedSlots: { customRender: 'content' }
@@ -78,9 +79,10 @@
mounted() {
},
methods:{
getList(){
getList(data){
this.visible = true
this.pageNo = 1
this.queryId = data
this.bussLogList()
},
onChange(page, pageSize) {
@@ -96,7 +98,7 @@
let query = {
pageNo: this.pageNo,
pageSize: this.pageSize,
documentId: this.$route.query.id
...this.queryId
}
this.loading = true
getAction(this.url.logList, query).then((res) => {
@@ -114,5 +116,8 @@
</script>
<style scoped>
.page {
text-align: right;
margin-top: 20px;
}
</style>