hera-cli
Version:
Hera Project Creator
61 lines (59 loc) • 1.47 kB
JavaScript
var texts = [
'2011年1月,微信1.0发布',
'同年5月,微信2.0语音对讲发布',
'10月,微信3.0新增摇一摇功能',
'2012年3月,微信用户突破1亿',
'4月份,微信4.0朋友圈发布',
'同年7月,微信4.2发布公众平台',
'2013年8月,微信5.0发布微信支付',
'2014年9月,企业号发布',
'同月,发布微信卡包',
'2015年1月,微信第一条朋友圈广告',
'2016年1月,企业微信发布',
'2017年1月,小程序发布',
'......'
]
Page({
data: {
text: '',
canAdd: true,
canRemove: false
},
extraLine: [],
add: function (e) {
var that = this
this.extraLine.push(texts[this.extraLine.length % 12])
this.setData(
{
text: this.extraLine.join('\n'),
canAdd: this.extraLine.length < 12,
canRemove: this.extraLine.length > 0
},
function (res) {
// this is setData callback
console.log('setData Callback', res)
}
)
setTimeout(function () {
that.setData({
scrollTop: 99999
})
}, 0)
},
remove: function (e) {
var that = this
if (this.extraLine.length > 0) {
this.extraLine.pop()
this.setData({
text: this.extraLine.join('\n'),
canAdd: this.extraLine.length < 12,
canRemove: this.extraLine.length > 0
})
}
setTimeout(function () {
that.setData({
scrollTop: 99999
})
}, 0)
}
})