order page data structure
Showing
1 changed file
with
17 additions
and
4 deletions
@@ -939,14 +939,27 @@ | @@ -939,14 +939,27 @@ | ||
939 | ### 我的订单 | 939 | ### 我的订单 |
940 | { | 940 | { |
941 | order: { | 941 | order: { |
942 | - orders: [ | 942 | + navs: [ |
943 | + { | ||
944 | + name: '', | ||
945 | + active: true, | ||
946 | + typeId: 1 | ||
947 | + }, | ||
943 | ... | 948 | ... |
944 | - ], | ||
945 | - //没有订单的情况不传orders | ||
946 | - walkWayUrl: '' //随便逛逛url | 949 | + ] |
947 | } | 950 | } |
948 | } | 951 | } |
949 | 952 | ||
953 | + //订单列表 | ||
954 | + { | ||
955 | + orders: [ | ||
956 | + { | ||
957 | + ...//订单 | ||
958 | + } | ||
959 | + ] | ||
960 | + //当无订单时,不传order,返回walkwayUrl | ||
961 | + walkWayUrl: '' | ||
962 | + } | ||
950 | 963 | ||
951 | //订单 | 964 | //订单 |
952 | { | 965 | { |
-
Please register or login to post a comment