|
@@ -159,13 +159,19 @@
|
|
|
type="primary"
|
|
|
@click="handleDeleteBatch"
|
|
|
:disabled="!searchInfo.enrollmentPlanId"
|
|
|
+ v-auth="'proReport:set'"
|
|
|
>
|
|
|
报到日期设置
|
|
|
</a-button>
|
|
|
- <a-button type="primary" @click="handleChangeReport" :disabled="!hasSelected">
|
|
|
+ <a-button
|
|
|
+ type="primary"
|
|
|
+ @click="handleChangeReport"
|
|
|
+ :disabled="!hasSelected"
|
|
|
+ v-auth="'proReport:allsign'"
|
|
|
+ >
|
|
|
变更为已报到
|
|
|
</a-button>
|
|
|
- <a-button type="primary" @click="handleExport">导出</a-button>
|
|
|
+ <a-button type="primary" @click="handleExport" v-auth="'proReport:export'"> 导出 </a-button>
|
|
|
</template>
|
|
|
<template #action="{ record }">
|
|
|
<TableAction
|
|
@@ -174,16 +180,19 @@
|
|
|
label: '切换就读方式',
|
|
|
onClick: handleChangeStduyStatus.bind(null, record),
|
|
|
ifShow: record.className,
|
|
|
+ auth: 'proReport:stduyStatus',
|
|
|
},
|
|
|
{
|
|
|
label: '非本班学生',
|
|
|
onClick: handleDelete.bind(null, record),
|
|
|
ifShow: record.className,
|
|
|
+ auth: 'proReport:del',
|
|
|
},
|
|
|
{
|
|
|
label: '调整班级',
|
|
|
onClick: handleAjdust.bind(null, record),
|
|
|
ifShow: !record.className,
|
|
|
+ auth: 'proReport:adj',
|
|
|
},
|
|
|
]"
|
|
|
/>
|