Commit a37be7be authored by 郭晓清's avatar 郭晓清

订单列表页面开发

parent ef7bc723
import util from '@/utils/util.js'
let orderApiFun = function(vm){
let listByRecommendOrder = async (params = {}) => await vm.$u.get('/wxh-worker-rest/rest/recommend/order', params);
/**
* 工单数量查询接口
*/
let listOrderCount = async (params = {}) => await vm.$u.get('http://apidoc.banshouhui.com:3000/mock/31/wxh-worker-rest/rest/'+ util.getToken()+'/order/queryOrdersCount/V2', params);
/**
* 工单列表接口
*/
let listOrder = async (params = {}) => await vm.$u.get('http://apidoc.banshouhui.com:3000/mock/31/wxh-worker-rest/rest/'+ util.getToken()+'/order/revision/list', params);
const orderApi = {
listByRecommendOrder,
listOrderCount,
listOrder,
}
return orderApi
}
......
......@@ -15,6 +15,12 @@
"style": {
"navigationBarTitleText": "订单"
}
},
{
"path": "pages/order/orderItem",
"style": {
"navigationBarTitleText": "订单详情"
}
},
{
"path": "pages/order/complete",
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment