lidongze 3 lat temu
rodzic
commit
73e39fa3bd

+ 30 - 0
src/main/java/com/izouma/nineth/domain/MetaQuestionNote.java

@@ -0,0 +1,30 @@
+package com.izouma.nineth.domain;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import javax.persistence.Entity;
+
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+@Entity
+@ApiModel("元宇宙题库记录")
+public class MetaQuestionNote extends BaseEntity {
+
+    @ApiModelProperty("用户ID")
+    @ExcelProperty("用户ID")
+    private Long userId;
+
+    @ApiModelProperty("题目ID")
+    @ExcelProperty("题目ID")
+    private Long questionId;
+
+    @ApiModelProperty("是否完成")
+    @ExcelProperty("是否完成")
+    private boolean finsh;
+}

+ 13 - 0
src/main/java/com/izouma/nineth/repo/MetaQuestionNoteRepo.java

@@ -0,0 +1,13 @@
+package com.izouma.nineth.repo;
+
+import com.izouma.nineth.domain.MetaQuestionNote;
+import org.springframework.data.jpa.repository.JpaRepository;
+import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
+import org.springframework.data.jpa.repository.Modifying;
+import org.springframework.data.jpa.repository.Query;
+
+import javax.transaction.Transactional;
+
+public interface MetaQuestionNoteRepo extends JpaRepository<MetaQuestionNote, Long>, JpaSpecificationExecutor<MetaQuestionNote> {
+
+}

+ 20 - 0
src/main/java/com/izouma/nineth/service/MetaQuestionNoteService.java

@@ -0,0 +1,20 @@
+package com.izouma.nineth.service;
+
+import com.izouma.nineth.domain.MetaQuestionNote;
+import com.izouma.nineth.dto.PageQuery;
+import com.izouma.nineth.repo.MetaQuestionNoteRepo;
+import com.izouma.nineth.utils.JpaUtils;
+import lombok.AllArgsConstructor;
+import org.springframework.data.domain.Page;
+import org.springframework.stereotype.Service;
+
+@Service
+@AllArgsConstructor
+public class MetaQuestionNoteService {
+
+    private MetaQuestionNoteRepo metaQuestionNoteRepo;
+
+    public Page<MetaQuestionNote> all(PageQuery pageQuery) {
+        return metaQuestionNoteRepo.findAll(JpaUtils.toSpecification(pageQuery, MetaQuestionNote.class), JpaUtils.toPageRequest(pageQuery));
+    }
+}

+ 57 - 0
src/main/java/com/izouma/nineth/web/MetaQuestionNoteController.java

@@ -0,0 +1,57 @@
+package com.izouma.nineth.web;
+import com.alibaba.excel.util.CollectionUtils;
+import com.izouma.nineth.domain.MetaQuestionNote;
+import com.izouma.nineth.dto.MetaRestResult;
+import com.izouma.nineth.dto.PageQuery;
+import com.izouma.nineth.repo.MetaQuestionNoteRepo;
+import com.izouma.nineth.service.MetaQuestionNoteService;
+import com.izouma.nineth.utils.SecurityUtils;
+import com.izouma.nineth.utils.excel.ExcelUtils;
+import lombok.AllArgsConstructor;
+import org.springframework.data.domain.Page;
+import org.springframework.web.bind.annotation.*;
+
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+@RestController
+@RequestMapping("/metaQuestionNote")
+@AllArgsConstructor
+public class MetaQuestionNoteController extends BaseController {
+    private MetaQuestionNoteService metaQuestionNoteService;
+    private MetaQuestionNoteRepo metaQuestionNoteRepo;
+
+    //@PreAuthorize("hasRole('ADMIN')")
+    @PostMapping("/all")
+    public Page<MetaQuestionNote> all(@RequestBody PageQuery pageQuery) {
+        return metaQuestionNoteService.all(pageQuery);
+    }
+
+    @GetMapping("/excel")
+    @ResponseBody
+    public void excel(HttpServletResponse response, PageQuery pageQuery) throws IOException {
+        List<MetaQuestionNote> data = all(pageQuery).getContent();
+        ExcelUtils.export(response, data);
+    }
+
+    @PostMapping("/save")
+    public MetaRestResult<List<MetaQuestionNote>> save(@RequestBody List<Long> metaQuestionIds) {
+        if (CollectionUtils.isEmpty(metaQuestionIds)) {
+            return MetaRestResult.returnError("Illegal parameter : metaQuestionIds can not be null");
+        }
+        List<MetaQuestionNote> metaQuestionNotes = new ArrayList<>();
+        Long userId = SecurityUtils.getAuthenticatedUser().getId();
+        metaQuestionIds.forEach(id -> {
+            MetaQuestionNote metaQuestionNote = new MetaQuestionNote();
+            metaQuestionNote.setUserId(userId);
+            metaQuestionNote.setQuestionId(id);
+            metaQuestionNotes.add(metaQuestionNote);
+        });
+        return MetaRestResult.returnSuccess(metaQuestionNoteRepo.saveAll(metaQuestionNotes));
+
+    }
+
+}
+

+ 9 - 1
src/main/vue/src/router.js

@@ -1612,7 +1612,15 @@ const router = new Router({
                     meta: {
                         title: '走马灯',
                     },
-                }
+                },
+                {
+                    path: '/metaQuestionNoteList',
+                    name: 'MetaQuestionNoteList',
+                    component: () => import(/* webpackChunkName: "metaQuestionNoteList" */ '@/views/MetaQuestionNoteList.vue'),
+                    meta: {
+                       title: '题库记录',
+                    },
+               }
                 /**INSERT_LOCATION**/
             ]
         },

