若依前后端分离版本项目总结笔记

news2024/11/26 11:48:16

若依前后端分离学习笔试

1.路由问题

在这里插入图片描述

注意这个是前端找到你的路由的路径

2.表格开关按钮快速实现

在这里插入图片描述

  <el-table-column label="状态" align="center" key="status">
        <template slot-scope="scope">
          <el-switch
            v-model="scope.row.status"
            active-value="0"
            inactive-value="1"
            @change="handleStatusChange(scope.row)"
          ></el-switch>
        </template>
      </el-table-column>




//methods add this method


    // 状态修改
    handleStatusChange(row) {  
      let text = row.status === "0" ? "启用" : "停用";
      this.$modal.confirm('确认要"' + text + '""' + row.title + '"量表吗?').then(function() {
        return changeStatus(row.scaleId,row.status);
      }).then(() => {
        this.$modal.msgSuccess(text + "成功");
      }).catch(function() {
        row.status = row.status === "0" ? "1" : "0";
      });
    },
// import this
import { listScaleInfo, getScaleInfo, delScaleInfo, addScaleInfo, updateScaleInfo, changeStatus } from "@/api/businessManagement/scaleBaseinfo";






// 修改分类状态
export function changeStatus(scaleId,status) {
    const data = {
      scaleId,
      status
    }
    return request({
      url: '/businessManage/scaleInfo/changeStatus',
      method: 'put',
      data: data
    })
  }
  



    @Log(title = "修改状态", businessType = BusinessType.UPDATE)
    @PutMapping("/changeStatus")
    public  AjaxResult  changeStatus(@RequestBody ScaleBaseinfo scaleBaseinfo)
    {

        return toAjax(scaleBaseinfoService.changeStatus(scaleBaseinfo));
    }

//interface generate this method automatically


  @Override
    public int changeStatus(ScaleBaseinfo scaleBaseinfo) {
        return scaleBaseinfoMapper.updateScaleBaseinfo(scaleBaseinfo);
    }

3.选中指定的导出和批量导出

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DzSR5QCH-1692860445254)(C:\Users\My Windows pc\AppData\Roaming\Typora\typora-user-images\image-20230805105954569.png)]

      <el-col :span="1.5">
        <template>
          <div>
            <el-button type="primary" icon="el-icon-download" @click="handleExport"  size="mini">批量导出
              <el-dropdown @command="handleExportCommand">
              <span class="el-dropdown-link">
                <i class="el-icon-arrow-down el-icon--right"></i>
              </span>
              <el-dropdown-menu slot="dropdown">
                <el-dropdown-item command="selected">当前选中</el-dropdown-item>
                <el-dropdown-item command="search">当前搜索</el-dropdown-item>
              </el-dropdown-menu>
            </el-dropdown></el-button>
            
          </div>
        </template>
        
      </el-col>




 /** 导出按钮操作 */
    handleExport() {
      // 根据不同的导出选项执行不同的导出逻辑
      if (this.exportOption === 'selected') {
        // 导出当前选中的数据
        // 执行导出逻辑
        if(this.queryParams.stuIds.length === 0){
          // alert("请选中学生数据进行导出!");
          this.$modal.msgWarning("请选中学生数据进行导出!");
          return;
        }

      this.download('usersManage/student/export', {
        ...this.queryParams 
       }, `Student_${new Date().getTime()}.xlsx`)
   
      } else if (this.exportOption === 'search') {
        // 导出当前搜索的数据
        // 执行导出逻辑
        this.download('usersManage/student/export', {
        ...this.queryParams  
       }, `Student_${new Date().getTime()}.xlsx`)
      } else {
        // 默认导出全部数据
        // 执行导出逻辑
        this.$modal.msgWarning("请选中导出的类型!");
      }
    },
    handleExportCommand(command) {
      this.exportOption = command;
      this.handleExport();
    },


后端code

    /**
     * 导出学生基本信息列表
     */
    @PreAuthorize("@ss.hasPermi('usersManage:student:export')")
    @Log(title = "学生基本信息", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, BasicStudent basicStudent)
    {
        List<BasicStudent> list = bStudentService.selectStudentVoList(basicStudent);
        ExcelUtil<BasicStudent> util = new ExcelUtil<BasicStudent>(BasicStudent.class);
        util.exportExcel(response, list, "学生基本信息数据");
    }






