摘要: 1 参考来自 http://www.iis7.com/a/nr/wz/202108/53923.html 2 示例需要先找到改组件的样式然后进行修改 http://www.iis7.com/a/nr/wz/202108/53923.html .textarea >>> .el-textarea__i 阅读全文
posted @ 2022-10-29 15:00 -和时间赛跑- 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 1 超出长度自动隐藏 style="overflow: hidden; white-space: nowrap; text-overflow: ellipsis; " width="150" height="122"2 点击跳转页面 onclick="window.location.href='/m 阅读全文
posted @ 2022-07-28 18:00 -和时间赛跑- 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://wenku.baidu.com/view/72aeafdcfa0f76c66137ee06eff9aef8941e48fb.html2 支付环节一个完整的支付过程包括代收 清算 和代付 3个环节代收: 指第三方支付平台把资金从买方的银行卡转移到第三方支付平台银行的账户或卖方银行账户的 阅读全文
posted @ 2022-07-23 14:02 -和时间赛跑- 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 参考来自 http://www.manongjc.com/detail/28-phnhzjxvvsdiopo.html PO数据库持久化对象BO业务对象 包含了多个PO对象(PO对象作为BO对象的属性)VO (视图对象)值对象 通常不用于应用程序之间传输数据,它是领域模型中的完整成员, 和实体类具有 阅读全文
posted @ 2022-07-15 17:12 -和时间赛跑- 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 1 年月日 时分秒 秒 是 0-59 *,-/ 分钟 是 0-59 *,-/ 时 是 0-23 *,-/ 日期 是 0-31 *,-/ ? L W 月 是 1-12 JAN,DEC *,-/ 星期 是 1-7 *,-/ ?L# 年 否 当前年份-2099 *,-/ 其中: ? 不指定值 避免日期和星 阅读全文
posted @ 2022-07-09 17:53 -和时间赛跑- 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1 基本数据类型 字符串 数字 布尔 空null, 未定义undefined Symbol (es6引入,表示独一无二的值)共6种基本类型 2 引用数据类型(对象类型) 对象(JSON送对象) 数组 函数 RegExp正则 日期Date 5类 3 变量没有类型可言,只有对象才有类型可言 4 小心: 阅读全文
posted @ 2022-07-06 23:30 -和时间赛跑- 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1 通过prototype原型对象继承 function Hello(){ this.a = "吃饭了" this.b = function(){ console.log(" 123") }}function Test(){ this.c = function(){ console.log("-cc 阅读全文
posted @ 2022-07-06 22:11 -和时间赛跑- 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <template slot-scope="scope" > <el-checkbox-group v-model="scope.row.workShift"> <el-checkbox :label="1" >早班</el-checkbox> <el-checkbox :label="2" >中班 阅读全文
posted @ 2022-06-29 16:47 -和时间赛跑- 阅读(39) 评论(0) 推荐(0) 编辑
摘要: var a = '[1,2,3]' var b = a.toString() var c = {'a':1123,'b':22} var d = JSON.parse(a) console.log(c['a']); //kv形式的json对象console.log(d[0]) //数组形式的json 阅读全文
posted @ 2022-06-29 16:30 -和时间赛跑- 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1 方法的命名 动作+实体类+By+ 条件1 动作 : select ,delete,update,insert, 另外可能还有export,import2 实体类类: 除了selec,exportt可以对应于所有普通对象,其他动作只能对应于数据表的实体对象3 条件: 如果不加条件则默认传入实体对象 阅读全文
posted @ 2022-06-20 13:39 -和时间赛跑- 阅读(37) 评论(0) 推荐(0) 编辑