05 2022 档案

摘要:一、安装postcss-px-to-viewport插件 1.使用npm安装 $ npm install postcss-px-to-viewport --save-dev 2.或者使用yarn安装 $ yarn add -D postcss-px-to-viewport 二、配置适配插件的参数 { 阅读全文
posted @ 2022-05-12 21:50 李云蹊 阅读(763) 评论(0) 推荐(0)
摘要:一.客服功能 1.只要你微信小程序,后台添加了客服,引用以下button,就可以进入聊天(在小程序官网如何添加客服用户,请自行百度,谢谢) 2.通过按钮方式 <button open-type="contact">进入客服会话</button> 二.支付流程 https://blog.csdn.ne 阅读全文
posted @ 2022-05-12 17:42 李云蹊 阅读(239) 评论(0) 推荐(2)
摘要:一.数组方法 1.1.可以改变原数组 var arr = [10, 20, 30, 40, 50, 55]; // 1. **** push() 在数组的最后添加一项内容 // var ret = arr.push("60"); // 返回值是添加之后的数组长度(一般不用) // 2. pop() 阅读全文
posted @ 2022-05-08 08:54 李云蹊 阅读(70) 评论(0) 推荐(0)
摘要:一.项目打包(vite创建的项目) 执行以下这条命令对项目进行打包 npm run build 生成dist文件夹,进入dist文件夹下的index.html文件,然后右键选择Open with Live Serve开启一台端口号为5500的本地服务器来打开网页,发现404错误. 这是因为index 阅读全文
posted @ 2022-05-05 11:56 李云蹊 阅读(2162) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2022-05-02 17:21 李云蹊 阅读(8) 评论(0) 推荐(0)