当前位置:   article > 正文

前后端分离项目!!!!Springboot+vue3实现一个学院官网的前后端!_springbootvue3框架官网

springbootvue3框架官网

这是我的课题内容,用作记录也用做分享!

本页面的搭建采用的是组件化开发,开发出的最终的页面成品如图3.1所示

                                                              图3.1

     

全部的页面共由三部分组成HeaderItem即头部组件,FooterItem底部组件,和中间部分的内容,其中头部组件的代码主要包括最顶部的图片,导航栏。HeaderItem中的主要代码为

  1. <template>
  2.   <div>
  3.     <div class="header">
  4.       <img src="@/assets/header.jpg" alt="" style="margin-top: 4px">
  5.     </div>
  6.     <div id="nav">
  7.       <div class="line"></div>
  8.       <el-menu
  9.           :default-active="activeIndex2"
  10.           class="el-menu-demo"
  11.           mode="horizontal"
  12.           @select="handleSelect"
  13.           background-color="#015723"
  14.           text-color="#fff"
  15.           active-text-color="#ffd04b"
  16.           style="height: 41px ;width: 1010px;"
  17.           align-content: center>
  18.         <el-menu-item index="1" @click="goTOPage(1)">首页</el-menu-item>
  19.         <el-menu-item index="2" @click="goTOPage(2)">学院简介</el-menu-item>
  20.         <el-menu-item index="3">院务公开</el-menu-item>
  21.         <el-sub-menu index="4">
  22.           <template #title>组织结构</template>
  23.           <el-menu-item index="4-1">组织结构</el-menu-item>
  24.           <el-menu-item index="4-2">学院领导</el-menu-item>
  25.           <el-menu-item index="4-3">学院办公室</el-menu-item>
  26.           <el-menu-item index="4-4">教学部</el-menu-item>
  27.           <el-menu-item index="4-5">学工办</el-menu-item>
  28.           <el-menu-item index="4-6">软件工程与技术</el-menu-item>
  29.           <el-menu-item index="4-7">互联网工程与技术</el-menu-item>
  30.           <el-menu-item index="4-8">数据科学与大技术</el-menu-item>
  31.           <el-menu-item index="4-9">实验实训中心</el-menu-item>
  32.         </el-sub-menu>
  33.         <el-sub-menu index="5">
  34.           <template #title>党建工作</template>
  35.           <el-menu-item index="5-1">理论学习</el-menu-item>
  36.           <el-menu-item index="5-2">师生党建</el-menu-item>
  37.           <el-menu-item index="5-3">组织结构</el-menu-item>
  38.           <el-menu-item index="5-4">教工之家</el-menu-item>
  39.         </el-sub-menu>
  40.         <el-sub-menu index="6">
  41.           <template #title>教学科研</template>
  42.           <el-menu-item index="6-1">课程建设</el-menu-item>
  43.           <el-menu-item index="6-2">专业建设</el-menu-item>
  44.           <el-menu-item index="6-3">教研改革</el-menu-item>
  45.           <el-menu-item index="6-4">教务信息</el-menu-item>
  46.         </el-sub-menu>
  47.         <el-sub-menu index="7">
  48.           <template #title>实践教学</template>
  49.           <el-menu-item index="7-1">学科竞赛</el-menu-item>
  50.           <el-menu-item index="7-2">集中实践</el-menu-item>
  51.         </el-sub-menu>
  52.         <el-sub-menu index="8">
  53.           <template #title>学生工作</template>
  54.           <el-menu-item index="8-1">公告通知</el-menu-item>
  55.           <el-menu-item index="8-2">学生组织</el-menu-item>
  56.           <el-menu-item index="8-3">社团风采</el-menu-item>
  57.           <el-menu-item index="8-4">学生活动</el-menu-item>
  58.           <el-menu-item index="8-5">资助工作</el-menu-item>
  59.           <el-menu-item index="8-6">宿舍文化</el-menu-item>
  60.         </el-sub-menu>
  61.         <el-menu-item>招生信息</el-menu-item>
  62.         <el-menu-item>管理员登录</el-menu-item>
  63.       </el-menu>
  64.     </div>
  65.   </div>
  66. </template>

