| | |
| | | <!-- 查看修改页面 --> |
| | | <el-dialog |
| | | :visible.sync="dialogUpdate" |
| | | width="80%" |
| | | width="60%" |
| | | :title="title" |
| | | :destroy-on-close="true" |
| | | :key="updateFlag" |
| | |
| | | dialogUpdate: false, |
| | | updateFlag: false, |
| | | userInfo: "", |
| | | totalNum: null, |
| | | totalNum: 1, |
| | | pageSize: 10, |
| | | currentPage: 1, |
| | | all: false, |
| | |
| | | getTableData() { |
| | | myWait |
| | | .getMybackLog({ num: this.context, current: this.currentPage, pageSize: this.pageSize }) |
| | | .then(({ records }) => { |
| | | .then(({ records, total }) => { |
| | | this.tableData = records; |
| | | this.tableData = this.tableData.filter((item) => !!item); |
| | | this.totalNum = total; |
| | | }) |
| | | .catch((err) => this.$message({ type: "error", message: err })); |
| | | }, |
| | |
| | | &::v-deep .el-dialog__close { |
| | | width: 20px; |
| | | height: 20px; |
| | | // color: #fff; |
| | | } |
| | | |
| | | &::v-deep .el-dialog__body { |