Commit 0fae37556ba001019f79dea20edbbb46ced8b614

Authored by yvan.ni
1 parent b5d85122

移包的优化

app.json
... ... @@ -238,7 +238,8 @@
238 238 "pages/payment/payment/payment",
239 239 "pages/user/my_service/tment_details",
240 240 "pages/user/my_service/tment_eval",
241   - "pages/user_template/index"
  241 + "pages/user_template/index",
  242 + "pages/team/team_show/team_show"
242 243 ]
243 244 }
244 245 ],
... ...
packageG/pages/team/team_show/team_show.js
... ... @@ -96,10 +96,9 @@ Page({
96 96 onLoad: async function(options) {
97 97 wx.setNavigationBarTitle({ title: "拼团订单",})
98 98 //var postdata=getApp().globalData.to_group;
99   -
100 99 if(options.transfer){
101 100 let obj=getApp().globalData.ts_trans_data;
102   - options=ut.deep_cp(obj);
  101 + options= JSON.parse(JSON.stringify(obj));
103 102 getApp().globalData.ts_trans_data=null;
104 103 }
105 104  
... ...
pages/team/team_show/team_show.wxml
1 1 <!---- //文字"-->
2 2 <view class="rty">
3   - <view>加载中。。</view>
  3 + <view style="margin-top:260rpx">加载中。。</view>
4 4 </view>
... ...