1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
| <template>
| <a-drawer
| title="任务详情"
| wrapClassName="weiben-private-drawer"
| width="70%"
| :closable="false"
| :maskClosable="true"
| :visible="visible"
| :after-visible-change="afterVisibleChange"
| @close="onClose"
| >
| <a-spin :spinning="loading">
| <div class="wms-task-management-detail-div">
| <div class="drawer-content">
| <a-table :columns="columns" :data-source="list" row-key="id" :pagination="false">
| <template slot="index" slot-scope="text, record, index">{{index+1}}</template>
| </a-table>
| </div>
| </div>
| </a-spin>
| </a-drawer>
| </template>
|
| <script>
| import { WmsTaskDetail } from '@/api/modular/main/WmsTaskManage'
| export default {
| name:'wmsTaskManagementDetailDrawer',
| emits:['update:visible'],
| props:{
| visible:{
| type:Boolean,
| default:false
| },
| row:{
| type:Object,
| default:function(){
| return {}
| }
| }
| },
| data(){
| return {
| loading:false,
| list:[],
| columns:[
| {
| dataIndex:'index',
| title:'序号',
| fixed:'left',
| width:'60',
| scopedSlots: { customRender: 'index' }
| },
| {
| dataIndex:'materialNo',
| title:'物料编号'
| },
| {
| dataIndex:'materialName',
| title:'物料名称'
| },
| {
| dataIndex:'materialSpec',
| title:'尺寸'
| },
| {
| dataIndex:'shipNo',
| title:'船号'
| },
| {
| dataIndex:'drawingNo',
| title:'图号'
| }
| ]
| }
| },
| methods:{
| onClose(){
| this.close()
| },
| close(){
| this.$emit('update:visible',false)
| },
| afterVisibleChange(visible){
| if (visible) {
| this.initShow()
| } else {
| this.afterClsoe()
| }
| },
| initShow(){
| this.loading = true;
| this.getList(()=>{
| this.loading = false;
| })
| },
| getList(callback){
| let params = {OrderNo:this.row.orderNo}
| WmsTaskDetail(params).then(d=>{
| this.list = d.data || []
| callback && callback(true)
| }).catch(()=>{
| callback && callback(false)
| })
| },
| afterClsoe(){
| this.list = []
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .wms-task-management-detail-div{
| height:100%;
| overflow: auto;
| .drawer-content{
| padding: 16px;
| }
| }
| </style>
|
|