diff --git a/order-app/src/pages.json b/order-app/src/pages.json
index 2f62334..9a7d4ab 100644
--- a/order-app/src/pages.json
+++ b/order-app/src/pages.json
@@ -58,6 +58,13 @@
{
"navigationBarTitleText" : ""
}
+ },
+ {
+ "path" : "pages/order/order",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
}
],
"globalStyle": {
diff --git a/order-app/src/pages/mine/mine.vue b/order-app/src/pages/mine/mine.vue
index 4c859fe..059c713 100644
--- a/order-app/src/pages/mine/mine.vue
+++ b/order-app/src/pages/mine/mine.vue
@@ -1,22 +1,94 @@
- 我的
+
+
+
+
+
+
+ {{nickName}}
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+ .uimage {
+ height: 50px;
+ width: 50px;
+ border-radius: 50%;
+ margin: 5px 0px;
+ }
+
+ .camera {
+ width: 54px;
+ height: 44px;
+
+ &:active {
+ background-color: #ededed;
+ }
+ }
+
+ .user-box {
+ background-color: #fff;
+ }
+
\ No newline at end of file
diff --git a/order-app/src/pages/order/order.vue b/order-app/src/pages/order/order.vue
new file mode 100644
index 0000000..ccbc020
--- /dev/null
+++ b/order-app/src/pages/order/order.vue
@@ -0,0 +1,551 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ res.store }}
+
+
+ {{ res.deal }}
+
+
+
+
+
+
+ {{ item.title }}
+ {{ item.type }}
+ 发货时间 {{ item.deliveryTime }}
+
+
+
+ ¥{{ priceInt(item.price) }}
+ .{{ priceDecimal(item.price) }}
+
+ x{{ item.number }}
+
+
+
+ 共{{ totalNum(res.goodsList) }}件商品 合计:
+
+ ¥{{ priceInt(totalPrice(res.goodsList)) }}.
+ {{ priceDecimal(totalPrice(res.goodsList)) }}
+
+
+
+
+
+
+ 查看物流
+ 卖了换钱
+ 评价
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ res.store }}
+
+
+ {{ res.deal }}
+
+
+
+
+
+
+ {{ item.title }}
+ {{ item.type }}
+ 发货时间 {{ item.deliveryTime }}
+
+
+
+ ¥{{ priceInt(item.price) }}
+ .{{ priceDecimal(item.price) }}
+
+ x{{ item.number }}
+
+
+
+ 共{{ totalNum(res.goodsList) }}件商品 合计:
+
+ ¥{{ priceInt(totalPrice(res.goodsList)) }}.
+ {{ priceDecimal(totalPrice(res.goodsList)) }}
+
+
+
+
+
+
+ 查看物流
+ 卖了换钱
+ 评价
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 您还没有相关的订单
+ 可以去看看有那些想买的
+
+ 随便逛逛
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ res.store }}
+
+
+ {{ res.deal }}
+
+
+
+
+
+
+ {{ item.title }}
+ {{ item.type }}
+ 发货时间 {{ item.deliveryTime }}
+
+
+
+ ¥{{ priceInt(item.price) }}
+ .{{ priceDecimal(item.price) }}
+
+ x{{ item.number }}
+
+
+
+ 共{{ totalNum(res.goodsList) }}件商品 合计:
+
+ ¥{{ priceInt(totalPrice(res.goodsList)) }}.
+ {{ priceDecimal(totalPrice(res.goodsList)) }}
+
+
+
+
+
+
+ 查看物流
+ 卖了换钱
+ 评价
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file