123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <template>
- <!-- 列表 -->
- <ContentWrap>
- <el-button
- v-hasPermi="['infra:demo03-student:create']"
- plain
- type="primary"
- @click="openForm('create')"
- >
- <Icon class="mr-5px" icon="ep:plus" />
- 新增
- </el-button>
- <el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
- <el-table-column align="center" label="编号" prop="id" />
- <el-table-column align="center" label="名字" prop="name" />
- <el-table-column align="center" label="班主任" prop="teacher" />
- <el-table-column
- :formatter="dateFormatter"
- align="center"
- label="创建时间"
- prop="createTime"
- width="180px"
- />
- <el-table-column align="center" label="操作">
- <template #default="scope">
- <el-button
- v-hasPermi="['infra:demo03-student:update']"
- link
- type="primary"
- @click="openForm('update', scope.row.id)"
- >
- 编辑
- </el-button>
- <el-button
- v-hasPermi="['infra:demo03-student:delete']"
- link
- type="danger"
- @click="handleDelete(scope.row.id)"
- >
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <Pagination
- v-model:limit="queryParams.pageSize"
- v-model:page="queryParams.pageNo"
- :total="total"
- @pagination="getList"
- />
- </ContentWrap>
- <!-- 表单弹窗:添加/修改 -->
- <Demo03GradeForm ref="formRef" @success="getList" />
- </template>
- <script lang="ts" setup>
- import { dateFormatter } from '@/utils/formatTime'
- import * as Demo03StudentApi from '@/api/infra/demo/demo03/erp'
- import Demo03GradeForm from './Demo03GradeForm.vue'
- const { t } = useI18n() // 国际化
- const message = useMessage() // 消息弹窗
- const props = defineProps<{
- studentId?: number // 学生编号(主表的关联字段)
- }>()
- const loading = ref(false) // 列表的加载中
- const list = ref([]) // 列表的数据
- const total = ref(0) // 列表的总页数
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- studentId: undefined as unknown
- })
- /** 监听主表的关联字段的变化,加载对应的子表数据 */
- watch(
- () => props.studentId,
- (val: number) => {
- if (!val) {
- return
- }
- queryParams.studentId = val
- handleQuery()
- },
- { immediate: true, deep: true }
- )
- /** 查询列表 */
- const getList = async () => {
- loading.value = true
- try {
- const data = await Demo03StudentApi.getDemo03GradePage(queryParams)
- list.value = data.list
- total.value = data.total
- } finally {
- loading.value = false
- }
- }
- /** 搜索按钮操作 */
- const handleQuery = () => {
- queryParams.pageNo = 1
- getList()
- }
- /** 添加/修改操作 */
- const formRef = ref()
- const openForm = (type: string, id?: number) => {
- if (!props.studentId) {
- message.error('请选择一个学生')
- return
- }
- formRef.value.open(type, id, props.studentId)
- }
- /** 删除按钮操作 */
- const handleDelete = async (id: number) => {
- try {
- // 删除的二次确认
- await message.delConfirm()
- // 发起删除
- await Demo03StudentApi.deleteDemo03Grade(id)
- message.success(t('common.delSuccess'))
- // 刷新列表
- await getList()
- } catch {}
- }
- </script>
|