Record custom indicator time
Called in Page to record the custom indicator time of this page.
this.recordTyTime()
Example:
Page({
...
onReady: function () {
wx.request({
url: EXAMPLE_URL,
success: (res) => {
this.recordTyTime();
}
})
},
...
})