This commit is contained in:
guochunsi
2026-01-30 16:29:15 +08:00
parent 53f71066f3
commit c6da6e286f
70 changed files with 688 additions and 519 deletions

View File

@@ -57,7 +57,7 @@
<div class="mb15">
<el-button
v-auth="'recruit_newstucheckin_statistics_output'"
v-if="hasAuth('recruit_newstucheckin_statistics_output')"
type="warning"
plain
icon="Download"
@@ -97,6 +97,7 @@
<script setup lang="ts" name="backSchoolCheckin-statistics">
import { ref, reactive, computed, onMounted } from 'vue'
import { useAuth } from '/@/hooks/auth'
import { useMessage } from '/@/hooks/message'
import { getDataStatistics } from '/@/api/recruit/newstucheckin'
import { getList } from '/@/api/recruit/recruitstudentplangroup'
@@ -104,6 +105,8 @@ import { getDeptList } from '/@/api/basic/basicclass'
import { queryAllClass } from '/@/api/basic/basicclass'
import axios from 'axios'
const { hasAuth } = useAuth()
// 消息提示 hooks
const message = useMessage()

View File

@@ -95,7 +95,7 @@
名单导出
</el-button>
<el-button
v-auth="'recruit_recruitstudentsignup_allCX'"
v-if="hasAuth('recruit_recruitstudentsignup_allCX')"
type="primary"
plain
icon="Search"
@@ -230,8 +230,7 @@
<template #default="scope">
<el-button
v-auth="'recruit_recruitstudentsignup_show'"
v-if="scope.row.pushed == '1' && scope.row.paiedOffline != '10' && (scope.row.clfPayCode != undefined && scope.row.clfPayCode != '')"
v-if="hasAuth('recruit_recruitstudentsignup_show') && scope.row.pushed == '1' && scope.row.paiedOffline != '10' && (scope.row.clfPayCode != undefined && scope.row.clfPayCode != '')"
type="primary"
link
:icon="Tickets"
@@ -240,7 +239,7 @@
支付二维码
</el-button>
<el-button
v-auth="'recruit_recruitstudentsignup_back'"
v-if="hasAuth('recruit_recruitstudentsignup_back')"
type="primary"
link
icon="EditPen"
@@ -299,6 +298,7 @@
<script setup lang="ts" name="backSchoolCheckinTabIndex">
import { ref, reactive, onMounted, nextTick, defineAsyncComponent, defineExpose } from 'vue'
import { useAuth } from '/@/hooks/auth'
import { BasicTableProps, useTable } from '/@/hooks/table'
import { useMessage } from '/@/hooks/message'
import { getList } from '/@/api/recruit/recruitstudentplangroup'
@@ -315,7 +315,7 @@ const GenderTag = defineAsyncComponent(() => import('/@/components/GenderTag/ind
const SearchForm = defineAsyncComponent(() => import('/@/components/SearchForm/index.vue'))
const ClickableTag = defineAsyncComponent(() => import('/@/components/ClickableTag/index.vue'))
const DetailPopover = defineAsyncComponent(() => import('/@/components/DetailPopover/index.vue'))
const { hasAuth } = useAuth()
// 消息提示 hooks
const message = useMessage()