Skip to content

Commit 18b1795

Browse files
二一7insummer
authored andcommitted
fix:修复评分事件名问题,以及actionsheet遮罩错误 (#368)
1 parent 03f22bc commit 18b1795

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/dist/action-sheet/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Component({
5454
success: null,
5555
fail: null,
5656
title: '',
57-
locked: true,
57+
locked: false,
5858
cancelText: '取消',
5959
showCancel: false
6060
};

examples/dist/rate/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Component({
5353
this.setData({
5454
score:index + 1
5555
})
56-
this.triggerEvent('linChange',{score:index+1})
56+
this.triggerEvent('linchange',{score:index+1})
5757
}
5858
}
5959
})

src/action-sheet/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Component({
5454
success: null,
5555
fail: null,
5656
title: '',
57-
locked: true,
57+
locked: false,
5858
cancelText: '取消',
5959
showCancel: false
6060
};

src/rate/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Component({
5353
this.setData({
5454
score:index + 1
5555
})
56-
this.triggerEvent('linChange',{score:index+1})
56+
this.triggerEvent('linchange',{score:index+1})
5757
}
5858
}
5959
})

0 commit comments

Comments
 (0)