Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zhetengbiji committed May 29, 2019
2 parents 89b8325 + 8a8d665 commit ba47cfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/uni-h5/dist/index.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/uni-h5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcloudio/uni-h5",
"version": "0.5.4",
"version": "0.5.5",
"description": "uni-app h5",
"main": "dist/index.umd.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/platforms/h5/components/app/popup/picker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default {
return val[0] * 60 + val[1]
},
_getDateValue (val) {
return val[0] * 366 + (val[1] || 0 * 31) + (val[2] || 0)
return val[0] * 366 + (val[1] || 0) * 31 + (val[2] || 0)
},
/**
* 将右侧数组值同步到左侧(交集部分)
Expand Down

0 comments on commit ba47cfd

Please sign in to comment.