diff --git a/api/order.js b/api/order.js
index aee577b..20369d3 100644
--- a/api/order.js
+++ b/api/order.js
@@ -10,7 +10,8 @@ const api = {
receipt: 'order/receipt',
pay: 'order/pay',
- ordquery:'AgencyAddress/order/queryRrder' //订单查询
+ ordquery:'AgencyAddress/order/queryRrder', //订单查询
+ getTicket:'AgencyAddress/order/getTicket', //发票管理
}
// 当前用户待处理的订单数量
@@ -54,4 +55,12 @@ export function ordquery(data){
"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"
}}
return request.post(api.ordquery,data,option)
+}
+
+// order query
+export function getTicket(data){
+ let option={header:{
+ "Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"
+ }}
+ return request.post(api.getTicket,data,option)
}
\ No newline at end of file
diff --git a/pages.json b/pages.json
index ef59b57..336dbb6 100644
--- a/pages.json
+++ b/pages.json
@@ -334,7 +334,9 @@
"style" :
{
"navigationBarTitleText" : "发票管理",
- "enablePullDownRefresh" : false
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#1c223b",
+ "enablePullDownRefresh" : true
}
},
{
diff --git a/pages/user/billManage/index.vue b/pages/user/billManage/index.vue
new file mode 100644
index 0000000..6a3f4e7
--- /dev/null
+++ b/pages/user/billManage/index.vue
@@ -0,0 +1,284 @@
+
+
+
+
+
+
+
+
+
+
+ 订单号:{{ item.batchcode }}
+
+
+ {{item.ticket_status}}
+
+
+
+
+
+
+
+ 开票时间:{{ item.tickettime }}
+
+
+
+ 发票编号:{{ item.ticketid }}
+
+
+
+
+ 开票金额: ¥{{ item.ticketmoney }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无数据
+
+
+
+
+
+
+
+
\ No newline at end of file