Commit b1c09163 authored by 黄奎's avatar 黄奎

页面修改

parent 9d878729
...@@ -51,6 +51,9 @@ ...@@ -51,6 +51,9 @@
<q-td :props="props"> <q-td :props="props">
<q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="学员考试" <q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="学员考试"
@click="gotoExamTest(props.row)" /> @click="gotoExamTest(props.row)" />
<q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="阅卷"
@click="gotoExamTestReview(props.row)" />
</q-td> </q-td>
</template> </template>
</q-table> </q-table>
...@@ -139,6 +142,10 @@ ...@@ -139,6 +142,10 @@
var qMsg = {}; var qMsg = {};
this.OpenNewUrl('/exam/examtest', qMsg); this.OpenNewUrl('/exam/examtest', qMsg);
}, },
gotoExamTestReview(item) {
var qMsg = {};
this.OpenNewUrl('/exam/examtestreview', qMsg);
}
}, },
}; };
......
This diff is collapsed.
...@@ -1077,6 +1077,11 @@ const routes = [{ ...@@ -1077,6 +1077,11 @@ const routes = [{
component: () => component: () =>
import("pages/exam/examtest") import("pages/exam/examtest")
}, },
{
path: "/exam/examtestreview", //阅卷
component: () =>
import("pages/exam/examtestreview")
},
{ {
path: "/exam/paperCreate", //试卷组卷 path: "/exam/paperCreate", //试卷组卷
component: () => component: () =>
......
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