| | |
| | | methods: { |
| | | // 获取接口列表 |
| | | getUserList() { |
| | | const that = this; |
| | | // const { currentPage, pageSize, search } = this; |
| | | this.dialogCreate = false; |
| | | this.$axios.get("sccg/system/portal/thirdApp/search").then(res => { |
| | | const { code, data } = res; |
| | | if (code == 200) { |
| | | this.tableData = data; |
| | | } |
| | | }) |
| | | // const that = this; |
| | | // // const { currentPage, pageSize, search } = this; |
| | | // this.dialogCreate = false; |
| | | // this.$axios.get("/sccg/task/list").then(res => { |
| | | // const { code, data } = res; |
| | | // if (code == 200) { |
| | | // this.tableData = data; |
| | | // } |
| | | // }) |
| | | |
| | | // let arr = []; |
| | | // const { currentPage, pageSize,context,messageStatus,messageKind } = this; |
| | | // await this.$axios({ |
| | | // method: 'post', |
| | | // url: '/sccg/task/list', |
| | | // data: { |
| | | // body: "", |
| | | // channelCode: messageKind === '00' ?'':messageKind, |
| | | // createUser: '', |
| | | // current: currentPage, |
| | | // head: context, |
| | | // messageType: "", |
| | | // pageSize: pageSize, |
| | | // randomCode: "", |
| | | // remark: "", |
| | | // sendTime: "", |
| | | // status: messageStatus === 2 ? '':messageStatus, |
| | | // targetFrom: "", |
| | | // targetTo: "" |
| | | // } |
| | | // }) |
| | | // .then(res => { |
| | | // this.tableData = res.data; |
| | | // }) |
| | | // return arr; |
| | | }, |
| | | // 设置表格斑马纹 |
| | | tableRowClassName({ row, rowIndex }) { |