|
@@ -251,6 +251,17 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
+ <div class="student_page">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :page-size="pageSize"
|
|
|
+ :total="total"
|
|
|
+ v-if="page && tableData.length"
|
|
|
+ style="padding: 0px"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ ></el-pagination>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<el-dialog title="查看" :visible.sync="dialogVisible" :append-to-body="true" width="620px" :before-close="handleClose"
|
|
|
class="dialog_diy">
|
|
@@ -323,7 +334,10 @@ export default {
|
|
|
search: "",
|
|
|
mode: false,
|
|
|
courseTypeId: [],
|
|
|
- ttype: ""
|
|
|
+ ttype: "",
|
|
|
+ total: 0,
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10,
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -359,7 +373,9 @@ export default {
|
|
|
let params = {
|
|
|
org: this.org,
|
|
|
oid: this.oid,
|
|
|
- type: this.ttype
|
|
|
+ type: this.ttype,
|
|
|
+ page:this.page,
|
|
|
+ pageSize:this.pageSize
|
|
|
// this.org
|
|
|
};
|
|
|
this.ajax
|
|
@@ -367,6 +383,7 @@ export default {
|
|
|
.then((res) => {
|
|
|
this.isLoading = false;
|
|
|
let _res = res.data[0];
|
|
|
+ this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
|
|
|
// let _res2 = res.data[1];
|
|
|
for (var i = 0; i < _res.length; i++) {
|
|
|
let taskC = 0;
|
|
@@ -509,6 +526,11 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ // console.log(`当前页: ${val}`);
|
|
|
+ this.page = val;
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
selectAllType() {
|
|
|
let params = {
|
|
|
org: this.org && this.org != "" ? this.org : "",
|
|
@@ -920,6 +942,10 @@ export default {
|
|
|
padding: 0px 3px !important;
|
|
|
}
|
|
|
|
|
|
+.student_page {
|
|
|
+ width: 100%;
|
|
|
+ margin: 20px auto;
|
|
|
+}
|
|
|
/* .table >>> .el-table .cell, .table >>> .el-table--border td:first-child .cell, .table >>> .el-table--border th:first-child .cell{
|
|
|
padding: 0 3px;
|
|
|
} */
|