12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- Page({
-
- data: {
- },
-
- onLoad: function (options) {
- console.log(options)
- var that=this
- const sr=options.sr
- console.log(sr)
- if (sr == 1){
- that.setData({
- tex:"非洲野猫的样子\n",
- texx:" 初中一生物老师的佳作,讲非洲草原上的生态,全班无人听讲。\n他大怒:“你们都看我呀!你们不看我怎么知道非洲野猫长什么样子啊!”"
- })
- } else if (sr ==2){
- that.setData({
- tex:"拿一个柿饼来\n",
- texx:"有个农妇,天清晨醒来,觉得饿,她想,皇后娘娘是怎么享福的呢? \n一定是一觉醒来就叫:“大姐,拿一个柿饼来吃吃。”"
- })
- } else if (sr == 3){
- that.setData({
- tex:"忘了一半\n",
- texx:"一人死,奈何桥头喝孟婆汤,近半时突吻孟婆,婆羞且怒:戏弄老婆子作甚?\n死者:我临死前要吻一人,刚才喝汤偏忘了要吻谁。就你吧。"
- })
- }
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function (options) {
-
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
-
-
- })
|