摘要: 需要开启线程 的方法继承线程类,并在run 中写逻辑 public class Ant extends Thread{ Cake cake; public Ant(String name,Cake cake){ this.cake = cake; setName(name); } @Override 阅读全文
posted @ 2023-09-15 14:51 稷下元歌 阅读(37) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>图片滑动验证</title> <meta name="viewport" content="width=device-width, initial-scal 阅读全文
posted @ 2023-09-11 16:41 稷下元歌 阅读(37) 评论(0) 推荐(0)
摘要: <template> <div> <div class="search_stat"> <app-search :searchByCompany="false" @search="search" :searchFieldArray.sync="searchFieldArray"/> </div> <d 阅读全文
posted @ 2023-07-06 13:45 稷下元歌 阅读(33) 评论(0) 推荐(0)
摘要: 这是一个网上的列子, 一表格,点击编辑时弹出层编辑这一行,点击保存时送请求的完整示例: <template> <div> <el-table :data="tableData" style="width: 100%"> <el-table-column prop="name" label="姓名"> 阅读全文
posted @ 2023-05-25 20:08 稷下元歌 阅读(61) 评论(0) 推荐(0)
摘要: <template> <div class="app-container"> <el-table :data="list" stripe style="width: 100%" @cell-dblclick="openEditColumn"> <el-table-column prop="camer 阅读全文
posted @ 2023-05-25 14:18 稷下元歌 阅读(1374) 评论(0) 推荐(0)
摘要: <template> <div> <!--表单搜索档2023-5-23,gpt歌者文明--> <div class="search_stat"> <app-search :searchByCompany="false" @search="search" :searchFieldArray.sync= 阅读全文
posted @ 2023-05-24 15:39 稷下元歌 阅读(46) 评论(0) 推荐(0)
摘要: 以下为我花了二天写的代码,记录一下 <template> <div> <el-table :data="tableData" style="width: 100%;"> <el-table-column label="操作"> <template slot-scope="scope"> <el-bu 阅读全文
posted @ 2023-05-23 19:56 稷下元歌 阅读(95) 评论(0) 推荐(0)
摘要: 公众号实现登陆流程思路: 1. 创建一个页面用于登陆,页面上需要有输入账号和密码的表单,以及登陆按钮。2. 在登陆按钮的点击事件中,调用后端接口进行账号密码校验。如果校验通过,则将后端返回的用户信息保存在本地存储中。3. 在需要使用用户信息的页面中,可以通过 uni.getStorageSync 方 阅读全文
posted @ 2023-05-09 09:40 稷下元歌 阅读(551) 评论(0) 推荐(0)
摘要: 4-29号 专题 java 大数处理和精度外理方法整理 java中整数有四个类型,byte short int long. java中byte 1个字节,short 2个字节,int 4个字节,long8个字节 以long为例,long会占8*8=64个位,转成10进制就是19位。如果想表达更大的数 阅读全文
posted @ 2023-04-30 14:01 稷下元歌 阅读(81) 评论(0) 推荐(0)
摘要: 第一章复习,树型组件数据填充:数据组件需要的数据绑定到:data 但是具体那些字绑生成标签需要在定义一人:props =“这儿绑定对象” 对象中label children 是官记固定的,取值可能根据实际变列 阅读全文
posted @ 2023-04-12 22:31 稷下元歌 阅读(55) 评论(0) 推荐(0)