其中,在点击顶部导航栏时,会进行页面的跳转,vue中的语法进行页面跳转时,是通过内部的路由直接进行页面的跳转。具体的语法格式为。

  1. <script lang="js">
  2. import router from "@/router/index.js";
  3. export default {
  4.   name: "HeaderItem",
  5.   methods:{
  6.     goTOPage(index){
  7.       if(index===1){
  8.         router.push("/index")
  9.         console.log("index")
  10.       }else if(index===2){
  11.         router.push("/xy")
  12.       }
  13.     }
  14.   }
  15. }
  16. import { ref } from 'vue'
  17. </script>

在设置好路由后,直接进行router.push()直接就能够进行页面的跳转!

页面的底部主要是FooterItem,FooterItem实现效果如图3.2所示

                                                                     图3.2

其中的照片能够实现走马灯的效果。在页面的最下部藏着一个登录字体,点击后能够跳转到登录的页面。实现照片的跑马灯的效果代码为

  1. <script>
  2. import {ref, onMounted, nextTick, onUnmounted} from "vue";
  3. import shufa from "@/assets/轮播/书法协会.jpg"
  4. import tiyu from "@/assets/轮播/体育文化广场节.jpg"
  5. import jianmeicao from "@/assets/轮播/健美操.png"
  6. import zhengxian from "@/assets/轮播/创先争优.jpg"
  7. import hongyang from "@/assets/轮播/弘扬劳动教育.jpg"
  8. import xinli from "@/assets/轮播/心里拓展运动会.png"
  9. import shetuan from "@/assets/轮播/社团联合.jpg"
  10. import zhumeng from "@/assets/轮播/筑梦青春自信飞扬.jpg"
  11. import ruanjian from "@/assets/轮播/软件设计大赛.jpg"
  12. import router from "@/router/index.js";
  13. export default {
  14.   name: "FooterItem",
  15.   setup(){
  16.     const items=[      {id:1,image:shufa},      {id:2,image:tiyu},      {id:3,image:jianmeicao},      {id:4,image:zhengxian},      {id:5,image:hongyang},      {id:6,image:xinli},      {id:7,image:shetuan},      {id:8,image:zhumeng},      {id:9,image:ruanjian},    ];
  17.     const sliderRef = ref(null);
  18.     const movement = ref(-2);
  19.     let intervalId = null;
  20.     const move = () => {
  21.       const ul = sliderRef.value;
  22.       if (!ul) return;
  23.       const movementValue = movement.value;
  24.       const left = ul.offsetLeft + movementValue;
  25.       if (Math.abs(left) >= ul.offsetWidth) {
  26.         ul.style.left = '0';
  27.       } else {
  28.         ul.style.left = left + 'px';
  29.       }
  30.     };
  31.     const stopSlider = () => {
  32.       clearInterval(intervalId);
  33.     };
  34.     const startSlider = () => {
  35.       intervalId = setInterval(move, 20);
  36.     };
  37.     const login=()=>{
  38.       router.push("/login")
  39.     }
  40.     onMounted(() => {
  41.       nextTick(() => {
  42.         const ul = sliderRef.value;
  43.         const sliderItems = ul.innerHTML;
  44.         const itemWidth = ul.firstElementChild.offsetWidth;
  45.         ul.innerHTML += sliderItems;
  46.         ul.style.width = (ul.childElementCount * itemWidth) + 'px';
  47.         startSlider();
  48.       });
  49.     });
  50.     onUnmounted(() => {
  51.       clearInterval(intervalId);
  52.     });
  53.     return {
  54.       items,
  55.       sliderRef,
  56.       stopSlider,
  57.       startSlider,
  58.       login,
  59.     };
  60.   },
  61. };
  62. </script>

其中通过startSlider来开始照片的移动,在鼠标指针移动到照片上时,通过@click点击事件来触发stopSlider进行是图片的暂停。