//注意这里第一行实现的东西,直接可以batchExport

    <select id="selectBStudentList" parameterType="BasicStudent" resultMap="BStudentResult">
        <include refid="selectBStudentVo"/>
        <where>
            <if test="stuIds != null">
            AND stu_id IN
            <foreach collection="stuIds" item="stuId" separator="," open="(" close=")">
                #{stuId}
            </foreach>
            </if>
            <if test="studentId != null  and studentId != ''"> and stu_id = #{studentId}</if>
            <if test="stuName != null  and stuName != ''"> and stu_name like concat('%', #{stuName}, '%')</if>
            <if test="sessionId != null "> and session_id = #{sessionId}</if>
            <if test="schId != null "> and b.sch_id = #{schId}</if>
            <if test="cId != null "> and clazz_id = #{cId}</if>
            <if test="pId != null "> and parent_id = #{pId}</if>

            <if test="schoolName != null  and schoolName != ''"> and sch.school_name = #{schoolName}</if>
            <if test="area != null  and area != ''"> and sch.area = #{area}</if>

            <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
                and date_format(s.createTime,'%y%m%d') &gt;= date_format(#{params.beginTime},'%y%m%d')
            </if>
            <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
                and date_format(s.createTime,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')
            </if>

            <if test="createBy != null  and createBy != ''"> and s.createBy = #{createBy}</if>
            <if test="updateBy != null "> and s.updateBy = #{updateBy}</if>


        </where>
    </select>

4.生产环境打包前端问题

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-obqn1viz-1692860445254)(C:\Users\My Windows pc\AppData\Roaming\Typora\typora-user-images\image-20230814151450666.png)]

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FCuPRfsS-1692860445255)(C:\Users\My Windows pc\AppData\Roaming\Typora\typora-user-images\image-20230814145627399.png)]

[
        {
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "remark": null,
            "areaId": 1,
            "areaName": "南校区",
            "schId": 2,
            "basicSchool": null,
            "basicGradeList": [
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 1,
                    "gradeName": "一年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 2,
                    "gradeName": "二年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 3,
                    "gradeName": "三年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 4,
                    "gradeName": "一年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 5,
                    "gradeName": "二年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 6,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 7,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 9,
                    "gradeName": "二年级",
                    "areaId": 4,
                    "basicSchoolArea": null,
                    "basicClassList": null
                }
            ]
        },
        {
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "remark": null,
            "areaId": 2,
            "areaName": "北校区",
            "schId": 2,
            "basicSchool": null,
            "basicGradeList": [
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 1,
                    "gradeName": "一年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 2,
                    "gradeName": "二年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 3,
                    "gradeName": "三年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 4,
                    "gradeName": "一年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 5,
                    "gradeName": "二年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 6,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 7,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 9,
                    "gradeName": "二年级",
                    "areaId": 4,
                    "basicSchoolArea": null,
                    "basicClassList": null
                }
            ]
        },
        {
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "remark": null,
            "areaId": 3,
            "areaName": "东校区",
            "schId": 2,
            "basicSchool": null,
            "basicGradeList": [
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 1,
                    "gradeName": "一年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 2,
                    "gradeName": "二年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 3,
                    "gradeName": "三年级",
                    "areaId": 1,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 4,
                    "gradeName": "一年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 5,
                    "gradeName": "二年级",
                    "areaId": 2,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 6,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 7,
                    "gradeName": "一年级",
                    "areaId": 3,
                    "basicSchoolArea": null,
                    "basicClassList": null
                },
                {
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "remark": null,
                    "gradeId": 9,
                    "gradeName": "二年级",
                    "areaId": 4,
                    "basicSchoolArea": null,
                    "basicClassList": null
                }
            ]这个数据 怎么用elmentUI层级表示,一级显示的label是areaName, children: 'basicGradeList',二级显示的label是gradeName, children: 'basicClassList',三级显示的是className,没有children,怎么用elmentUI表示

5.路由跳转问题

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-m54viF4f-1692860445256)(C:\Users\My Windows pc\AppData\Roaming\Typora\typora-user-images\image-20230815164743889.png)]

  viewGrade(row){
      const areaId = row.areaId;
      this.$router.push({
            path: "/schoolManage/grade/",
            query: {
              areaId:  areaId
            }
          });
    },

