Commit 13708c92 authored by xxx's avatar xxx

修改订单历史表接口

parent c952187c
...@@ -1083,6 +1083,13 @@ var HttpReq = function(){ ...@@ -1083,6 +1083,13 @@ var HttpReq = function(){
params:param, params:param,
}) })
}, },
apiManmadesLishiQuery: function(param){
return request({
url: '/api/Manmades/Lishi',
method: 'get',
params:param,
})
},
personRecordingAdd: function(data){ personRecordingAdd: function(data){
return request({ return request({
url: '/api/Manmades', url: '/api/Manmades',
......
...@@ -164,7 +164,6 @@ export default { ...@@ -164,7 +164,6 @@ export default {
} }
}, },
mounted() { mounted() {
var that = this;
this.$nextTick(() => { this.$nextTick(() => {
this.loadData(); this.loadData();
}) })
...@@ -179,7 +178,7 @@ export default { ...@@ -179,7 +178,7 @@ export default {
param.sort = sort; param.sort = sort;
this.$nextTick(()=>{ this.$nextTick(()=>{
HttpReq.truckDispatching.personRecordingQuery(param).then((res) => { HttpReq.truckDispatching.apiManmadesLishiQuery(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data.content;
......
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