中间主页面的部分是通过后端拿到数据来放到前端进行显示,具体的多少内容通过vue3语句的<v-for>标签来控制,具体为for-each语句。

  
  1.   <div class="flashboxu_u">
  2.           <div class="block text-center">
  3.             <el-carousel height="300px">
  4.               <el-carousel-item v-for="item in images" :key="item">
  5.                 <router-link :to="`/${item.id}`">
  6.                   <img :src="item.url" class="gundongimage" alt="">
  7.                 </router-link>
  8.               </el-carousel-item>
  9.             </el-carousel>
  10.           </div>
  11.         </div>
  12.       </td>
  13.     </tr>
  14.   </table>
  15. </div>
  16. <div class="clear"></div>
  17. <div class="container">
  18.   <div class="row">
  19.     <div class="col">
  20.       <div class="news-container">
  21.         <div class="news">
  22.           <div class="news-tit" style="width: 480px">
  23.             <h2>学院新闻</h2>
  24.           </div>
  25.           <!--                与后端连接-->
  26.           <ul>
  27.             <li v-for="article in articleList.area1" :key="article.id" style="text-align: left;display: flex;justify-content: space-between;" @click="toView(article.id)">
  28.               <span class="title">{{ article.title }}</span>
  29.               <span class="time">{{ article.time }}</span>
  30.             </li>
  31.           </ul>
  32.         </div>
  33.       </div>
  34.       <div class="news-container">
  35.         <div class="news">
  36.           <div class="news-tit" style="width: 480px">
  37.             <h2>学院公告</h2>
  38.           </div>
  39.           <!--                与后端连接-->
  40.           <ul>
  41.             <li v-for="article in articleList.area2" :key="article.id" style="text-align: left;display: flex;justify-content: space-between;">
  42.               <span class="title">{{ article.title }}</span>
  43.               <span class="time">{{ article.time }}</span>
  44.             </li>
  45.           </ul>
  46.         </div>
  47.       </div>
  48.     </div>
  49.   </div>
  50. 分区的script语句
  51. const getArticleList = async () => {
  52.   try {
  53.     const response = await listservice();
  54.     const data = response.data;
  55.     // 根据不同的area进行数据分区
  56.     data.forEach((article) => {
  57.       if (article.area === 1 && articleList.area1.length < 5) {
  58.         articleList.area1.push({
  59.           ...article,   // 复制原始文章对象的所有属性
  60.           time: article.updateTime  // 添加时间字段
  61.         });
  62.       } else if (article.area === 2 && articleList.area2.length < 5) {
  63.         articleList.area2.push({
  64.           ...article,   // 复制原始文章对象的所有属性
  65.           time: article.updateTime   // 添加时间字段
  66.         });
  67.       } else if (article.area === 3 && articleList.area3.length < 5) {
  68.         articleList.area3.push({
  69.           ...article,   // 复制原始文章对象的所有属性
  70.           time: article.updateTime   // 添加时间字段
  71.         });
  72.       } else if (article.area === 4 && articleList.area4.length < 5) {
  73.         articleList.area4.push({
  74.           ...article,   // 复制原始文章对象的所有属性
  75.           time: article.updateTime   // 添加时间字段
  76.         });
  77.       } else if (article.area === 5 && articleList.area5.length < 5) {
  78.         articleList.area5.push({
  79.           ...article,   // 复制原始文章对象的所有属性
  80.           time: article.updateTime   // 添加时间字段
  81.         });
  82.       } else if (article.area === 6 && articleList.area6.length < 5) {
  83.         articleList.area6.push({
  84.           ...article,   // 复制原始文章对象的所有属性
  85.           time: article.updateTime   // 添加时间字段
  86.         });
  87.       }
  88.     });
  89.   } catch (error) {
  90.     console.error(error);
  91.   }
  92. };
  93. onMounted(getArticleList)

3.2 后端文章管理页面的实现

具体的vue实现的页面如图3.3所示

