Commit 89f1b00f authored by zhengke's avatar zhengke

1

parents f145d532 739935df
......@@ -10,9 +10,9 @@
no-data-label="暂无相关数据" flat class="sticky-column-table sticky-right-column-table" separator="none"
:data="dataList" :columns="columns" row-key="PaperId">
<template v-slot:top="props">
<div style="height:38px;display:flex;align-items:center;">
<template v-if="(navList&&navList.length>0)||(multipleSelection&&multipleSelection.length>0)">
<div style="margin-right:20px;">
<div v-if="navList&&navList.length>0" class="examPNav">
<div class="examPNav" v-if="navList&&navList.length>0">
<span @click="getPaperChild(0)">全部</span> >
<template v-for="(item,index) in navList">
<span @click="getPaperChild(item.PaperId)" :class="{'lastExam':index==navList.length-1}" :key="index">
......@@ -21,9 +21,6 @@
<span v-if="index!=navList.length-1" :key="index">></span>
</template>
</div>
<div v-else>
试卷列表
</div>
</div>
<div>
<q-btn v-if="multipleSelection&&multipleSelection.length>0" color="accent" size="sm" class="q-mr-md"
......@@ -31,7 +28,10 @@
<q-btn v-if="multipleSelection&&multipleSelection.length>0" color="accent" size="sm" class="q-mr-md"
label="删除" @click="batchDelete()" />
</div>
</div>
</template>
<template>
<div class="col-2 q-table__title">试卷列表</div>
</template>
</template>
<template v-slot:header-selection="scope">
<q-checkbox v-model="scope.selected" />
......
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