Commit b028e08e authored by renjintao's avatar renjintao

outbuond

parent f898b556
...@@ -350,7 +350,7 @@ export default { ...@@ -350,7 +350,7 @@ export default {
} }
}); });
} else { } else {
this.$Message.error("已出库完成!"); this.$Message.success("已出库完成!");
} }
}, },
getMetaiAll() { getMetaiAll() {
......
...@@ -7,11 +7,15 @@ ...@@ -7,11 +7,15 @@
<span class="ml20">申请时间:{{row.creationTime}}</span> <span class="ml20">申请时间:{{row.creationTime}}</span>
<span class="ml20"> <span class="ml20">
状态: 状态:
<state code="accessory.status" :value="row.status+''" type="text"></state> <state code="accessory.status" :value="row.status+''" type="text"></state>
</span> </span>
</p> </p>
<Card :padding="0"> <Card :padding="0">
<p slot="title">申请单物料列表</p> <p slot="title">
<Tooltip max-width="300" content="点击显示所有出库物料库房库位">
<a href="#" @click="clickTitle">申请单物料列表</a>
</Tooltip>
</p>
<div slot="extra"> <div slot="extra">
<Button <Button
type="primary" type="primary"
...@@ -242,7 +246,7 @@ export default { ...@@ -242,7 +246,7 @@ export default {
this.butTxt = "更多"; this.butTxt = "更多";
this.iconLabel = "md-arrow-dropdown"; this.iconLabel = "md-arrow-dropdown";
let parm = { supportMainId : v }; let parm = { supportMainId: v };
this.curRowId = 0; this.curRowId = 0;
Api.listbysupportitem(parm).then((res) => { Api.listbysupportitem(parm).then((res) => {
if (res.success) { if (res.success) {
...@@ -252,6 +256,16 @@ export default { ...@@ -252,6 +256,16 @@ export default {
} }
}); });
}, },
clickTitle() {
this.$refs.gridTable.clearCurrentRow();
let parm = { supportMainId: this.eid };
this.curRowId = 0;
Api.listbysupportitem(parm).then((res) => {
if (res.success) {
this.dataList = res.result;
}
});
},
//状态名称过滤 //状态名称过滤
setName(list, v) { setName(list, v) {
let outPar = { let outPar = {
...@@ -377,5 +391,4 @@ export default { ...@@ -377,5 +391,4 @@ export default {
}; };
</script> </script>
<style scoped> <style scoped>
</style> </style>
\ No newline at end of file
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