# creat_multi_page **Repository Path**: http_git.oschina.net/creat_multi_page ## Basic Information - **Project Name**: creat_multi_page - **Description**: 多页面 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # creat_multi_page ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Run your tests ``` npm run test ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ## wec-iap-auth 1. 访问 pc 地址: http://172.20.6.250:8080/pc.html#/ 2. 父组件获取子组件的组件对象 return this.$children.filter(item => { return item.$options.name === "pane"; }); 3. 关于 input 的选中,自定义 input[type="checkbox"]样式 地址: https://www.cnblogs.com/roxanneQQyxm/p/8488881.html 4. Vue 实例事件总结($on,$once,$off,$emit) 实例事件就是在构造器外部调用构造器内部的数据 5. 手机号正则规则: :rules="[ { required: true, message: '请输入手机号' }, { partten: /^1[3456789]\d{9}\$/, message: '请输入正确的手机号' } ]" 6. /\*_ IE10 及以上正常模式可以用 css 去除 X 按钮: ::-ms-clear,::-ms-reveal{display: none;} // -ms-clear 是文本输入框的清除按钮,-ms-reveal 是密码输入框的清除按钮 IE9 以下是没有 X 按钮的,因此不用去除; IE10 及以上的兼容模式存在 X 按钮无法去除: _/ ::-ms-clear, ::-ms-reveal { display: none } 7. ,输入框会有一个增减数字的按钮,如何去掉该样式呢? /_ 谷歌 _/ input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0; } /_ 火狐 _/ input{ -moz-appearance:textfield; }