图3.3

    其中的富文本框使用的是咱们国家的一位前端开发工作者开发的一个富文本组件,Wangeditor,这是一个异步的组件,使用起来也比较简单,而我是把它封装到了wangeditor的一个组件中,作为ArticalManager的子组件。具体的内容可以进行内容的传递。

  1. <template>
  2.   <div style="border: 1px solid #ccc">
  3.     <Toolbar
  4.         style="border-bottom: 1px solid #ccc"
  5.         :editor="editorRef"
  6.         :defaultConfig="toolbarConfig"
  7.         :mode="mode" />
  8.     <Editor
  9.         :style="{ height: height + 'px', 'overflow-y': 'hidden' }"
  10.         v-model="valueHtml"
  11.         :defaultConfig="editorConfig"
  12.         :mode="mode"
  13.         @onCreated="handleCreated" />
  14.   </div>
  15. </template>
  16. <script lang="ts" setup>
  17. import '@wangeditor/editor/dist/css/style.css' // 引入 css
  18. import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
  19. import { onBeforeUnmount, computed, shallowRef, ref } from 'vue'
  20. // interface EmitEvent {
  21. //   (e: 'update:modelValue', params: string): void
  22. // }
  23. const props = defineProps({
  24.   height:{
  25.     type:Number,
  26.     default:320
  27.   },
  28.   modelValue:{
  29.     type:String,
  30.     default:''
  31.   },
  32. })
  33. const emit = defineEmits()
  34. const valueHtml = computed({
  35.   get() {
  36.     return props.modelValue
  37.   },
  38.   set(value: string) {
  39.     console.log("value",value)
  40. //子组件传值给父组件
  41.     emit('update:modelValue', value)
  42.   }
  43. })
  44. // 编辑器实例,必须用 shallowRef
  45. const editorRef = shallowRef()
  46. const toolbarConfig = {}
  47. const editorConfig = {
  48.   placeholder: '请输入内容...',
  49.   MENU_CONF: {},
  50. }
  51. // 组件销毁时,也及时销毁编辑器
  52. onBeforeUnmount(() => {
  53.   const { value } = editorRef
  54.   if (value === null) return
  55.   value.destroy()
  56. })
  57. const handleCreated = (editor: any) => {
  58.   editorRef.value = editor // 记录 editor 实例,重要!
  59. }
  60. </script>
  61. <style lang="scss" scoped></style>
  62.     封装完之后就能在后端进行内容的传递,而具体的发布文章和编辑文章到后端,由专门的api接口
  63. const save = async () => {
  64.   dialogFormVisible = false;
  65.   let result = await addservice(articleInfo.value);
  66.   await nextTick(); // 等待DOM更新
  67.   ElMessage.success(result.msg ? result.msg : "添加成功");
  68.   this.$refs.weditor.destroy()
  69. }
  70. //修改操作
  71. const update = async () => {
  72.   // 根据 editId 进行编辑操作
  73.   dialogFormVisible = false;
  74.   let result = await updateservice(articleInfo.value);
  75.   ElMessage.success(result.msg ? result.msg : "编辑成功");
  76.   // ...
  77. }
  78. let isFirstOpen = ref(true)
  79. const putArticle = () => {
  80.   if (editId.value) { // 编辑操作
  81.     dialogFormVisible.value = true;
  82.     const tempContent = articleInfo.value.content; // 临时保存富文本框的内容
  83.     articleInfo.value = {
  84.       ...articleInfo.value, // 保留articleInfo的其他属性值
  85.     };
  86.     nextTick(() => {
  87.       if (shouldResetContent.value) {
  88.         resetEditor(); // 重置富文本编辑器的内容
  89.         shouldResetContent.value = false; // 重置标志位
  90.       } else {
  91.         articleInfo.value.content = tempContent; // 重新赋值富文本框的内容
  92.       }
  93.     });
  94.   }
  95.   if (!editId.value) { // 新增操作
  96.     dialogFormVisible.value = true;
  97.     console.log("新增");
  98.     if (isFirstOpen.value) {
  99.       resetEditor(); // 清除富文本编辑器的内容
  100.       articleInfo.value = {
  101.         id: "",
  102.         title: "",
  103.         description: "",
  104.         content: "",
  105.         area: radio.value,
  106.       };
  107.       isFirstOpen.value = false;
  108.     }
  109.   }
  110. };
  111. let shouldResetContent = ref(false)
  112. const handleRichTextBoxClick = () => {
  113.   shouldResetContent.value = true;
  114. };
  115. const kan=()=>{
  116.   console.log(radio.value)
  117. }
 

这样就能在前端传递参数后在后端接收了。

这个是有源码的,是我的课题设计。可以问我要哦!大家共同进步!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/567685
推荐阅读
相关标签
  

闽ICP备14008679号