03 2021 档案

摘要:https://www.cnblogs.com/georgeleoo/p/11864866.html 阅读全文
posted @ 2021-03-17 14:55 zjxgdq 阅读(23) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/fundebug/p/10884896.html 阅读全文
posted @ 2021-03-17 10:13 zjxgdq 阅读(19) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ressiry/p/10467559.html 阅读全文
posted @ 2021-03-15 17:09 zjxgdq 阅读(20) 评论(0) 推荐(0) 编辑
摘要:toDetail(item) { this.$router.push({ path: "/detail", name: "Detail", params: { id: item, }, }); // console.log(item); }, 阅读全文
posted @ 2021-03-15 12:02 zjxgdq 阅读(41) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/0eb0fd72cdbc 拼接 http://192.168.0.185:8081/api/common/getHomeData vue.config.js module.exports ={ devServer:{ proxy:{ 'api':{ 阅读全文
posted @ 2021-03-15 11:26 zjxgdq 阅读(73) 评论(0) 推荐(0) 编辑
摘要:kinesis-element 阅读全文
posted @ 2021-03-11 12:43 zjxgdq 阅读(42) 评论(0) 推荐(0) 编辑
摘要:跳转页面底部 window.scrollTo(0, document.body.scrollHeight) 跳转页面顶部window.scrollTo(0,0); 阅读全文
posted @ 2021-03-11 12:07 zjxgdq 阅读(75) 评论(0) 推荐(0) 编辑
摘要:@keyframes moon { 25% { -webkit-transform: translateY(30px); } 50%, 100% { -webkit-transform: translateX(0); } 75% { -webkit-transform: translateX(-30 阅读全文
posted @ 2021-03-10 16:13 zjxgdq 阅读(20) 评论(0) 推荐(0) 编辑
摘要:mix-blend-mode: screen; 阅读全文
posted @ 2021-03-10 14:36 zjxgdq 阅读(27) 评论(0) 推荐(0) 编辑
摘要:function Person(name) { //给构造函数添加了参数 this.name = name; this.sex = "male"; this.say = function() { console.log(this.name); } } Person.prototype.age = 2 阅读全文
posted @ 2021-03-09 10:17 zjxgdq 阅读(51) 评论(0) 推荐(0) 编辑
摘要:<a href="/i/w3school_logo_white.gif" download="w3logo"><img border="0" src="/i/w3school_logo_white.gif" alt="W3School"></a> 阅读全文
posted @ 2021-03-08 16:57 zjxgdq 阅读(55) 评论(0) 推荐(0) 编辑
摘要:function random (min,max) { return Math.floor(Math.random()*(max-min)+1) } console.log(random(1,4)) 阅读全文
posted @ 2021-03-08 10:06 zjxgdq 阅读(26) 评论(0) 推荐(0) 编辑
摘要:npm i lib-flexible -S1 npm i px2rem-loader -D main.js import 'lib-flexible' 阅读全文
posted @ 2021-03-07 19:02 zjxgdq 阅读(39) 评论(0) 推荐(0) 编辑
摘要:安装错误时 npm uninstall less-loader //御卸 方法一 1.安装 npm install less@3.9.0 npm install less-loader@4.1.0 2.引入main.js Vue.use(less); import less from 'less'; 阅读全文
posted @ 2021-03-07 09:37 zjxgdq 阅读(93) 评论(0) 推荐(0) 编辑
摘要:npm install vue-json-excel import JsonExcel from 'vue-json-excel' Vue.component('downloadExcel', JsonExcel) <template> <div class="home"> <download-ex 阅读全文
posted @ 2021-03-07 09:22 zjxgdq 阅读(51) 评论(0) 推荐(0) 编辑
摘要::class="show?'many-txt':'all-txt'" v-show="'many-txt'?'show':'!show'" https://elm-api.caibowen.net/ http://192.168.1.5:8080 https://elm.cangdu.org/bos 阅读全文
posted @ 2021-03-07 09:18 zjxgdq 阅读(213) 评论(0) 推荐(0) 编辑
摘要:wx804d7666e72050aa 一跳转到导航页 <navigator url="/pages/game/game" open-type="switchTab"> 二跳转到带箭头 <navigator url="../storiesdetai/storiesdetail"> 矢量图标库 http 阅读全文
posted @ 2021-03-07 09:16 zjxgdq 阅读(115) 评论(0) 推荐(0) 编辑
摘要:https://www.w3cschool.cn/uni_app/ https://uniapp.dcloud.io/component/ view-uni-app https://uniapp.dcloud.io/component/view AppID https://account.dclou 阅读全文
posted @ 2021-03-07 09:14 zjxgdq 阅读(367) 评论(0) 推荐(0) 编辑
摘要:数组连接为字符串,数组所有值之和积 var a=[1,2,8] var b=a.reduce(function (a,b) { return //a*b所有值乘积 // a+'' +b连接数组//a+b所有值之和 }) console.log(b) 多元运算 function test(p){ va 阅读全文
posted @ 2021-03-07 09:13 zjxgdq 阅读(104) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_42205731/article/details/106698888 阅读全文
posted @ 2021-03-07 09:12 zjxgdq 阅读(24) 评论(0) 推荐(0) 编辑
摘要:var index=1; left.onclick=function () { index++ if (index>3) { index=0 } one.style.left=-index*800+"px" } right.onclick=function () { index-- if (inde 阅读全文
posted @ 2021-03-07 09:10 zjxgdq 阅读(35) 评论(1) 推荐(0) 编辑
摘要:async getHomes(item) { let temp = await http.getHome(); let type = []; this.content.push(type); this.show = type; for (var i = 0; i < temp.length; i++ 阅读全文
posted @ 2021-03-07 09:09 zjxgdq 阅读(60) 评论(0) 推荐(0) 编辑
摘要:changeOrigin: true,//是否允许跨越 // 获取某个时间格式的时间戳 var stringTime = "2014-07-10 10:21:12"; var timestamp2 = Date.parse(new Date(stringTime)); timestamp2 = ti 阅读全文
posted @ 2021-03-07 09:07 zjxgdq 阅读(100) 评论(0) 推荐(0) 编辑
摘要:export function getreportlook (parameter) { return request({ url: api.reportlook, method: 'get', params: parameter }) } // 朋友圈详情 export function getse 阅读全文
posted @ 2021-03-07 09:05 zjxgdq 阅读(40) 评论(0) 推荐(0) 编辑
摘要:<select ref="newText" style="width:80px;" @change="getTitle(text.userId, $refs.newText.value )"> <option v-for="(item, index) in sel" :key="index" :va 阅读全文
posted @ 2021-03-07 09:04 zjxgdq 阅读(36) 评论(0) 推荐(0) 编辑
摘要:const current = new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date().getDate() + '-' + new Date().getHours() + ':' + new Da 阅读全文
posted @ 2021-03-07 09:02 zjxgdq 阅读(144) 评论(0) 推荐(0) 编辑
摘要:function test(p){ var a=5,b=12; return p>1?p<b?p=4:p=6:p=3 } var a = test(0) 阅读全文
posted @ 2021-03-07 09:00 zjxgdq 阅读(60) 评论(0) 推荐(0) 编辑
摘要:var a=[1,2,8] var b=a.reduce(function (a,b) { return //a*b所有值乘积 // a+'' +b连接数组//a+b所有值之和 }) console.log(b) 阅读全文
posted @ 2021-03-07 08:59 zjxgdq 阅读(47) 评论(0) 推荐(0) 编辑