修改禅道已知bug
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user