| | |
| | | prop: 'pushType', |
| | | sortable: true, |
| | | width: 150, |
| | | formatter:function (d){ |
| | | //pushTypeList作用域 |
| | | formatter:(d)=>{ |
| | | return this.pushTypeList[d.pushType] |
| | | } |
| | | }, { |
| | |
| | | prop: 'paramType', |
| | | sortable: true, |
| | | width: 150, |
| | | formatter:function (d){ |
| | | formatter: (d)=>{ |
| | | return this.paramTypeList[d.paramType] |
| | | } |
| | | }, { |
| | |
| | | prop: 'returnType', |
| | | sortable: true, |
| | | width: 150, |
| | | formatter:function (d){ |
| | | formatter: (d)=>{ |
| | | return this.returnTypeList[d.returnType] |
| | | } |
| | | }, { |
| | |
| | | this.loading = true; |
| | | getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => { |
| | | const data = res.data.data; |
| | | debugger; |
| | | this.page.total = data.total; |
| | | this.data = data.records; |
| | | this.loading = false; |