摘要:
需求: 时分秒的选择,限制选择:自当前时间6个月的内的时间 <el-date-picker v-model="duration" type="datetimerange" range-separator="~" :start-placeholder="this.$t('templateManager 阅读全文
摘要:
新增 使用:row-key 编辑 主要是回显数据,如果使用 :row-key,会造成取消了,但是翻页后,无法取消的问题。 给表格使用 select 和 select-all 事件去选择 然后把选择的数据给请求,使用this.$refs.multipleTable.toggleRowSelection 阅读全文
摘要:
碰到个有意思的校验: ['0 ~ 123','256 ~ 1024'] : 取值范围在:'0 ~ 123'和'256 ~ 1024' ['0 ~ 123', 255] :取值范围在:'0 ~ 123' 和 255 使用方法: 阅读全文
摘要:
https://www.cnblogs.com/sunliyuan/p/14378518.html 阅读全文
摘要:
### 1、导入文件 ```JavaScript import context from "@/main"; //导入this import { MessageBox, Notification, Message } from "element-ui"; ``` ### 2、Notification 阅读全文
摘要:
方式一、 const url = 下载地址 window.location.href = url 方式二、 /** * @method excel下载 * @param {String} type 需要下载的文件类型 * @param {Object} res 文件流 * @param {Strin 阅读全文
摘要:
需求: 要求websocket推送状态, 是一秒切换一次 对websocket传来的数据进行校验 export function evalPushData(val) { const failList = [null, undefined, ""] if (failList.includes(val) 阅读全文
摘要:
```javascript //数组去重,挑选出非重复项 export function chooseNonRepeatingData(ar1, ar2) { const _arr1 = ar1.filter(item1 => !ar2.includes(item1)); const _arr2 = 阅读全文
摘要:
import { getUserToken, getToken } from "@/utils/auth" export default { data() { return { beforeUnloadTime: "", gapTime: "", } }, mounted() { window.ad 阅读全文
摘要:
function genUuid(length) { const random = Date.now().toString(36); if (random.length > length) { return random.substr().substr(random.length - length, 阅读全文