摘要: 问题描述:前两天上架一款ios App,周一到公司看审核已经通过了。去appStore上搜索一直搜索不到,ios appStore connect点击提示该商品在中国大陆没有上架。解决方法:通过app store connect 最下面的联系我们。联系苹果相关人员。 说的是因为没有设置价格造成的。设 阅读全文
posted @ 2023-04-10 17:28 爱尚丽明 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 参考文档: https://blog.csdn.net/qq_37460847/article/details/126918641 1、使用18.12.1 node版本 使用nvm管理node 版本 参考:https://www.cnblogs.com/aishangliming/p/1702354 阅读全文
posted @ 2023-03-09 13:53 爱尚丽明 阅读(56) 评论(0) 推荐(0) 编辑
摘要: git init // 初始化 在工作路径上创建主分支 git clone 地址 // 克隆远程仓库 git clone -b 分支名 地址 // 克隆分支的代码到本地 git status // 查看状态 git add 文件名 // 将某个文件存入暂存区 git checkout -- file 阅读全文
posted @ 2023-03-07 16:19 爱尚丽明 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 步骤一:main.js new Vue({ beforeCreated(){ //全局事件总监 Vue.prototype.$bus = this } }) //监听地方回调 this.$bus.$on('监听的名字',(data) => { //这里是获取到监听数据 }) 页面卸载的时候使用$of 阅读全文
posted @ 2023-02-21 22:47 爱尚丽明 阅读(4) 评论(0) 推荐(0) 编辑
摘要: function compareVersion(newVersion, currentVersion) { const v1 = newVersion.split('.'); const v2 = currentVersion.split('.'); for (let i = 0; i < v1.l 阅读全文
posted @ 2023-02-13 17:35 爱尚丽明 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1、下载地址: https://github.com/coreybutler/nvm-windows/releases 2、nvm常用指令: 配置nvm的镜像服务器 nvm node_mirror https://npmmirror.com/mirrors/node/ 1> nvm list 显示已 阅读全文
posted @ 2023-01-03 22:49 爱尚丽明 阅读(612) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/u/fbc86bb04124 阅读全文
posted @ 2022-09-08 14:19 爱尚丽明 阅读(575) 评论(0) 推荐(0) 编辑
摘要: let pages = getCurrentPages(); // 当前页面 let beforePage = pages[index]; // 需要执行方法的页面 wx.navigateBack({ delta: pages.length - 1, //返回到需要执行方法的页面 success() 阅读全文
posted @ 2022-08-05 17:34 爱尚丽明 阅读(1590) 评论(0) 推荐(0) 编辑
摘要: 方法一:自定义指令 // 自定义聚焦指令 Vue.directive('focus1', { // 指令的定义 inserted: function (el) { // 聚焦元素 el.querySelector('input').focus() } })//使用方法<el-input v-focu 阅读全文
posted @ 2022-07-07 09:20 爱尚丽明 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 方法一:清空后使用setTimeout重新赋值 方法二:渲染模块的父元素添加动态 :key 方法三:this.$set 阅读全文
posted @ 2022-04-19 11:53 爱尚丽明 阅读(468) 评论(0) 推荐(0) 编辑