|

楼主 |
发表于 2018-11-27 16:14:17
|
显示全部楼层
本帖最后由 苦瓜很甜 于 2018-11-27 16:29 编辑
页面A(orderdishes/main.w)中
var url = require.toUrl("$UI/orderdishes/payWay.w");
var params = {
orderNumber : orderNumber,
total : total,
storename : storename,
settleType : settleType,
orderId : orderId
};
justep.Shell.showPage(url, params);
页面B(payWay.w)中
justep.Shell.closePage(undefined,false,require.toUrl("$UI/orderdishes/main.w"));
就是这么写的不行,要不可以的话可以远程一下,实在找不到原因了,可能别的地方也有关系吧,申请好友了
或者换一种思路
不用justep.Shell.closePage(undefined,false,require.toUrl("$UI/orderdishes/main.w"));
用 var url = require.toUrl("$UI/orderdishes/main.w");
justep.Shell.showPage(url);
这样的话怎么进行页面的刷新
|
|