Authored by hongyong.zhao

bug fix

@@ -93,7 +93,12 @@ Component({ @@ -93,7 +93,12 @@ Component({
93 }, 93 },
94 94
95 goList() { 95 goList() {
96 - router.go('index'); 96 + if(getCurrentPages().length === 1) {
  97 + router.go('index');
  98 + } else {
  99 + wx.navigateBack()
  100 + }
  101 +
97 }, 102 },
98 103
99 cancelAlert() { 104 cancelAlert() {
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 24
25 .bottom-banner { 25 .bottom-banner {
26 /* position: fixed; */ 26 /* position: fixed; */
27 - margin-bottom: 88rpx; 27 + padding-bottom: 88rpx;
28 height: 234rpx; 28 height: 234rpx;
29 width: 100%; 29 width: 100%;
30 } 30 }
@@ -69,6 +69,7 @@ class ZeroSellService extends Service { @@ -69,6 +69,7 @@ class ZeroSellService extends Service {
69 } 69 }
70 70
71 fetchCode(data) { 71 fetchCode(data) {
  72 + data.miniAppType = MINI_APP_TYPE
72 return this._post('/code/gain', data); 73 return this._post('/code/gain', data);
73 } 74 }
74 75