Skip to content

Commit b17103d

Browse files
committed
初始化:cli项目
1 parent defb269 commit b17103d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/node_modules/*
33
/.idea/*
44
deploy.sh
5+
package-lock.json

uview-ui/components/u-dropdown-list/u-dropdown-list.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default {
108108
type: String,
109109
default: 'none'
110110
},
111-
//top rpx 选择框高度也用这个值
111+
//toprpx 选择框高度也用这个值
112112
top: {
113113
type: Number,
114114
default: 90

uview-ui/components/u-parse/u-parse.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@
525525
style += '</style>';
526526
html = style + html;
527527
}
528-
// 处理 rpx
528+
// 处理rpx
529529
if (html.includes('rpx'))
530530
html = html.replace(/[0-9.]+\s*rpx/g, $ => (parseFloat($) * windowWidth / 750) + 'px');
531531
return html;

0 commit comments

Comments
 (0)