Authored by biao

add description in data structure and fix bug of pay.js

... ... @@ -107,7 +107,7 @@
}
## 首页
{
headerDownload: {
img: '',
... ... @@ -249,7 +249,7 @@
## 逛
### 资讯(公用)
{
id: 1,
showTags: true/false, //是否显示标签
... ... @@ -305,9 +305,9 @@
}
### 逛列表页
{
infos:
infos:
[
{...}, //标签
...
... ... @@ -724,7 +724,7 @@
},
...
]
}
## 商品列表页
... ... @@ -987,14 +987,14 @@
canceled: true, //已取消
unpaid: true, //or 未支付
unreceived: '', //or 待收货(未发货/未收货),查看物流URL
//待收货时传递物流参数
logisticsUrl: ''
}
### 订单详情页
{
orderDetail: {
orderNum: '', //订单号
... ... @@ -1006,7 +1006,7 @@
orderStatus: '订单成功', //订单取消...等订单状态
orderNum: '',
orderTime: '',
//订单状态
canceled: true, //是否是取消的订单
completed: true, //是否是已完成订单
... ... @@ -1060,7 +1060,7 @@
'navHome': 'sss ',
'navTitle': '商品详情'
},
'bannerTop': {
'list': [
{
... ... @@ -1090,7 +1090,7 @@
is_soon_sold_out: true //即将售罄
}
],
'goodsName' : 'Stussy No. 4 BOX TEE ',
'goodsSubtitle' : '【全民拼抢购】经典印花T恤,满4件免一件!',
... ... @@ -1166,25 +1166,25 @@
'detail' : {
'list' : [
{
{
'params' : [
{
{
'param' : '尺寸'
},
...
...
]
},
...
]
}
},
'measurementMethod' : {
'title': '测量方式',
'enTitle': 'MEASUREMENT METHOD',
'img' : '',
},
'reference' : {
'title' : '模特试穿',
'enTitle' : '',
... ... @@ -1243,6 +1243,31 @@
'cartInfo' : {
'numInCart' : 3,
'goodsInstore' : 0,
'isCollect':true//
'isCollect':true//
}
}
###支付中心
{
'payAppInfo' : {
'appIcon' : 'http://static.yohobuy.com/images/icon.png',
'app' : '微信支付',
'hint' : '需下载微信客户端',
'subHint' : '推荐使用'
}
}
###物流详情
{
'logisticImg' : 'http://static.yohobuy.com/images/icon.png',
'logisticUrl' : 'http://www.shunfeng.com',
'logisticCompany' : '顺丰',
'logisticNumber' : '1231231231',
'logisticDetail' : {
'status' : '南京市 派送中',
'date' : '2015-12-03'
}
}
... ...
... ... @@ -15,3 +15,5 @@ require('./address');
require('./suggest');
require('./browse-record');
require('./address-act');
require('./logistic');
require('./pay');
... ...
... ... @@ -29,7 +29,7 @@ function hideWeChatPay() {
}
function handleForWX() {
if (isWXOpen()) {
if (!isWXOpen()) {
hideWeChatPay();
}
}
... ...