代办问题:

查询的一些列表没有加上 学校id

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/922461.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

笔记汇总2(中断、GDB、编程实例)

前言 本文主要是一些学习笔记的汇总&#xff0c;主要参考公众号&#xff1a;嵌入式与Linux那些事&#xff0c;GDB多线程调试&#xff0c;自实现unique_ptr,share_ptr&#xff0c;宏&#xff0c;线程池仅供自己学习使用。 中断与异常有何区别? 中断是指外部硬件产生的一个电信…

【Linux】socket编程(二)

目录 前言 TCP通信流程 TCP通信的代码实现 tcp_server.hpp编写 tcp_server.cc服务端的编写 tcp_client.cc客户端的编写 整体代码 前言 上一章我们主要讲解了UDP之间的通信&#xff0c;本章我们将来讲述如何使用TCP来进行网络间通信&#xff0c;主要是使用socket API进…

whisper 语音识别项目部署

1.安装anaconda软件 在如下网盘免费获取软件&#xff1a; 链接&#xff1a;https://pan.baidu.com/s/1zOZCQOeiDhx6ebHh5zNasA 提取码&#xff1a;hfnd 2.使用conda命令创建python3.8环境 conda create -n whisper python3.83.进入whisper虚拟环境 conda activate whisper4.…

MyBatis的核心技术掌握---分页功能,详细易懂(下)

目录 一.前言 二.MyBatis 的分页 三.MyBatis 的特殊字符处理 一.前言 继上篇MyBatis 的文章&#xff0c;我们继续来学习MyBatis吧&#xff01;&#xff01;&#xff01; 上篇的博客链接&#xff1a; http://t.csdn.cn/5iUEDhttp://t.csdn.cn/5iUED 接下来进…

什么是梯度下降

什么是梯度下降 根据已有数据的分布来预测可能的新数据&#xff0c;这是回归 希望有一条线将数据分割成不同类别&#xff0c;这是分类 无论回归还是分类&#xff0c;我们的目的都是让搭建好的模型尽可能的模拟已有的数据 除了模型的结构&#xff0c;决定模型能否模拟成功的关键…

电商项目part05 分布式ID服务实战

背景 日常开发中&#xff0c;需要对系统中的各种数据使用 ID 唯一表示&#xff0c;比如用户 ID 对应且仅对应一个人&#xff0c;商品 ID 对应且仅对应一件商品&#xff0c;订单 ID 对应且仅对应 一个订单。现实生活中也有各种 ID&#xff0c;比如身份证 ID 对应且仅对应一个人…

XL74HC165 Parallel-2-Serail Controller

XL74HC165 Parallel-2-Serail Controller (SOP16) ( SN74LS165, CD74LS165 - DIP16 / SOP16 ) ( 不频繁存取, 可以考虑 I2C I/O Expender ) PCF8574/ T module (8bits Address *0x40~0x4E* ) PCF8574A module (8bit address *0x70~0x7E* )XL74HC165 fmax : VCC 3.3V &l…

冠达管理股票分析:首家!券商放大招,立马拉升

A股的“回购潮”&#xff0c;开始蔓延至券商行业。 广东研山私募证券投资&#xff08;百度搜索冠达管理)基金管理有限公司成立于2022年&#xff0c;是一家专注于私募基金管理的公司。8月23日盘后&#xff0c;国金证券发布公告称&#xff0c;收到控股股东长沙涌金&#xff08;集…

Fegin异步情况丢失上下文问题

在微服务的开发中&#xff0c;我们经常需要服务之间的调用&#xff0c;并且为了提高效率使用异步的方式进行服务之间的调用&#xff0c;在这种异步的调用情况下会有一个严重的问题&#xff0c;丢失上文下 通过以上图片可以看出异步丢失上下文的原因是不在同一个线程&#xff0c…

『PyQt5-基础篇』| 01 简单的基础了解

『PyQt5-基础篇』&#xff5c; 01 简单的基础了解 1 Qt了解1.1 支持的平台1.2 Qt Creator 2 PyQt52.1 PyQt5主要模块2.2 PyQt5主要类2.3 重要类的继承关系2.4 常用控件 1 Qt了解 跨平台C图形用户界面应用程序开发框架&#xff1b;既可以开发GUI程序&#xff0c;也可用于开发非…

