|
@@ -0,0 +1,124 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <a-card :bordered="false">
|
|
|
|
|
+ <s-table
|
|
|
|
|
+ ref="table"
|
|
|
|
|
+ :columns="columns"
|
|
|
|
|
+ :data="loadData"
|
|
|
|
|
+ :alert="options.alert.show"
|
|
|
|
|
+ bordered
|
|
|
|
|
+ :row-key="(record) => record.id"
|
|
|
|
|
+ :tool-config="toolConfig"
|
|
|
|
|
+ :row-selection="options.rowSelection"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template #operator class="table-operator">
|
|
|
|
|
+ <a-space>
|
|
|
|
|
+ <a-button type="primary" @click="formRef.onOpen()">
|
|
|
|
|
+ <template #icon><plus-outlined /></template>
|
|
|
|
|
+ 新增
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <xn-batch-delete :selectedRowKeys="selectedRowKeys" @batchDelete="deleteBatchSemester" />
|
|
|
|
|
+ </a-space>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #bodyCell="{ column, record }">
|
|
|
|
|
+ <template v-if="column.dataIndex === 'action'">
|
|
|
|
|
+ <a-space>
|
|
|
|
|
+ <a @click="formRef.onOpen(record)">编辑</a>
|
|
|
|
|
+ <a-divider type="vertical" />
|
|
|
|
|
+ <a-popconfirm title="确定要删除吗?" @confirm="deleteSemester(record)">
|
|
|
|
|
+ <a-button type="link" danger size="small">删除</a-button>
|
|
|
|
|
+ </a-popconfirm>
|
|
|
|
|
+ </a-space>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </s-table>
|
|
|
|
|
+ </a-card>
|
|
|
|
|
+ <Form ref="formRef" @successful="table.refresh(true)" />
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script setup name="semester">
|
|
|
|
|
+ import Form from './form.vue'
|
|
|
|
|
+ import semesterApi from '@/api/semesterApi'
|
|
|
|
|
+ const table = ref()
|
|
|
|
|
+ const formRef = ref()
|
|
|
|
|
+ const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
|
|
|
|
|
+ const columns = [
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '年度',
|
|
|
|
|
+ dataIndex: 'multiyear'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '季度',
|
|
|
|
|
+ dataIndex: 'quater'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '起始时间起',
|
|
|
|
|
+ dataIndex: 'startTime'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '起始时间止',
|
|
|
|
|
+ dataIndex: 'endTime'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '学期名称',
|
|
|
|
|
+ dataIndex: 'name'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '操作',
|
|
|
|
|
+ dataIndex: 'action',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '150px'
|
|
|
|
|
+ }
|
|
|
|
|
+ ]
|
|
|
|
|
+ // 操作栏通过权限判断是否显示
|
|
|
|
|
+ // if (hasPerm(['semesterEdit', 'semesterDelete'])) {
|
|
|
|
|
+ // columns.push({
|
|
|
|
|
+ // title: '操作',
|
|
|
|
|
+ // dataIndex: 'action',
|
|
|
|
|
+ // align: 'center',
|
|
|
|
|
+ // width: '150px'
|
|
|
|
|
+ // })
|
|
|
|
|
+ // }
|
|
|
|
|
+ const selectedRowKeys = ref([])
|
|
|
|
|
+ // 列表选择配置
|
|
|
|
|
+ const options = {
|
|
|
|
|
+ // columns数字类型字段加入 needTotal: true 可以勾选自动算账
|
|
|
|
|
+ alert: {
|
|
|
|
|
+ show: true,
|
|
|
|
|
+ clear: () => {
|
|
|
|
|
+ selectedRowKeys.value = ref([])
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ rowSelection: {
|
|
|
|
|
+ onChange: (selectedRowKey, selectedRows) => {
|
|
|
|
|
+ selectedRowKeys.value = selectedRowKey
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ const loadData = (parameter) => {
|
|
|
|
|
+ return semesterApi.semesterPage(parameter).then((data) => {
|
|
|
|
|
+ return data
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ // 重置
|
|
|
|
|
+ const reset = () => {
|
|
|
|
|
+ searchFormRef.value.resetFields()
|
|
|
|
|
+ table.value.refresh(true)
|
|
|
|
|
+ }
|
|
|
|
|
+ // 删除
|
|
|
|
|
+ const deleteSemester = (record) => {
|
|
|
|
|
+ let params = [
|
|
|
|
|
+ {
|
|
|
|
|
+ id: record.id
|
|
|
|
|
+ }
|
|
|
|
|
+ ]
|
|
|
|
|
+ semesterApi.semesterDelete(params).then(() => {
|
|
|
|
|
+ table.value.refresh(true)
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ // 批量删除
|
|
|
|
|
+ const deleteBatchSemester = (params) => {
|
|
|
|
|
+ semesterApi.semesterDelete(params).then(() => {
|
|
|
|
|
+ table.value.clearRefreshSelected()
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+</script>
|