12 2023 档案

摘要:package com.example.backendmanage.controller;import com.example.backendmanage.common.AjaxResult;import com.example.backendmanage.info.Menu;import com. 阅读全文
posted @ 2023-12-31 21:49 超爱彬宝同学 阅读(2) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.controller;import com.example.backendmanage.common.AjaxResult;import com.example.backendmanage.info.Role;import com. 阅读全文
posted @ 2023-12-30 19:54 超爱彬宝同学 阅读(9) 评论(0) 推荐(0) 编辑
摘要:<template> <div id="container"> </div> </template> <script> import {findAll} from "@/api/email" export default { data(){ return { latitudeAndLongitude 阅读全文
posted @ 2023-12-29 17:21 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:<%-- Created by IntelliJ IDEA. User: 王磊 Date: 2023/5/29 Time: 15:52 To change this template use File | Settings | File Templates. --%> <%@ page import 阅读全文
posted @ 2023-12-28 17:07 超爱彬宝同学 阅读(11) 评论(0) 推荐(0) 编辑
摘要:public examination[] sortAll2()throws Exception { String sql="select count(*) from examination where grade <60"; PreparedStatement pre = connect.prepa 阅读全文
posted @ 2023-12-27 14:51 超爱彬宝同学 阅读(9) 评论(0) 推荐(0) 编辑
摘要:app.vue <template> <div class=""> <!-- 自定义指令全局 <input v-focus type="text" name="" id=""><br> 自定义指令局部 <input v-focus2 type="text" name="" id=""><br> -- 阅读全文
posted @ 2023-12-26 11:38 超爱彬宝同学 阅读(13) 评论(0) 推荐(0) 编辑
摘要:App.vue <template> <div class="table-case"> <MyTable :data="goods"> <template #TableHead> <tr> <th>编号</th> <th>名称</th> <th>图片</th> <th width="100px">标 阅读全文
posted @ 2023-12-25 17:44 超爱彬宝同学 阅读(3) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.controller; import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.RandomUtil; import cn.hutool.core.util.Str 阅读全文
posted @ 2023-12-24 21:30 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:app.vue <template> <div class=""> <SchuRuKuang @Add="handleAdd"></SchuRuKuang> <LieBiaoZhanShi :list="list" @delOne="handledelOne"></LieBiaoZhanShi> < 阅读全文
posted @ 2023-12-23 12:37 超爱彬宝同学 阅读(22) 评论(0) 推荐(0) 编辑
摘要:<template> <div> <MyTable :data="list"> <template #default="obj"> <button @click="del(obj.row.id)">删除</button> </template> </MyTable> <MyTable :data=" 阅读全文
posted @ 2023-12-22 17:45 超爱彬宝同学 阅读(5) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="grf"> this is grandpa <FatherComponent></FatherComponent> </div> </template> <script> import FatherComponent from './FatherComp 阅读全文
posted @ 2023-12-21 17:45 超爱彬宝同学 阅读(8) 评论(0) 推荐(0) 编辑
摘要:1.安装vue-router 对应版本号为 233 344 使用以下命令 yarn add vue-router@3.6.5或者npm install vue-router@3.6.5 2.在main.js里面使用vue-router import Vue from 'vue' import App 阅读全文
posted @ 2023-12-20 20:21 超爱彬宝同学 阅读(15) 评论(0) 推荐(0) 编辑
摘要:props: 当不需要检查时,可以写成 props:['value'] 此时,不管传过来什么都不会检查,如果想要将数据进行检查,就可以将改成 1.类型验证 props:{ 'value' : Number } 此时会限制类型为Number的数据 2.如果需要更加完整的检查 props:{ 'valu 阅读全文
posted @ 2023-12-19 17:45 超爱彬宝同学 阅读(2) 评论(0) 推荐(0) 编辑
摘要:router:[ {path:'/',redirect:'/home'}, {path:'*',component:NotFound}, ] 阅读全文
posted @ 2023-12-18 11:16 超爱彬宝同学 阅读(19) 评论(0) 推荐(0) 编辑
摘要:package Util; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; imp 阅读全文
posted @ 2023-12-17 18:09 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:package ShiYong;import Util.Base64Util;import Util.FileUtil;import Util.HttpUtil;import com.google.gson.Gson;import com.google.gson.JsonObject;import 阅读全文
posted @ 2023-12-16 21:33 超爱彬宝同学 阅读(9) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.controller; import cn.hutool.core.io.IoUtil; import cn.hutool.core.util.StrUtil; import cn.hutool.http.server.HttpSe 阅读全文
posted @ 2023-12-15 17:47 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="a"> <h2>this is A</h2> <span>{{ msg }}</span> </div> </template> <script> import Bus from '../Tools/EventBusTool'; export defau 阅读全文
posted @ 2023-12-14 17:45 超爱彬宝同学 阅读(3) 评论(0) 推荐(0) 编辑
摘要:package com.example.chatroom.api; import com.example.chatroom.component.OnlineUserManger; import com.example.chatroom.model.*; import com.fasterxml.ja 阅读全文
posted @ 2023-12-13 21:02 超爱彬宝同学 阅读(3) 评论(0) 推荐(0) 编辑
摘要:app.vue <template> <div class="main"> <div class="box" v-isLoging="isLoged"> <ul> <li v-for="item in list" :key="item.id" class="news"> <div class="le 阅读全文
posted @ 2023-12-12 17:45 超爱彬宝同学 阅读(24) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.controller; import com.example.backendmanage.common.AjaxResult; import com.example.backendmanage.info.UploadFile; im 阅读全文
posted @ 2023-12-11 19:11 超爱彬宝同学 阅读(3) 评论(0) 推荐(0) 编辑
摘要:@RequestMapping("/export") public void export(HttpServletResponse response){ try { List<User> list=userMapper.findAll(); ExcelWriter excelWriter= Exce 阅读全文
posted @ 2023-12-10 16:28 超爱彬宝同学 阅读(19) 评论(0) 推荐(0) 编辑
摘要:<template> <el-menu :default-openeds="['1', '3']" style="min-height: 100%;overflow-x: hidden;" background-color="rgb(48,68,86)" text-color="#fff" rout 阅读全文
posted @ 2023-12-09 20:47 超爱彬宝同学 阅读(2) 评论(0) 推荐(0) 编辑
摘要:<template> <el-container style="height: 100%;"> <el-aside width="200px" style="background-color: rgb(238, 241, 246);height: 100%;"> <el-menu :default- 阅读全文
posted @ 2023-12-08 17:15 超爱彬宝同学 阅读(3) 评论(0) 推荐(0) 编辑
摘要:一、UML的概述 UML是一种定义良好、易于表达、功能强大、普遍适用的建模语言。 作为大众所接受的标准建模语言,UML融入了软件工程领域的新思想、新方法、新技术。 UML的作用域,不仅支持面向对象的分析与设计,而且支持从需求分析开始的软件开发的全过程。二、UML的特点和用途UML对系统的逻辑模型和实 阅读全文
posted @ 2023-12-07 19:06 超爱彬宝同学 阅读(118) 评论(0) 推荐(0) 编辑
摘要:package shiyan; import java.sql.*; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class AllMethods 阅读全文
posted @ 2023-12-06 21:07 超爱彬宝同学 阅读(9) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.Tools; import io.swagger.v3.oas.models.OpenAPI; import io.swagger.v3.oas.models.info.Contact; import io.swagger.v3.o 阅读全文
posted @ 2023-12-05 20:53 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.common; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configurat 阅读全文
posted @ 2023-12-04 16:11 超爱彬宝同学 阅读(4) 评论(0) 推荐(0) 编辑
摘要:package com.example.backendmanage.controller; import com.example.backendmanage.common.AjaxResult; import com.example.backendmanage.mapper.UserMapper; 阅读全文
posted @ 2023-12-03 17:27 超爱彬宝同学 阅读(2) 评论(0) 推荐(0) 编辑
摘要:<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 阅读全文
posted @ 2023-12-02 21:40 超爱彬宝同学 阅读(2) 评论(0) 推荐(0) 编辑
摘要:package wangzhan; import java.sql.Blob; public class Pd_stu { private int id; private String name; private String sex; private String classs; private 阅读全文
posted @ 2023-12-01 20:46 超爱彬宝同学 阅读(11) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示