ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<template>
    <default-header-page-layout ref="page" title="叫料出库" >
        <view class="page-frame with-action-user-row" :style="{height:pageBodyHeight+'px'}" v-if="pageBodyHeight">
            <action-user-row />
            <view class="with-action-user-row-page-content">
                <!-- page start -->
                <!-- <uni-section title="选择零件号" type="line">
                 <uni-data-select
                        placeholder="请选择零件号"
                        v-model="partNo"
                        :localdata="list"
                        @change="change"
                    ></uni-data-select>
                    </uni-section> -->
                    <view>
                        <view class="labelnew">零件信息:</view>
                        <button type="default" class="btn" @click="toggle('bottom')">添加零件</button>
                    </view>
                    <view class="line2 pl2" v-for="(item,index) in arr" :key="index">
                    
                        <view class="" style="display: flex;">
                            <view class="" style="width: 100%;">
                                <view>
                                    <text class="col7">零件名称:</text>
                                    <text class="ml10">{{item.name}}</text>
                                </view>
                                <view>
                                    <text class="col7">零件编号:</text>
                                    <text class="ml10">{{item.code}}</text>
                                </view>
                                <view>
                                    <text class="col7">生产线:</text>
                                    <text class="ml10">{{item.lineType}}</text>
                                </view>
                            </view>
                        </view>    
                        </view>    
            </view>
        </view>
                <!-- page end -->
        <template v-slot:footer>
            <view class="bottom-btns-row">
                <div class="btn-frame left-btn-frame"><u-button text="重 置" @click="onReset"></u-button></div>
                <div class="btn-frame right-btn-frame"><u-button type="primary" text="呼叫AGV" @click="onConfirm"></u-button></div>
            </view>
        </template>
        <template>
            <view>
                <uni-popup ref="popup" background-color="#fff" >
                    <view class="title">
                        <text style="width: 35%;">选择零件</text>
                        <view class="">
                            <view @click="getall" class="slot-right"
                                style="width: 100%; display: flex; justify-content: flex-end;margin-right: 15px;color:#00cc33">
                                显示全部
                            </view>
                        </view>
                    </view>
                    <view class="search">
                        <u-search placeholder="搜索零件编号" @clear="clearcode" @blur="getPartData" v-model="tempno"
                            input-align="center" bg-color="#fff" shape="square" :show-action="false"></u-search>
                    </view>
                    <scroll-view scroll-y="true" style="height:350px" @scrolltolower="lower">
                        <view class="line3" v-for="(item,index) in list" :key="index" @click="picker(item, $event)">
                            <text style="color:#000">{{item.name  + "    "}}</text>
                            <text class="col7 ml10">{{item.code}}</text>
                            <text class="col7 ml10">{{" " + item.lineType}}</text>
                        </view>
                    <u-empty text="暂无数据" mode="list" v-if='list.length==0'></u-empty>
                    <!-- <u-loadmore :status="status" v-if='list.length>=6' /> -->
                    </scroll-view>
                    </uni-popup>
                </view>
        </template>
    </default-header-page-layout>
</template>
 
