上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 1. 根目录加 .eslintrc.js 文件 // .eslintrc.js 文件 module.exports = { env: { browser: true, es2021: true, node: true }, extends: [ 'standard', // 新增这里vue3支持 ' 阅读全文
posted @ 2022-07-07 16:48 福超 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: App.vue <template> <router-view v-slot="{ Component }"> <keep-alive :include="includeList"> <component :is="Component" /> </keep-alive> </router-view> 阅读全文
posted @ 2022-07-07 16:40 福超 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1.公众平台配置ip白名单 https://mp.weixin.qq.com/ 设置与开发 》 基本配置 》 公众号开发信息 》 ip白名单 接口地址对应的ip 2.业务域名和JS安全域名的设置 设置与开发 》 公众号设置 》 功能设置 》 业务域名和JS安全域名 在设置的时候有个txt需要放到前端 阅读全文
posted @ 2022-07-07 16:23 福超 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1.电脑在本地配置hosts C:\Windows\System32\drivers\etc\hosts 例 192.168.10.79 scmh5.dalezhuang.com 不要前面的https 2. 电脑下载安装 charles 查看端口,手机连接同一个wifi 手机wifi设置里面 配置主 阅读全文
posted @ 2022-07-07 15:43 福超 阅读(256) 评论(0) 推荐(0) 编辑
摘要: <camera v-if="isShow" style="height: 520rpx" mode="scanCode" device-position="back" flash="off" @scancode="takeCode"> </camera> data() { return { isSh 阅读全文
posted @ 2022-06-15 17:18 福超 阅读(1722) 评论(0) 推荐(0) 编辑
摘要: 1.在入口文件 aap.tsx import { Events } from '@tarojs/taro' globalData = { event:new Events() } 2.发射事件 function tt(){ const event = Taro.getApp()?.$app?.glo 阅读全文
posted @ 2022-06-15 16:25 福超 阅读(365) 评论(0) 推荐(0) 编辑
摘要: <template> <view class="dlz-fx-column"> <movable-area> <movable-view direction="all" scale-value="1" scale-min="1" scale="true" scale-max="4"> <image 阅读全文
posted @ 2022-06-02 15:52 福超 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 1.用到的技术 URL Scheme https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/url-scheme.html 2.前端做一个中转页面 请求后端接口返回的地址 <html> <head> <titl 阅读全文
posted @ 2022-05-31 11:01 福超 阅读(525) 评论(0) 推荐(0) 编辑
摘要: npm 网址 https://www.npmjs.com/ 摘自 https://juejin.cn/post/7073646687968821256 阅读全文
posted @ 2022-03-31 18:33 福超 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 这个图分解成4块 上左:楼层 上右:基础数据 下左:固定文字 下右:楼栋 楼层可上下滑动 楼栋可左右滑动 基础信息可上下左右滑动 楼层scroll-view 与基础信息scroll-view 上下滑动关联 楼栋scroll-view 与基础信息scroll-view 左右滑动关联 当同时滑动 楼层与 阅读全文
posted @ 2022-03-31 15:05 福超 阅读(1114) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页