diff --git a/src/api/shop.js b/src/api/shop.js
index e5cc3a6..d342112 100644
--- a/src/api/shop.js
+++ b/src/api/shop.js
@@ -1,4 +1,5 @@
import { getAction, deleteAction, putAction, postAction, httpAction } from '@/api/manage'
export const editOrder = (params)=>postAction("/erp/order/edit",params);
-export const editGoods = (params)=>postAction("/erp/goods/edit",params);
\ No newline at end of file
+export const getOrderTotalPrice = (params)=>getAction("/erp/order/getTotalAmount",params);
+export const editGoods = (params)=>postAction("/erp/goods/edit",params);
diff --git a/src/views/erp/OrderList.vue b/src/views/erp/OrderList.vue
index d705697..6e42ff7 100644
--- a/src/views/erp/OrderList.vue
+++ b/src/views/erp/OrderList.vue
@@ -26,14 +26,13 @@
-
-
{
+ if (res.success) {
+ this.totalPrice = res.result
+ }
+ })
+ },
+ handleSuperQuery(params, matchType) {
+ //高级查询方法
+ if(!params){
+ this.superQueryParams=''
+ this.superQueryFlag = false
+ }else{
+ this.superQueryFlag = true
+ this.superQueryParams=JSON.stringify(params)
+ this.superQueryMatchType = matchType
+ }
+ this.loadData(1)
+ this.getOrderTotalPrice()
+ },
handleOk(type) {
const that = this
const user = that.userInfo()
@@ -346,16 +368,16 @@
},
getSuperFieldList(){
let fieldList=[];
- fieldList.push({type:'string',value:'recipient',text:'收件人',dictCode:''})
+ fieldList.push({type:'string',value:'createTime',text:'创建时间'})
+ fieldList.push({type:'string',value:'recipient',text:'联系人',dictCode:''})
fieldList.push({type:'string',value:'mobile',text:'手机',dictCode:''})
fieldList.push({type:'BigDecimal',value:'totalAmount',text:'总金额',dictCode:''})
fieldList.push({type:'string',value:'userId',text:'用户id',dictCode:''})
fieldList.push({type:'string',value:'addr',text:'地址',dictCode:''})
- fieldList.push({type:'string',value:'financeReview',text:'审核人',dictCode:''})
- fieldList.push({type:'datetime',value:'financeTime',text:'审核时间'})
- fieldList.push({type:'string',value:'financeRemark',text:'审核意见',dictCode:''})
- fieldList.push({type:'string',value:'dispacher',text:'派单人',dictCode:''})
- fieldList.push({type:'datetime',value:'dispacherTime',text:'派发时间'})
+ fieldList.push({type:'string',value:'financeReview',text:'财务确认人',dictCode:''})
+ fieldList.push({type:'string',value:'financeTime',text:'财务确认时间'})
+ fieldList.push({type:'string',value:'dispacher',text:'出货确认人',dictCode:''})
+ fieldList.push({type:'string',value:'dispacherTime',text:'出货确认时间'})
fieldList.push({type:'int',value:'state',text:'状态',dictCode:'orderState'})
fieldList.push({type:'string',value:'remark',text:'备注',dictCode:''})
this.superFieldList = fieldList