摘要: 使用某大佬写的cron插件,https://gitee.com/toktok/easy-cron 使用步骤如下;1、将easy-cron全部文件放到项目中2、 导入easy-cron全部文件 import InputCron from "../easy-cron/input-cron"; impor 阅读全文
posted @ 2020-01-12 17:28 云霄紫潭 阅读(663) 评论(0) 推荐(0)
摘要: 有时候,弹框内要使用编辑器,可以选择使用 vue-quill-editor <el-form-item prop="content" label="公告内容"> <quill-editor ref="text" auto-complete="off" v-model="addForm.content 阅读全文
posted @ 2020-01-12 17:20 云霄紫潭 阅读(279) 评论(0) 推荐(0)
摘要: 需求: 表格增加整行和删除整行,因为后台数据的特殊性,增加行没有索引。 addRow() { if (this.checkBoxData.length > 1 || this.checkBoxData.length < 1) { this.$message.error({ message: "请选择 阅读全文
posted @ 2020-01-12 17:15 云霄紫潭 阅读(401) 评论(0) 推荐(0)
摘要: 基本HTML结构如下: ``` <div class="left_search"> <!-- 供应商模糊搜索 --> <el-form-item> <el-autocomplete class="inline-input" v-model="filters.hospitalname" :fetch- 阅读全文
posted @ 2020-01-12 17:06 云霄紫潭 阅读(784) 评论(0) 推荐(0)
摘要: // 格式化金钱 const digitsRE = /(\d{3})(?=\d)/g export function currency(value, currency, decimals) { value = parseFloat(value) if (!isFinite(value) || (!v 阅读全文
posted @ 2020-01-12 17:00 云霄紫潭 阅读(178) 评论(0) 推荐(0)
摘要: <el-date-picker v-model="filters.dateValue" type="daterange" value-format="yyyy-MM-dd" :default-time="['00:00:00', '23:59:59']" range-separator="至" st 阅读全文
posted @ 2020-01-12 16:55 云霄紫潭 阅读(866) 评论(0) 推荐(0)
摘要: 需求: 要求左边的内容移动到右边,但是左边的内容不能减少,而且要对数据进行去重处理。 <template> <div class="transfer-list"> <div class="transfer-header"> <span class="transfer-header-title">{{ 阅读全文
posted @ 2020-01-12 16:50 云霄紫潭 阅读(79) 评论(0) 推荐(0)
摘要: 使用的是element-ui的upload插件。 <el-upload action="https://jsonplaceholder.typicode.com/posts/" list-type="picture-card" :on-preview="handlePictureCardPrevie 阅读全文
posted @ 2020-01-12 16:42 云霄紫潭 阅读(187) 评论(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 云霄紫潭 阅读(377) 评论(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 云霄紫潭 阅读(1661) 评论(0) 推荐(0)