上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 使用的是element-ui的upload插件。 <el-upload action="https://jsonplaceholder.typicode.com/posts/" list-type="picture-card" :on-preview="handlePictureCardPrevie 阅读全文
posted @ 2020-01-12 16:42 云霄紫潭 阅读(156) 评论(0) 推荐(0) 编辑
摘要: import axios from 'axios' import { bus } from '../bus.js' axios.defaults.withCredentials = true; // axios.defaults.headers.common['Authorization'] = A 阅读全文
posted @ 2020-01-12 16:20 云霄紫潭 阅读(333) 评论(0) 推荐(0) 编辑
摘要: element-ui表格很强,但是业务需求更强大,需要表格整列移动,并且整列隐藏 <template> <div> <div class="popoverStyle"> <el-popover placement="bottom" trigger="click"> <el-col :span="20 阅读全文
posted @ 2020-01-12 16:13 云霄紫潭 阅读(1622) 评论(0) 推荐(0) 编辑
摘要: 今天碰到个需求, input框输入,中途点击按钮跳到其他页面关联然后跳回继续填写。 如实例图: 使用vue框架,没有使用组件的keep-alive,使用了localstorge临时存储。 思路如下: 1、 点击button的时候, 把input表格的内容存储到localstorge, 2、 然后在回 阅读全文
posted @ 2019-10-25 22:42 云霄紫潭 阅读(540) 评论(0) 推荐(0) 编辑
摘要: 已知数组 arr1和arr2,需求:判断arr1中与arr2中不同的数 阅读全文
posted @ 2019-10-25 22:19 云霄紫潭 阅读(444) 评论(0) 推荐(0) 编辑
摘要: / vue.config.js 常用配置 module.exports = { // 基本路路径, vue.cli 3.3以前请使用baseUrl publicPath: '/', // 输出文件目录 outputDir: 'dist', // ⽤用于嵌套生成的静态资产(js,css,img,fonts)的目录。 assetsDir: '', // ⽣生产环境sourceMap productio 阅读全文
posted @ 2019-10-23 22:47 云霄紫潭 阅读(1883) 评论(0) 推荐(0) 编辑
摘要: "productStatusList": [ { "dictId": 122, "dictName": "启用", "dictValue": "1", "dictType": "status", "dictDescription": "状态", }, { "dictId": 123, "dictNa 阅读全文
posted @ 2019-10-23 22:37 云霄紫潭 阅读(259) 评论(0) 推荐(0) 编辑
摘要: mockjs的使用 作用: 根据数据模板生成模拟数据。 1、 安装mockjs cnpm i mockjs 2、 src文件下,新建文件夹mockjs, 3、 mockjs文件中新建 index.js 和 home.js文件 4、home.js文件夹写入需要模拟数据 5、 index.js文件写入: 阅读全文
posted @ 2019-10-22 22:38 云霄紫潭 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 最近项目需要使表格字体变色,具体需求如下: 在表格中,分为2类,需要处理。 1、 template slot-scope="scope" 2、 直接写在label上的。el-table-column label="证件名称" 解决方法: 第一类、 简单粗暴的直接 v-if去判断 第二类: 1、 在e 阅读全文
posted @ 2019-10-22 09:20 云霄紫潭 阅读(387) 评论(0) 推荐(1) 编辑
摘要: 最近一个项目, 就一个input表单,每次按回车键的时候,表单提交都会刷新页面。代码结构如下: 后发现,在Form表单加入 @submit.native.prevent 可以阻止form提交问题 阅读全文
posted @ 2019-10-22 09:03 云霄紫潭 阅读(671) 评论(0) 推荐(1) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页