This commit is contained in:
qsh
2025-02-28 19:09:18 +08:00
parent 06681658fc
commit 0d99fbac80
18 changed files with 1883 additions and 2 deletions

View File

@@ -0,0 +1,156 @@
<template>
<div class="app-container" style="text-align: center">
<el-form size="small" :inline="true" label-width="68px" @submit.prevent>
<el-row :gutter="20">
<el-form-item label="车型">
<el-radio-group v-model="queryParams.chexing">
<el-radio label="C1">小车</el-radio>
<el-radio label="D">摩托车</el-radio>
<el-radio label="B2">货车</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="科目">
<el-radio-group v-model="queryParams.examType">
<el-radio label="1">科一</el-radio>
<el-radio label="4">科四</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="有图片">
<el-radio-group v-model="queryParams.isPic">
<el-radio :label="true"></el-radio>
<el-radio :label="false"></el-radio>
</el-radio-group>
</el-form-item>
</el-row>
<el-row :gutter="20">
<el-form-item label="题目">
<el-input
v-model="queryParams.subTitle"
placeholder="请输入题目"
clearable
style="width: 400px"
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleQuery">搜索</el-button>
<el-button @click="resetQuery">重置</el-button>
<el-button type="primary" @click="handleAdd">新增</el-button>
</el-form-item>
</el-row>
</el-form>
<el-table v-loading="loading" :data="tableList" highlight-current-row>
<el-table-column type="index" width="55" align="center" />
<el-table-column label="题目" align="left" prop="subTitle" min-width="140" />
<el-table-column label="选项" align="left" min-width="140">
<template #default="{ row }">
<p v-if="row.optA">A:{{ row.optA }}</p>
<p v-if="row.optB">B:{{ row.optB }}</p>
<p v-if="row.optC">C:{{ row.optC }}</p>
<p v-if="row.optD">D:{{ row.optD }}</p>
</template>
</el-table-column>
<el-table-column label="答案" align="center" prop="answer" width="100" />
<el-table-column label="车型" align="center" prop="chexing" width="100">
<template #default="{ row }">
<span v-if="row.chexing == 'C1'">小车</span>
<span v-if="row.chexing == 'D'">摩托车</span>
<span v-if="row.chexing == 'B2'">货车</span>
</template>
</el-table-column>
<el-table-column label="科目" align="center" prop="examType" width="100">
<template #default="{ row }">
<span v-if="row.examType == '1'">科一</span>
<span v-if="row.examType == '4'">科四</span>
</template>
</el-table-column>
<el-table-column label="章节" align="center" prop="sortName" min-width="100" />
<el-table-column label="专项" align="center" prop="categoryTitle" width="100" />
<el-table-column label="图片" align="center" width="100">
<template #default="{ row }">
<!-- <img v-if="row.subPic" :src="`https://ss-cloud.ahduima.com/xjxc/pic/${row.subPic}`" width="80px"> -->
<el-image
v-if="row.subPic"
:src="`https://ss-cloud.ahduima.com/xjxc/pic/${row.subPic}`"
:preview-src-list="[`https://ss-cloud.ahduima.com/xjxc/pic/${row.subPic}`]"
:lazy="true"
style="width: 80px"
/>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="140">
<template #default="scope">
<el-button type="primary" link @click="handleEdit(scope.row)">编辑</el-button>
<el-button type="primary" link @click="handleDelete(scope.row.id)">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
<QuestionAddForm ref="dialogAddForm" @update="getList" />
</div>
</template>
<script setup name="XjDatabase">
import { searchQuestion, deleteQuestion } from '@/api/xjapplet/xjdatabase'
import QuestionAddForm from './components/QuestionAddForm.vue'
const loading = ref(false)
const total = ref(0)
const tableList = ref([])
const queryParams = reactive({
subTitle: '',
chexing: 'C1',
examType: '1',
isPic: undefined,
pageNo: 1,
pageSize: 100
})
function getList() {
loading.value = true
searchQuestion(queryParams).then((response) => {
tableList.value = response.list
total.value = response.total
loading.value = false
})
}
function handleQuery() {
getList()
}
function resetQuery() {
queryParams.subTitle = ''
handleQuery()
}
const dialogAddForm = ref(null)
function handleEdit(item) {
dialogAddForm.value.open(item)
}
function handleAdd() {
dialogAddForm.value.open({
examType: queryParams.examType,
chexing: queryParams.chexing
})
}
function handleDelete(id) {
deleteQuestion(id).then(() => {
getList()
})
}
</script>
<style lang="scss" scoped></style>