5 changed files with 1127 additions and 56 deletions
@ -0,0 +1,887 @@
|
||||
<template> |
||||
<basic-container> |
||||
<div class="avue-crud"> |
||||
<el-divider>基本信息</el-divider> |
||||
<!-- <avue-form :option="propertyoption" ref="myForm" v-model="dataForm" @row-update="rowUpdate" >--> |
||||
<!-- <template #input="{row}">--> |
||||
<!-- <el-tag>序号:{{row.$index}}-数据:{{row.input}}</el-tag>--> |
||||
<!-- </template>--> |
||||
<!-- </avue-form>--> |
||||
<el-row :gutter="24" class="rows"> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24" > |
||||
<span>提货批次:{{data.pickupBatch}} </span> |
||||
</el-col> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||
<span>服务号:{{data.serviceNumber}} </span> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row :gutter="24" class="rows"> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||
<span>运单号:{{data.waybillNumber}} </span> |
||||
</el-col> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||
<span>收货单位:{{data.consigneeUnit}} </span> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row :gutter="24" class="rows"> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||
<span>收货人:{{data.customerName}} </span> |
||||
</el-col> |
||||
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||
<!-- <span>{{deliverydata.loadingTeamType}} </span> --> |
||||
<span>联系电话: {{data.customerTelephone}} </span> |
||||
</el-col> |
||||
</el-row> |
||||
<el-divider>订单列表</el-divider> |
||||
<el-tabs type="border-card" v-model="activeTab" @tab-click="handleTabClick" > |
||||
<el-tab-pane label="订 单 列 表" name="tab2"> |
||||
|
||||
<!-- 列表模块 --> |
||||
<el-table ref="table" v-loading="loading" |
||||
@selection-change="selectionChange" |
||||
:data="orddata" |
||||
:height="height" |
||||
style="width: 70%" |
||||
:border="option.border" |
||||
> |
||||
<el-table-column type="expand" v-if="ordoption.expand" align="center"></el-table-column> |
||||
<template v-for="(item,index) in ordoption.column"> |
||||
<!-- table字段 --> |
||||
<el-table-column v-if="item.hide!==true" |
||||
:prop="item.prop" |
||||
:label="item.label" |
||||
align="center" |
||||
:width="item.width" |
||||
:key="index"> |
||||
</el-table-column> |
||||
</template> |
||||
</el-table> |
||||
<div class="avue-crud__pagination" style="width:100%"> |
||||
<!-- 分页模块 --> |
||||
<el-pagination align="right" |
||||
background |
||||
@size-change="sizeOrderChange" |
||||
@current-change="currentOrderChange" |
||||
:current-page="ordpage.currentPage" |
||||
:page-sizes="[10, 20, 30, 40, 50, 100]" |
||||
:page-size="ordpage.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="ordpage.total"> |
||||
</el-pagination> |
||||
</div> |
||||
|
||||
</el-tab-pane> |
||||
<el-tab-pane label="包 件 列 表" name="tab3"> |
||||
<!-- 列表模块 --> |
||||
<el-table ref="table" v-loading="loading" |
||||
@selection-change="selectionChange" |
||||
:data="packdata" |
||||
:height="height" |
||||
style="width: 100%" |
||||
:border="option.border" |
||||
> |
||||
<el-table-column type="expand" v-if="wrapoption.expand" align="center"></el-table-column> |
||||
<template v-for="(item,index) in wrapoption.column"> |
||||
<!-- table字段 --> |
||||
<el-table-column v-if="item.hide!==true" |
||||
:prop="item.prop" |
||||
:label="item.label" |
||||
align="center" |
||||
:width="item.width" |
||||
:key="index"> |
||||
</el-table-column> |
||||
</template> |
||||
</el-table> |
||||
|
||||
<div class="avue-crud__pagination" style="width:100%"> |
||||
<!-- 分页模块 --> |
||||
<el-pagination align="right" |
||||
background |
||||
@size-change="psizeChange" |
||||
@current-change="pcurrentChange" |
||||
:current-page="packpage.currentPage" |
||||
:page-sizes="[10, 20, 30, 40, 50, 100]" |
||||
:page-size="packpage.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="packpage.total"> |
||||
</el-pagination> |
||||
</div> |
||||
|
||||
</el-tab-pane> |
||||
<el-tab-pane label="库 存 品 列 表" name="tab4"> |
||||
|
||||
<!-- 列表模块 --> |
||||
<el-table ref="table" v-loading="loading" |
||||
@selection-change="selectionChange" |
||||
:data="inventorydata" |
||||
:height="height" |
||||
style="width: 100%" |
||||
:border="option.border" |
||||
> |
||||
<el-table-column type="expand" v-if="inventoryoption.expand" align="center"></el-table-column> |
||||
<template v-for="(item,index) in inventoryoption.column"> |
||||
<!-- table字段 --> |
||||
<el-table-column v-if="item.hide!==true" |
||||
:prop="item.prop" |
||||
:label="item.label" |
||||
align="center" |
||||
:width="item.width" |
||||
:key="index"> |
||||
</el-table-column> |
||||
</template> |
||||
</el-table> |
||||
<div class="avue-crud__pagination" style="width:100%"> |
||||
<!-- 分页模块 --> |
||||
<el-pagination align="right" |
||||
background |
||||
@size-change="sizeInChange" |
||||
@current-change="currentInChange" |
||||
:current-page="inventorypage.currentPage" |
||||
:page-sizes="[10, 20, 30, 40, 50, 100]" |
||||
:page-size="inventorypage.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="inventorypage.total"> |
||||
</el-pagination> |
||||
</div> |
||||
|
||||
|
||||
</el-tab-pane> |
||||
</el-tabs> |
||||
|
||||
</div> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getDetail, |
||||
add, |
||||
update, |
||||
remove, |
||||
getPackDetail, |
||||
getInventoryDetail, getViewDetailOwn, getOrderDetail |
||||
} from '@/api/distribution/distrilbutionBillLading'; |
||||
import option from '@/option/basic/basicPdarecords'; |
||||
import { mapGetters } from 'vuex'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import dayjs from 'dayjs'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
height: 300, |
||||
// 弹框标题 |
||||
title: '', |
||||
signtitle: '', |
||||
// 是否展示弹框 |
||||
box: false, |
||||
//签收是否显示 |
||||
signBox: false, |
||||
//签收类型 |
||||
signBoxO: false, |
||||
dataForm: {}, |
||||
// 是否显示查询 |
||||
search: true, |
||||
//是否显示新增 |
||||
isadd: false, |
||||
deliverydata:{ |
||||
reservationList:[], |
||||
}, |
||||
// 加载中 |
||||
loading: false, |
||||
//查看按钮 |
||||
edt:false, |
||||
activeTab:'tab2', |
||||
previousTab: null, |
||||
//隐藏 |
||||
pake:false, |
||||
cus:true, |
||||
ord:false, |
||||
inventory:false, |
||||
//查看pda |
||||
padview:false, |
||||
// 是否为查看模式。。 |
||||
view: false, |
||||
// 签收。。 |
||||
signView:false, |
||||
// 查询信息 |
||||
query: {}, |
||||
inputTypeData:[], |
||||
// 分页信息 |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
// 表单数据 |
||||
form: {}, |
||||
// 签收表单数据 |
||||
signform: {}, |
||||
// 选择行 |
||||
selectionList: [], |
||||
isLiabilityData: [], |
||||
//状态列表 |
||||
stateData: [], |
||||
// 表单配置 |
||||
option: { |
||||
expand: false, |
||||
index: true, |
||||
border: true, |
||||
selection: true, |
||||
column: [ |
||||
{ |
||||
label: "配送车次号", |
||||
prop: "trainNumber", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "收货人", |
||||
prop: "consignee", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "收货电话", |
||||
prop: "deliveryPhone", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "收货地址", |
||||
prop: "deliveryAddress", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "订单自编号", |
||||
prop: "orderIds", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
|
||||
{ |
||||
label: "配送件数", |
||||
prop: "packageNub", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "配送库存品数", |
||||
prop: "reservationStockListNum", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "扫描件数", |
||||
prop: "loadedNub", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "是否加急", |
||||
prop: "businessDepartment", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "签收件数", |
||||
prop: "receivedQuantity", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "签收状态", |
||||
prop: "signingStatus", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
] |
||||
}, |
||||
|
||||
// 表单配置 |
||||
signoption: { |
||||
height:'auto', |
||||
width:'40px', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: true, |
||||
dialogClickModal: false, |
||||
emptyBtn: false, //隐藏清空按钮 |
||||
submitBtn: false, //隐藏提交按钮 |
||||
column: [ |
||||
{ |
||||
label: "收货人姓名", |
||||
labelWidth:'150', |
||||
span:11, |
||||
prop: "consignee", |
||||
type: "input", |
||||
width:"150px", |
||||
align:'center', |
||||
disabled:true, |
||||
// rules: [{ |
||||
// required: true, |
||||
// message: "输入承运商编号", |
||||
// trigger: "blur" |
||||
// }], |
||||
}, |
||||
{ |
||||
label: "收货人电话", |
||||
prop: "deliveryPhone", |
||||
labelWidth:'150', |
||||
span:11, |
||||
type: "input", |
||||
width:"150px", |
||||
align:'center', |
||||
disabled:true, |
||||
}, |
||||
{ |
||||
label: "收货地址", |
||||
prop: "deliveryAddress", |
||||
labelWidth:'150', |
||||
span:11, |
||||
type: "input", |
||||
width:"150px", |
||||
align:'center', |
||||
disabled:true, |
||||
}, |
||||
{ |
||||
label: "签收类型", |
||||
prop: "signingType", |
||||
labelWidth:'150', |
||||
span:11, |
||||
type: "radio", |
||||
width:"150px", |
||||
align:'center', |
||||
disabled:false, |
||||
dicData: [ |
||||
{ |
||||
label: '签收', |
||||
value: '1', |
||||
}, |
||||
{ |
||||
label: '代签收', |
||||
value: '2', |
||||
} |
||||
], |
||||
}, |
||||
{ |
||||
label: "签收图片", |
||||
prop: "deliverySignPictures", |
||||
labelWidth:'150', |
||||
type: 'upload', |
||||
listType: 'picture-card', |
||||
width:"150px", |
||||
span:15, |
||||
multiple:true, |
||||
align:'left', |
||||
action: '/blade-resource/oss/endpoint/put-file', |
||||
limit: 5, |
||||
propsHttp: { |
||||
res: 'data', |
||||
url: 'link', |
||||
}, |
||||
disabled:false, |
||||
}, |
||||
// { |
||||
// label: "复核图片", |
||||
// prop: "clerkSignPictures", |
||||
// type: 'upload', |
||||
// listType: 'picture-card', |
||||
// dataType: 'string', |
||||
// labelWidth:'150', |
||||
// span:15, |
||||
// multiple:true, |
||||
// width:"200px", |
||||
// align:'left', |
||||
// action: '/blade-resource/oss/endpoint/put-file', |
||||
// limit: 15, |
||||
// propsHttp: { |
||||
// res: 'data', |
||||
// url: 'link', |
||||
// }, |
||||
// rules: [{ |
||||
// required: true, |
||||
// message: "请上传图片", |
||||
// trigger: "blur" |
||||
// }], |
||||
// }, |
||||
|
||||
{ |
||||
label: "备注", |
||||
prop: "clerkSignRemarks", |
||||
labelWidth:'150', |
||||
span:15, |
||||
type: "input", |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
|
||||
] |
||||
}, |
||||
|
||||
|
||||
// 表单配置 |
||||
wrapoption: { |
||||
expand: false, |
||||
index: true, |
||||
border: true, |
||||
selection: true, |
||||
column: [ |
||||
{ |
||||
label: "包条码", |
||||
prop: "orderPackageCode", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "仓库", |
||||
prop: "warehouse", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "一级品类", |
||||
prop: "firsts", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "二级品类", |
||||
prop: "second", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "三级品类", |
||||
prop: "thirdProduct", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "物料编号", |
||||
prop: "materialCode", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "物料名称", |
||||
prop: "materialName", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "托盘码", |
||||
prop: "pallet", |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "库位号", |
||||
prop: "goodsAllocation", |
||||
|
||||
width:"100px" |
||||
}, |
||||
|
||||
] |
||||
}, |
||||
// 库存品表单配置 |
||||
inventoryoption: { |
||||
expand: false, |
||||
index: true, |
||||
border: true, |
||||
selection: true, |
||||
column: [ |
||||
{ |
||||
label: "sku", |
||||
prop: "sku", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
// { |
||||
// label: "订单自编号", |
||||
// prop: "orderCode", |
||||
// search: true, |
||||
// width:"100px" |
||||
// }, |
||||
{ |
||||
label: "物料名称", |
||||
prop: "descriptionGoods", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
// { |
||||
// label: "单位", |
||||
// prop: "cargoUnit", |
||||
// search: true, |
||||
// width:"100px" |
||||
// }, |
||||
{ |
||||
label: "备货数", |
||||
prop: "deliveryNumber", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "已备数量", |
||||
prop: "readyStock", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "物料编号", |
||||
prop: "cargoNumber", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "单位", |
||||
prop: "cargoUnit", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "托盘码", |
||||
prop: "pallet", |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "库位信息", |
||||
prop: "goodsAllocation", |
||||
width:"100px" |
||||
}, |
||||
|
||||
|
||||
] |
||||
}, |
||||
// 订单表单配置 |
||||
ordoption: { |
||||
expand: false, |
||||
index: true, |
||||
border: true, |
||||
selection: true, |
||||
column: [ |
||||
{ |
||||
label: "订单自编号", |
||||
prop: "orderCode", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "货物名称", |
||||
prop: "descriptionGoods", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "物料名称", |
||||
prop: "materialName", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "备货件数", |
||||
prop: "handQuantity", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "已备数量", |
||||
prop: "preparedQuantity", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "备货状态", |
||||
prop: "stockupStatusName", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "托盘码", |
||||
prop: "pallet", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
{ |
||||
label: "货位信息", |
||||
prop: "goodsAllocation", |
||||
search: true, |
||||
width:"100px" |
||||
}, |
||||
] |
||||
}, |
||||
//包肩分页信息 |
||||
wpage:{ |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
//包肩分页信息 |
||||
packpage:{ |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
ordpage:{ |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
inventorypage:{ |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
// 表单列表 |
||||
data: [], |
||||
// 签收列表 |
||||
signdata: [], |
||||
//客户id |
||||
wid:null, |
||||
//客户详情 |
||||
wrapdata:[], |
||||
//包条列表 |
||||
packdata:[], |
||||
//订单列表 |
||||
orddata:[], |
||||
//库存品列表 |
||||
inventorydata:[], |
||||
}; |
||||
}, |
||||
watch: { |
||||
// eslint-disable-next-line no-unused-vars |
||||
'$route'(to, from) { |
||||
// this.isadd =false; |
||||
// this.query.masterId = null; |
||||
// this.masterId = null; |
||||
// if (!!this.$route.query.data) { |
||||
// // //做一些路由变化的响应 |
||||
// // // this.isadd =true; |
||||
// // this.query.masterId = this.$route.query.data; |
||||
// // this.masterId = this.$route.query.data; |
||||
// //重新获取数据 |
||||
// this.onLoad(this.page); |
||||
// } else { |
||||
// } |
||||
} |
||||
}, |
||||
mounted() { |
||||
this.init(); |
||||
this.onLoad(); |
||||
}, |
||||
created() { |
||||
// //查询字典 |
||||
// this.queryDictionary(); |
||||
}, |
||||
computed: { |
||||
...mapGetters(['permission']), |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(','); |
||||
} |
||||
}, |
||||
methods: { |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
//修改 |
||||
rowUpdate(row, index, done, loading) { |
||||
console.log("row>>>>>>>>",row); |
||||
}, |
||||
queryDictionary() { |
||||
getDictionaryBiz('yes_no').then(res => { |
||||
this.isLiabilityData = res.data.data; |
||||
}); |
||||
getDictionaryBiz('basic_in_type').then(res => { |
||||
this.inputTypeData = res.data.data; |
||||
}); |
||||
|
||||
}, |
||||
//返回 |
||||
handleViewpda() { |
||||
|
||||
}, |
||||
//取消 |
||||
cancellation(){ |
||||
this.signBox = false; |
||||
}, |
||||
init() { |
||||
this.height = this.setPx(document.body.clientHeight - 340); |
||||
}, |
||||
handleTabClick(tab, event){ |
||||
console.log("tab>>>>>>>>", tab.paneName); |
||||
let tabName = tab.paneName |
||||
switch (tabName){ |
||||
case 'tab2': |
||||
console.log("ssss"); |
||||
this.handleOrder(this.ordpage); |
||||
break; |
||||
case 'tab3': |
||||
this.handlePackage(this.packpage); |
||||
break; |
||||
case 'tab4': |
||||
console.log("ssss"); |
||||
this.handleInventory(this.inventorypage); |
||||
break; |
||||
} |
||||
}, |
||||
searchHide() { |
||||
this.search = !this.search; |
||||
}, |
||||
searchChange() { |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page); |
||||
}, |
||||
handleSubmit() { |
||||
this.$refs.form.validate(valid => { |
||||
if (valid) { |
||||
this.form.stringValue =jsonString; |
||||
if (!this.form.id) { |
||||
this.form.masterId = this.propertyformdata.id; |
||||
add(this.form).then(() => { |
||||
this.box = false; |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
let str = { |
||||
val: false |
||||
} |
||||
this.$emit("returnproperty", str); |
||||
}); |
||||
} else { |
||||
update(this.form).then(() => { |
||||
this.box = false; |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
let str = { |
||||
val: false |
||||
} |
||||
this.$emit("returnproperty", str); |
||||
}); |
||||
} |
||||
} else { |
||||
console.log('error submit!!'); |
||||
return false; |
||||
} |
||||
}); |
||||
}, |
||||
//订单列表 |
||||
handleOrder(page){ |
||||
let params={} |
||||
params.billLadingId = this.$route.query.id; |
||||
getOrderDetail(page.currentPage, page.pageSize, Object.assign(params)).then(res => { |
||||
console.log("查看>>>>>订单>>",res.data.data); |
||||
const data =res.data.data |
||||
this.orddata = data.records; |
||||
this.ordpage.total = data.total |
||||
}); |
||||
}, |
||||
//包件列表 |
||||
handlePackage(page){ |
||||
let params={} |
||||
params.billLadingId = this.$route.query.id; |
||||
getPackDetail(page.currentPage, page.pageSize, Object.assign(params)).then(res => { |
||||
console.log("查看>>>>>包间>>",res.data.data); |
||||
const data =res.data.data |
||||
this.packdata = data.records |
||||
this.packpage.total = data.total |
||||
}); |
||||
|
||||
}, |
||||
//库存列表 |
||||
handleInventory(page){ |
||||
let params={} |
||||
params.billLadingId = this.$route.query.id; |
||||
getInventoryDetail(page.currentPage, page.pageSize, Object.assign(params)).then(res => { |
||||
console.log("查看>>>>>库存>>",res.data.data); |
||||
const data =res.data.data |
||||
this.inventorydata = data.records |
||||
this.inventorypage.total = data.total |
||||
}); |
||||
}, |
||||
|
||||
beforeClose(done) { |
||||
done(); |
||||
this.form = {}; |
||||
this.view = false; |
||||
}, |
||||
selectionChange(list) { |
||||
console.log("sllsls"); |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.table.clearSelection(); |
||||
}, |
||||
currentOrderChange(currentPage) { |
||||
this.ordpage.currentPage = currentPage; |
||||
this.handleOrder(this.ordpage); |
||||
}, |
||||
sizeOrderChange(pageSize) { |
||||
this.ordpage.pageSize = pageSize; |
||||
this.handleOrder(this.ordpage); |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
this.onLoad(this.page); |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
this.onLoad(this.page); |
||||
}, |
||||
currentInChange(currentPage) { |
||||
this.inventorypage.currentPage = currentPage; |
||||
this.handleInventory(this.inventorypage); |
||||
}, |
||||
sizeInChange(pageSize) { |
||||
this.inventorypage.pageSize = pageSize; |
||||
this.handleInventory(this.inventorypage); |
||||
}, |
||||
pcurrentChange(currentPage) { |
||||
this.packpage.currentPage = currentPage; |
||||
this.handlePackage(this.packpage) |
||||
}, |
||||
psizeChange(pageSize) { |
||||
this.packpage.pageSize = pageSize; |
||||
this.handlePackage(this.packpage) |
||||
}, |
||||
onLoad() { |
||||
//查询详情 |
||||
this.loading = true; |
||||
let id = this.$route.query.id; |
||||
getViewDetailOwn(id).then(res => { |
||||
console.log("res.data>>>>>>>>>>>>",res.data.data); |
||||
const data = res.data.data[0] |
||||
//this.deliverydata = data |
||||
this.data = data; |
||||
}); |
||||
this.handleOrder(this.ordpage); |
||||
/*this.handlePackage(this.packpage); |
||||
this.handleInventory(this.packpage);*/ |
||||
this.loading = false; |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
Loading…
Reference in new issue