12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- Page({
-
- data: {
- result:{
- type:'success',
- size:40,
- color:'#00af66',
- text:'支付成功',
- btnText:'查看订单',
- url:'/customized/pages/order/order?state=1'
- }
- },
-
- onLoad: function (options) {
- if(!options.state){
- this.setData({
- type: 'clear',
- size: 40,
- color: 'purple',
- text: '支付失败',
- btnText: '返回首页',
- url: '/pages/index/index'
- })
- }
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|