摘要:
1.准生证 (社区办理28周时) 2. 出生证明(生产时医院办理) 3. 病历案首页 4.手术记录单5.住院小结6.社保卡原件和复印件(社保卡要开通银行业务)7. 委托书公司盖章 8.转入社会保障卡申请表 9, 代办人身份证原件和复印件 *** 7&8沈阳市医保局官网打印地址委托书: https:/ 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
// 解析URL路由传参 const urlParams = () => { const strParams = decodeURI(location.search.replace('?', '')) const arrParams = strParams.split('&') const para 阅读全文
摘要:
// 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date 阅读全文
摘要:
1. Mint UI 官网地址: http://mint-ui.github.io/#!/zh-cn 饿了么团队出品,并一直在维护,基于 MIT 授权协议在 Github 开源2. NutUI 官网地址: https://nutui.jd.com/#/ 是京东风格的移动端组件库,使用 Vue 语言来 阅读全文
摘要:
在移动端,一个元素既注册有滑动事件,又注册有点击事件时就会出现一些问题。滑动事件的优先级是大于点击事件的,而当我们只想执行点击事件而不想触发滑动时间时,就必须做个处理事件执行顺序:touchstart →touchmove →touchend→click所以当我们执行点击事件时,其实在执行点击事件之 阅读全文
摘要:
const p = new Proxy({ name: '路飞', age: 18}, { // 创建代理 // 查 get(target,propName){ console.log(`有人读取了p身上的${propName}`) return target[propName]; // 反射 re 阅读全文
摘要:
var s1 = Symbol('s1') var s2 = Symbol('s2') var obj= { a: 'a1', // 自身属性 可枚举 b: 'b1', // 自身属性 可枚举 [s1]: 's1s1s1s1', // 自身属性 Symbol类型不可枚举 }; // 原型链属性 可枚 阅读全文
摘要:
如何在不修改下面代码的情况下, 修改obj var o = (function () { var obj= { a: 'a1', b: 'b1' }; return { get: function (key) { return obj[key] } } })() console.log(o.get( 阅读全文
摘要:
1.url 转图片流 // url 转 图片流 const urlToFile = (url, imageName) => { return new Promise((resolve, reject) => { let blob = null; const xhr = new XMLHttpRequ 阅读全文