Commit 61176e98 authored by 黄奎's avatar 黄奎

页面修改

parent f4b5bd60
......@@ -26,7 +26,7 @@
<div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table"
separator="none" :data="data" :columns="columns" row-key="name">
<template v-slot:top="props">
<template v-slot:top>
<div class="col-2 q-table__title">题库列表</div>
<q-space />
<div class="page-option">
......@@ -154,7 +154,9 @@
},
//获取题库分页列表
getQuestionBankPage() {
this.loading=true;
queryQuestionBankPage(this.msg).then(res => {
this.loading=false;
if (res.Code == 1) {
this.data = res.Data.PageData;
this.pageCount = res.Data.PageCount;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment