调了半天,发现是最外层的template里面有一行注释,去掉就行了
<template>
<!-- 外层使用Page包裹 -->
<Page auto-content-height>
<!-- 头部筛选框box -->
<Card style="margin-bottom: 10px; border: none; border-radius: 5px">
<QueryForm />
</Card>
<!-- 表格内容区域 -->
<Grid table-title="设备列表" ref="gridRef" v-bind="gridOptions">
<!-- 按钮box -->
<template #toolbar-tools>
<Button class="mr-2" type="primary" @click="openFormModal('add')">
添加
</Button>
<Button class="mr-2" type="primary" @click="getSelectedDevices">
批量生成二维码
</Button>
<Button class="mr-2" type="primary"> 批量打印 </Button>
</template>
</Grid>
<!-- 表格组件 -->
<FormModal />
</Page>
</template>
457

被折叠的 条评论
为什么被折叠?