<script>
import DefaultHeaderPageLayout from '@/components/DefaultHeaderPageLayout.vue'
import ActionUserRow from '@/components/ActionUserRow.vue'
import ScanInputFormItem from '@/components/ScanInputFormItem.vue'
import { parseDic, $successInfo } from '@/static/js/utils/index.js'
let initInterVal = null;
const defaultForm = {
    containter:''
}
export default {
    name:'outPage',
    components:{DefaultHeaderPageLayout,ActionUserRow,ScanInputFormItem},
    data(){
        return {
            arr:[],
            pageBodyHeight:0,
            form:{...defaultForm},
            msg:{
                containter:''
            },
            msgType:{
                containter:'error'
            },
            containter:null,
            list:[],
            partNo:"",
            tempno:"",
        }
    },
    mounted() {
        this.getPartData()
    },
    methods:{
        getall(){
            this.tempno = "",
            this.getPartData()
        },
        //物料回显
        picker(val, event) {
            this.arr = []
            this.arr.push({
                code: val.code,
                name: val.name,
                lineType:val.lineType,
            })
            this.materialno = ""
            this.$refs.popup.close()
        },
        toggle(type) {
            this.type = type
            this.$refs.popup.open(type)
            this.getPartData()
        },
        change(e) {
            console.log("e:", e);
            },
        /* 获取零件列表 */
        getPartData(){
            let params = {partCode:this.tempno}
            this.$api.get('list',params,{block:'part'}).then((res)=>{
                res.forEach((item)=>{
                    item.value=item.code
                    item.text=item.name
                })
                this.list=res
            }).catch(()=>{
                callback && callback(false)
            })
        },
        /* 响应重置按钮 */
        onReset(){
            this.resetContainer()
        },
        resetContainer(){
            this.lineType=""
        },
        /* 响应确认按钮 */
        onConfirm(){
            this.dealSubmit((f)=>{
              if (f) {
                    this.resetContainer()
                $successInfo('出库成功!');
              } 
            })
        },
        /* 出库接口调用 */
        dealSubmit(callback){
            let params = {
              partNo:this.arr[0].code
            }
            this.$api.post('AutoWare',params,{block:'exwarehouse'}).then(()=>{
                callback && callback(true)
            }).catch(()=>{
                callback && callback(false)
            })
        },
        /* 页面初始化获取页面body高度的定时器 */
        startInitInterval(callback){
            initInterVal = setInterval(()=>{
                if (this.pageBodyHeight) {
                    this.clearInitInterval()
                    callback && callback()
                } else {
                    this.pageBodyHeight = this.$refs.page.getBodyHeight()
                }
            },200)
        },
        /* 清除定时器 */
        clearInitInterval(){
            try{
                clearInterval(initInterVal)
                initInterVal = null
            }catch(e){
                //TODO handle the exception
            }
        }
    },
    onReady(){
        this.startInitInterval(()=>{
            /* 页面初始化后需要执行的代码在这边调用 */
        })
    },
    onUnload(){
        this.clearInitInterval()
    }
}
</script>
 
<style scoped lang="scss">
.bottom-btns-row{
    display: flex;
    padding: 10rpx 0;
    background-color: #fff;
    .btn-frame{
        width: 50%;
        box-sizing: border-box;
    }
    .left-btn-frame{
        padding-left: 20rpx;
        padding-right: 8rpx;
    }
    .right-btn-frame{
        padding-right: 20rpx;
        padding-left: 8rpx;
    }
}
.materials-block{
    padding: 12rpx 16rpx 0 16rpx;
    .materials-box{
        background-color: $uni-bg-color;
        border-radius: 6rpx;
        box-sizing: border-box;
        position: relative;
        $topHeight:50rpx;
        padding-top: $topHeight;
        .box-top{
            position: absolute;
            top:0;
            left: 0;
            width: 100%;
            height: $topHeight;
            display: flex;
            align-items: center;
            &>.line{
                width: 100%;
                height: 2rpx;
                background-color: $uni-border-color;
            }
            &>.title{
                position: absolute;
                top:0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1;
                &>.text{
                    font-size: 30rpx;
                    background-color: $uni-bg-color;
                    color: $uni-border-color;
                    padding: 4rpx 12rpx;
                }
            }
        }
    }
}
.line3 {
        line-height: 1.8rem;
        padding: 8px 3px;
        font-size: 0.93rem;
        border-bottom: 1px solid #eaeaea;
        text-align: center;
    }
    .line2 {
        line-height: 2.3rem;
        padding: 8px 10px 8px 3rem;
        font-size: 0.93rem;
        border-bottom: 1px solid #eaeaea;
    }
    .pl2 {
        padding-left: 2rem !important;
    }
.material-item-group{
    padding: 0 4rpx;
    .material-list-item{
        border-bottom: 2rpx solid $uni-border-color;
        padding-bottom: 10rpx;
        padding-left: 60rpx;
        margin-bottom: 10rpx;
        position: relative;
        &:last-child{
            border-bottom: 0;
        }
        .item-row{
            display: flex;
            &>.label{
                flex-shrink: 0;
                color: $u-tips-color;
                width: 144rpx;
            }
            &>.content{
                flex-grow: 1;
                color: $u-content-color;
            }
        }
        .badge-box{
            position: absolute;
            top:8rpx;
            left: 8rpx;
            z-index: 1;
        }
    }
}
</style>