css
liuying
2024-04-25 8c89f7c22bb2f4e2bede78e8abd806a77f7e5693
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<template>
  <a-drawer 
    title="库位详情"
    wrapClassName="weiben-private-drawer"
    :width="400"
    :closable="false"
    :maskClosable="true"
    :visible="visible"
    :after-visible-change="afterVisibleChange"
    @close="onClose"
  >
    <a-spin :spinning="loading">
      <div class="zz-inverting-storages-detail-div">
        <div class="location-detail-box">
          <div class="base-info info-box">
            <p>库位编号:{{locationObj.placecode}}</p>
            <p>托盘编号:{{containercode}}</p>
          </div>
          <!-- 物料列表 start -->
          <div class="location-materials">
            
            <div class="location-material-item" v-for="(item,index) in materialList" :key="'material-item-'+index">
              <a-card>
                <div class="info-box">
                  <p>物料编号:{{item.materialNo}}</p>
                  <p>物料名称:{{item.materialName}}</p>
                  <p>尺寸:{{item.materialSpec}}</p>
                  <p>船号:{{item.shipNo}}</p>
                  <p>图号:{{item.drawingNo}}</p>
                </div>
              </a-card>
            </div>
            
          </div>
          <!-- 物料列表 end -->
        </div>
      </div>
    </a-spin>
  </a-drawer>
</template>
 
<script>
import { GetLocationDetail } from '@/api/modular/main/InvertingStorageManage'
export default {
  name:'zzInvertingStorageDetailDrawer',
  emits:['update:visible','callback'],
  props:{
    visible:{
      type:Boolean,
      default:false
    },
    row:{
      type:Object,
      default:function(){
        return {}
      }
    }
  },
  data(){
    return {
      loading:false,
      locationObj:{
        placestatus:null,
        islock:null
      },
      containercode:'',
      materialList:[],
      actionFlag:false
    }
  },
  methods:{
    onClose(){
      this.close()
    },
    close(){
      this.$emit('update:visible',false)
    },
    afterVisibleChange(visible){
      if (visible) {
        this.initShow()
      } else {
        this.afterClsoe()
      }
    },
    initShow(){
      this.loading = true;
      this.getLocationDetail(()=>{
        this.loading = false;
      })
    },
    getLocationDetail(callback){
      let params = {Placecode:this.row.placecode}
      GetLocationDetail(params).then((d)=>{
        this.locationObj = d.data.palceDetails || {}
        this.containercode = d.data.containercode || ''
        this.materialList = d.data.wmsMaterialStocks || []
        callback && callback(true)
      }).catch(()=>{
        callback && callback(false)
      })
    },
    afterClsoe(){
      this.locationObj = {
        placestatus:null,
        islock:null
      }
      this.containercode = ''
      this.materialList = []
      if (this.actionFlag) {
        this.$emit('callback')
      }
      this.actionFlag = false
    }
  }
}
</script>
 
<style lang="less" scoped>
.zz-inverting-storages-detail-div{
  height:100%;
  display: flex;
  flex-direction: column;
  &>.btns-row{
    flex-shrink: 0;
    padding:12px 16px;
    .ant-btn + .ant-btn {
      margin-left: 10px;
    }
  }
  .location-detail-box{
    flex-grow: 1;
    overflow: auto;
  }
  .info-box{
    line-height: 1.5;
    p{
      margin-bottom: 0;
    }
  }
  .base-info,.location-materials{
    padding:0 16px;
    margin-bottom: 16px;
  }
  .location-materials{
    .location-material-item{
      margin-bottom: 12px;
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}
</style>