| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <a-card :bordered="false">
- <a-form ref="searchFormRef" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
- <a-row :gutter="24">
- <a-col :span="6">
- <a-form-item label="QUESTION_TYPE" name="questionType">
- <a-input v-model:value="searchFormState.questionType" placeholder="请输入QUESTION_TYPE" />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="SUBJECT_ID" name="subjectId">
- <a-input v-model:value="searchFormState.subjectId" placeholder="请输入SUBJECT_ID" />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="GRADE_LEVEL" name="gradeLevel">
- <a-input v-model:value="searchFormState.gradeLevel" placeholder="请输入GRADE_LEVEL" />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-button type="primary" @click="table.refresh(true)">查询</a-button>
- <a-button style="margin: 0 8px" @click="reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- <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()" v-if="hasPerm('tQuestionAdd')">
- <template #icon><plus-outlined /></template>
- 新增
- </a-button>
- <xn-batch-delete
- v-if="hasPerm('tQuestionBatchDelete')"
- :selectedRowKeys="selectedRowKeys"
- @batchDelete="deleteBatchTQuestion"
- />
- </a-space>
- </template>
- <template #bodyCell="{ column, record }">
- <template v-if="column.dataIndex === 'action'">
- <a-space>
- <a @click="formRef.onOpen(record)" v-if="hasPerm('tQuestionEdit')">编辑</a>
- <a-divider type="vertical" v-if="hasPerm(['tQuestionEdit', 'tQuestionDelete'], 'and')" />
- <a-popconfirm title="确定要删除吗?" @confirm="deleteTQuestion(record)">
- <a-button type="link" danger size="small" v-if="hasPerm('tQuestionDelete')">删除</a-button>
- </a-popconfirm>
- </a-space>
- </template>
- </template>
- </s-table>
- </a-card>
- <Form ref="formRef" @successful="table.refresh(true)" />
- </template>
- <script setup name="question">
- import Form from './form.vue'
- import tQuestionApi from '@/api/question/tQuestionApi'
- let searchFormState = reactive({})
- const searchFormRef = ref()
- const table = ref()
- const formRef = ref()
- const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
- const columns = [
- {
- title: 'QUESTION_TYPE',
- dataIndex: 'questionType'
- },
- {
- title: 'SUBJECT_ID',
- dataIndex: 'subjectId'
- },
- {
- title: 'SCORE',
- dataIndex: 'score'
- },
- {
- title: 'GRADE_LEVEL',
- dataIndex: 'gradeLevel'
- },
- {
- title: 'DIFFICULT',
- dataIndex: 'difficult'
- },
- {
- title: 'CORRECT',
- dataIndex: 'correct'
- },
- {
- title: 'INFO_TEXT_CONTENT_ID',
- dataIndex: 'infoTextContentId'
- },
- {
- title: 'STATUS',
- dataIndex: 'status'
- },
- {
- title: 'DELETED',
- dataIndex: 'deleted'
- },
- ]
- // 操作栏通过权限判断是否显示
- if (hasPerm(['tQuestionEdit', 'tQuestionDelete'])) {
- 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) => {
- const searchFormParam = JSON.parse(JSON.stringify(searchFormState))
- return tQuestionApi.tQuestionPage(Object.assign(parameter, searchFormParam)).then((data) => {
- return data
- })
- }
- // 重置
- const reset = () => {
- searchFormRef.value.resetFields()
- table.value.refresh(true)
- }
- // 删除
- const deleteTQuestion = (record) => {
- let params = [
- {
- id: record.id
- }
- ]
- tQuestionApi.tQuestionDelete(params).then(() => {
- table.value.refresh(true)
- })
- }
- // 批量删除
- const deleteBatchTQuestion = (params) => {
- tQuestionApi.tQuestionDelete(params).then(() => {
- table.value.clearRefreshSelected()
- })
- }
- </script>
|