12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Page({
-
- data: {
- },
-
- onLoad: function (options) {
-
- const {compositionCommentModuleList,homeworkComment}=options
- if (compositionCommentModuleList==""){
- var list =[]
- }else{
- var list = JSON.parse(options.compositionCommentModuleList)
- }
- this.setData({list,homeworkComment:JSON.parse(homeworkComment)})
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|