vant 周次选择器

摘要: <template> <van-picker show-toolbar :columns="columns" @cancel="cancel" @confirm="onConfirm" @change="onChange" /> </template> <script> import moment  阅读全文
posted @ 2019-11-26 11:41 guo大侠 阅读(2771) 评论(0) 推荐(0)

vue.ant.design 附件上传及图片上传封装

摘要: 多附件上传功能 import { FileUpload } from '@/components/FileUpload' <file-upload ref="fileUpload" :filelength="5"/> filelength:最多上传多少附件 this.$refs.fileUpload 阅读全文
posted @ 2019-09-06 14:36 guo大侠 阅读(6980) 评论(4) 推荐(0)

vue-quill-editor 自定义图片上传调整图片大小保存时删除服务器多余图片

摘要: 下载 vue-quill-editor 引入 标签 js export default { name: 'QuillEditor', components: { quillEditor }, props: { value: { type: String } }, data() { return { 阅读全文
posted @ 2019-09-06 14:29 guo大侠 阅读(7562) 评论(0) 推荐(0)

jquery attr添加selected="selected"不如用prop

摘要: 通过secondSelect挂载模拟下拉, 用attr('selected',"selected")模拟选中, 发现两次选中一个值第二次选中则失效 selected="selected"依然添加上去 但是select处于未选择状态显示第一个, element.trigger('change')出来的 阅读全文
posted @ 2018-04-14 11:16 guo大侠 阅读(662) 评论(0) 推荐(0)

angular+angular-toastr前端校验

摘要: 调用校验无需再写js 1 (function() { 2 'use strict'; 3 4 angular 5 .module('app') 6 .directive('formVerification', formVerification) 7 .directive('verification' 阅读全文
posted @ 2018-04-12 11:08 guo大侠 阅读(392) 评论(0) 推荐(0)

bootstrap-datetimepicker.js 记录

摘要: angular1.5+bootstrap-datetimepicker; bower 安装 eonasdan-bootstrap-datetimepicker; 自动安装关联jq,moment angular .module('app') .directive('dateTimePicker', [ 阅读全文
posted @ 2018-04-12 10:50 guo大侠 阅读(310) 评论(0) 推荐(0)