JMeter分布式集群---部署多台机器进行性能压力测试

有些时候&#xff0c;我们在进行压力测试的时候&#xff0c;随着模拟用户的增加&#xff0c;电脑的性能&#xff08;CPU,内存&#xff09;占用是非常大的&#xff0c;为了我们得到更加理想的测试结果&#xff0c;我们可以利用jmeter的分布式来缓解机器的负载压力&#xff0c;分…

LVS集群 (四十四)

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 目录 前言 一、集群概述 1. 负载均衡技术类型 2. 负载均衡实现方式 二、LVS结构 三、LVS工作模式 四、LVS负载均衡算法 1. 静态负载均衡 2. 动态负载均衡 五、ipvsadm命令详…

npm报错:xxx packages are looking for funding run `npm fund` for details(解决办法)

报错信息&#xff1a;30 packages are looking for funding run npm fund for details 报错原因&#xff1a;这里是开发者捐赠支持的提示&#xff0c;打开一个github的链接之后&#xff0c;会显示是否需要打赏捐赠的信息。 解决方案&#xff1a;这个打赏是资源的&#xff0c;因…

Golang Gorm 一对多关系 关系表创建

一对多关系 我们先从一对多开始多表关系的学习因为一对多的关系生活中到处都是&#xff0c;例如&#xff1a; 老板与员工女神和添狗老师和学生班级与学生用户与文章 在创建的时候先将没有依赖的创建。表名称ID就是外键。外键要和关联的外键的数据类型要保持一致。 package ma…

投影标杆,旗舰实力,极米投影仪Z7X为用户创造影院级体验

2023年&#xff0c;在彩电消费市场复苏疲软的背景下&#xff0c;智能投影这个显示新品类却持续走红。今年第一季度&#xff0c;极米科技推出Z系列全新一代产品极米Z7X&#xff0c;和极米Z6相比&#xff0c;在保持轻薄体积不变的情况下将亮度提升了83%&#xff0c;达到600CCB 流…

五、linux分析命令

linux分析命令 一、服务器基础知识二、linux文件结构三、linux文件权限四、linux命令1、安装应用fedora家族: 如centosdebain家族&#xff1a;如ubuntu 2、获取帮助第一种&#xff1a;command --help第二种&#xff1a;man command第三种&#xff1a;info 3、服务器性能分析基础…

先加密后签名还是先签名后加密?

先签名后加密还是先加密后签名呢&#xff1f; 先说结论&#xff0c;通常情况下应该先签名后加密。 签名算法计算出来的签名是为了验证消息的完整性&#xff0c;签名算法有比如HMAC-SHA256&#xff0c;加密算法则是为了保证消息的机密性&#xff0c;类似AES-GCM、AES-CBC&#…

海马优化(SHO)算法(含开源MATLAB代码)

先做一个声明&#xff1a;文章是由我的个人公众号中的推送直接复制粘贴而来&#xff0c;因此对智能优化算法感兴趣的朋友&#xff0c;可关注我的个人公众号&#xff1a;启发式算法讨论。我会不定期在公众号里分享不同的智能优化算法&#xff0c;经典的&#xff0c;或者是近几年…

最小二乘法——参数估计过程推导

一 准备 1 给定数据集 D{(),(),...,()},其中假设X是一维的情况&#xff0c;即只有一个自变量 2 线性回归学习的目标&#xff1a;,使得 3 如何确定w和b&#xff1f;关键在于衡量f(x)和y之间距离的方法&#xff0c;此处使用的是‘均方误差’&#xff0c;其具有非常好的几何意义&a…

23款奔驰GLE450时尚型升级ACC自适应巡航系统,解放双脚缓解驾驶疲劳

有的时候你是否厌倦了不停的刹车、加油&#xff1f;是不是讨厌急刹车&#xff0c;为掌握不好车距而烦恼&#xff1f;如果是这样&#xff0c;那么就升级奔驰原厂ACC自适应式巡航控制系统&#xff0c;带排队自动辅助和行车距离警报功能&#xff0c;感受现代科技带给你的舒适安全和…