| | |
| | | :data="dataList" |
| | | :fit="true" |
| | | :default-sort="{ prop: 'createTime', order: 'descending' }" |
| | | v-loading="tbLoading" |
| | | > |
| | | <el-table-column label="序号" width="55" class-name="index"> |
| | | <template slot-scope="scope">{{ scope.$index + 1 + (page - 1) * size }}</template> |
| | |
| | | } |
| | | } |
| | | return { |
| | | tbLoading: false, |
| | | searchTime: [this.$moment().format("YYYY-MM-DD 00:00:00"), this.$moment().format("YYYY-MM-DD HH:mm:ss")], //搜索时间 |
| | | page: 1, |
| | | size: 10, //分页相关 |
| | |
| | | }) |
| | | }, |
| | | findUserList() { |
| | | this.tbLoading = true |
| | | if (this.inputText.length) { |
| | | this.inputText = this.inputText.trim() |
| | | } |
| | |
| | | } else { |
| | | this.$notify.error("加载子账户列表失败") |
| | | } |
| | | |
| | | this.tbLoading = false |
| | | }) |
| | | .catch((e) => { |
| | | this.$notify.error(e.msg) |
| | | this.tbLoading = false |
| | | }) |
| | | }, |
| | | goback() { |