+ 170 - 0
src/main/vue/src/views/MetaQuestionNoteList.vue

@@ -0,0 +1,170 @@
+<template>
+	<div class="list-view">
+		<page-title>
+			<el-button
+				@click="download"
+				icon="el-icon-upload2"
+				:loading="downloading"
+				:disabled="fetchingData"
+				class="filter-item"
+			>
+				导出
+			</el-button>
+		</page-title>
+		<div class="filters-container">
+			<el-input
+				placeholder="搜索..."
+				v-model="search"
+				clearable
+				class="filter-item search"
+				@keyup.enter.native="getData"
+			>
+				<el-button @click="getData" slot="append" icon="el-icon-search"> </el-button>
+			</el-input>
+		</div>
+		<el-table
+			:data="tableData"
+			row-key="id"
+			ref="table"
+			header-row-class-name="table-header-row"
+			header-cell-class-name="table-header-cell"
+			row-class-name="table-row"
+			cell-class-name="table-cell"
+			:height="tableHeight"
+			v-loading="fetchingData"
+		>
+			<el-table-column v-if="multipleMode" align="center" type="selection" width="50"> </el-table-column>
+			<el-table-column prop="id" label="ID" width="100"> </el-table-column>
+			<el-table-column prop="userId" label="用户ID"> </el-table-column>
+			<el-table-column prop="questionId" label="题目ID"> </el-table-column>
+
+			<el-table-column label="操作" align="center" fixed="right" width="150">
+				<template slot-scope="{ row }">
+					<el-button @click="editRow(row)" type="primary" size="mini" plain> 编辑 </el-button>
+					<el-button @click="deleteRow(row)" type="danger" size="mini" plain> 删除 </el-button>
+				</template>
+			</el-table-column>
+		</el-table>
+		<div class="pagination-wrapper">
+			<!-- <div class="multiple-mode-wrapper"> 
+                <el-button v-if="!multipleMode" @click="toggleMultipleMode(true)"> 批量编辑 </el-button>
+                <el-button-group v-else> 
+                    <el-button @click="operation1"> 批量操作1 </el-button>
+                    <el-button @click="operation2"> 批量操作2 </el-button>
+                    <el-button @click="toggleMultipleMode(false)"> 取消 </el-button>
+                </el-button-group>
+            </div> -->
+			<el-pagination
+				background
+				@size-change="onSizeChange"
+				@current-change="onCurrentChange"
+				:current-page="page"
+				:page-sizes="[10, 20, 30, 40, 50]"
+				:page-size="pageSize"
+				layout="total, sizes, prev, pager, next, jumper"
+				:total="totalElements"
+			>
+			</el-pagination>
+		</div>
+	</div>
+</template>
+<script>
+import { mapState } from 'vuex';
+import pageableTable from '@/mixins/pageableTable';
+
+export default {
+	name: 'MetaQuestionNoteList',
+	mixins: [pageableTable],
+	data() {
+		return {
+			multipleMode: false,
+			search: '',
+			url: '/metaQuestionNote/all',
+			downloading: false
+		};
+	},
+	computed: {
+		selection() {
+			return this.$refs.table.selection.map(i => i.id);
+		}
+	},
+	methods: {
+		beforeGetData() {
+			return { search: this.search, query: { del: false } };
+		},
+		toggleMultipleMode(multipleMode) {
+			this.multipleMode = multipleMode;
+			if (!multipleMode) {
+				this.$refs.table.clearSelection();
+			}
+		},
+		addRow() {
+			this.$router.push({
+				path: '/metaQuestionNoteEdit',
+				query: {
+					...this.$route.query
+				}
+			});
+		},
+		editRow(row) {
+			this.$router.push({
+				path: '/metaQuestionNoteEdit',
+				query: {
+					id: row.id
+				}
+			});
+		},
+		download() {
+			this.downloading = true;
+			this.$axios
+				.get('/metaQuestionNote/excel', {
+					responseType: 'blob',
+					params: { size: 10000 }
+				})
+				.then(res => {
+					console.log(res);
+					this.downloading = false;
+					const downloadUrl = window.URL.createObjectURL(new Blob([res.data]));
+					const link = document.createElement('a');
+					link.href = downloadUrl;
+					link.setAttribute('download', res.headers['content-disposition'].split('filename=')[1]);
+					document.body.appendChild(link);
+					link.click();
+					link.remove();
+				})
+				.catch(e => {
+					console.log(e);
+					this.downloading = false;
+					this.$message.error(e.error);
+				});
+		},
+		operation1() {
+			this.$notify({
+				title: '提示',
+				message: this.selection
+			});
+		},
+		operation2() {
+			this.$message('操作2');
+		},
+		deleteRow(row) {
+			this.$alert('删除将无法恢复,确认要删除么?', '警告', { type: 'error' })
+				.then(() => {
+					return this.$http.post(`/metaQuestionNote/del/${row.id}`);
+				})
+				.then(() => {
+					this.$message.success('删除成功');
+					this.getData();
+				})
+				.catch(e => {
+					if (e !== 'cancel') {
+						this.$message.error(e.error);
+					}
+				});
+		}
+	}
+};
+</script>
+<style lang="less" scoped>
+
+</style>