Skip to content

Commit

Permalink
v1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Sssitmonkey committed Aug 30, 2021
1 parent 530e891 commit 708d761
Show file tree
Hide file tree
Showing 207 changed files with 8,012 additions and 16,111 deletions.
58 changes: 8 additions & 50 deletions App.vue
Original file line number Diff line number Diff line change
@@ -1,56 +1,14 @@
<script>
import { mapMutations, mapActions, mapState } from 'vuex';
import wechat from '@/shopro/wechat/wechat';
export default {
globalData: {},
onLaunch(options) {
let that = this;
// #ifdef H5
that.$platform.entry();
// #endif
// #ifdef MP-WEIXIN
// 检测小程序更新(如果从朋友圈场景进入则无此API)
options.scene !== 1154 && wechat.checkMiniProgramUpdate();
// #endif
that.appInit(options);
if (process.env.NODE_ENV === 'development') {
this.syncPages();
import {
init
} from "@/shopro";
export default {
onLaunch(options) {
init(options);
}
},
methods: {
//应用初始化,获取模板数据,自动同步新页面到后台,获取用户信息
...mapActions(['appInit', 'syncPages'])
}
};
};
</script>

<style lang="scss">
@import 'uview-ui/index.scss';
@import 'static/font/shopro-icon.css';
/* 字体文件 */
@font-face {
font-family: OPPOSANS;
src: url('~@/static/font/OPPOSANS-M-subfont.ttf');
}
.font-OPPOSANS {
font-family: OPPOSANS;
}
page {
-webkit-overflow-scrolling: touch; // ios滑动不流畅
height: 100%;
background: #f6f6f6;
width: 100%;
font-size: 30rpx;
font-family: OPPOSANS;
word-break: break-all; //英文文本不换行
color: $u-main-color;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
display: none;
}
@import 'static/style/index.scss';
</style>
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,26 @@


# 更新日志

## V1.3.6(2021-8-30)
1. 优化 小程序性能问题,更换router底层依赖版本,精简店铺装修组件
2. 修复 登录卡片隐藏后,需要点击两次才能调起的问题
3. 修复 微信小程序,进入直播内容页面,跳转商品详情后,无法返回上一级的问题
4. 修复搜索页跳转商品列表,商品卡片偶尔重复问题
5. 修复门店中心的订单详情,下单时间NaN问题
6. 修复微信小程序真机测试时,自提商品核销码生成不稳定的问题
7. 修复微信小程序,登录错误,显示The given payload报错的问题。
8. 修复ios部分机型,首页装修优惠券背景空白问题
9. 重构 入口文件和shopro启动流程
10. 重构 vuex相关代码,拆分精简数据。
11. 优化 优惠券相关逻辑和样式
12. 修复 门店禁用后,前台还展示的问题
13. 优化 购物车逻辑
14. 优化 瀑布流排版不稳定(左右排列错误)
15. 优化 日历无法快速切换年份
16. 优化 选择商品规格组件
17. 优化 分享海报

## V1.3.2(2021-6-30)
1. 修复秒杀卡片百分比改为件数,统一百分比计算
2. 修复门店地址信息过长会被遮盖
Expand Down
Loading

0 comments on commit 708d761

Please sign in to comment.