上一页 1 ··· 4 5 6 7 8
摘要: <template> <div class="container"> <div class="bei"> <!-- 头部 --> <div class="header"> <span class="left"> <!-- 添加按钮 --> <el-button class="but" size="m 阅读全文
posted @ 2020-04-17 11:44 xiaoxiao95 阅读(803) 评论(0) 推荐(0) 编辑
摘要: /** * 全站http配置 * * axios参数说明 * isSerialize是否开启form表单提交 * isToken是否需要token */ import axios from 'axios' import store from '@/store/'; import router fro 阅读全文
posted @ 2020-04-16 14:45 xiaoxiao95 阅读(266) 评论(0) 推荐(0) 编辑
摘要: import request from '@/router/axios'; import { oaUrl, fileUrl, consoleUrl } from '@/config/env'; // export const projectPage = param => request({ url: 阅读全文
posted @ 2020-04-16 14:39 xiaoxiao95 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一,slice() 方法可从已有的数组中返回选定的元素。语法:arrayObject.slice(start,end),返回一个新的数组,包含从 start 到 end (不包括该元素)的 arrayObject 中的元素。 请注意,该方法并不会修改数组,而是返回一个子数组。如果想删除数组中的一段元 阅读全文
posted @ 2020-04-16 14:08 xiaoxiao95 阅读(8894) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="box"> <!-- 跳转url --> <iframe src="" height="800" width="100%" id="mobsf" scrolling="no" frameborder="0"></iframe> </div> </temp 阅读全文
posted @ 2020-04-16 13:43 xiaoxiao95 阅读(346) 评论(0) 推荐(0) 编辑
摘要: iframe基本内涵 通常我们使用iframe直接直接在页面嵌套iframe标签指定src就可以了。 <iframe src="demo_iframe_sandbox.htm"></iframe> 但是,有追求的我们,并不是想要这么low的iframe. 我们来看看在iframe中还可以设置些什么属 阅读全文
posted @ 2020-04-10 15:28 xiaoxiao95 阅读(246) 评论(0) 推荐(0) 编辑
摘要: /** * 全站http配置 * * axios参数说明 * isSerialize是否开启form表单提交 * isToken是否需要token */import axios from 'axios'import store from '@/store/';import router from ' 阅读全文
posted @ 2020-04-08 11:37 xiaoxiao95 阅读(267) 评论(0) 推荐(0) 编辑
摘要: pattern: / /, 一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^\d{n}$ 3 至少n位的数字:^\d{n,}$ 4 m-n位的数字:^\d{m,n}$ 5 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6 非零开头的最多带两位小数的数字:^([1-9][ 阅读全文
posted @ 2020-04-08 09:15 xiaoxiao95 阅读(539) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8