#
whycq
2024-03-26 d587c0e6128b5a2d38d5a1ed44cbb8fd127363a5
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
<template>
    <view class="container">
        <view class="code">
            <uni-search-bar :focus="searchFocus" v-model="searchValue"  @input="searchInput()" ma
                maxlength="500" ancel="cancel" @clear="clear" placeholder="输入 / 扫描商品">
            </uni-search-bar>
        </view>
        <view class="list" v-for="(item,i) in dataList">
            <!-- 左侧 -->
            <view class="list-left">
                <!-- 左上 -->
                <view class="list-left-top">
                    <view style="font-weight: bold;">工作号{{item.wrkNo}}</view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">工作状态</text>
                        <text>{{item.wrkSts$}}</text>
                    </view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">入出库类型</text>
                        <text>{{item.ioType$}}</text>
                    </view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">优先级</text>
                        <text>{{item.ioPri}}</text>
                    </view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">源库位</text>
                        <text>{{item.sourceLocNo}}</text>
                    </view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">目标库位</text>
                        <text>{{item.locNo}}</text>
                    </view>
                    <view style="display: flex;border-bottom: 1px solid #FFF;margin: 10rpx;">
                        <text style="flex: 1;">料箱码</text>
                        <text>{{item.barcode}}</text>
                    </view>
                </view>
                <!-- 左下 -->
                <view class="list-left-bottom">
                    <button size="mini" @click="getWrkDetlList(item.wrkNo)">明细</button>
                    <button size="mini" @click="handControl(item.wrkNo)">完成</button>
                    <button size="mini">取消</button>
                </view>
            </view>
            <!-- 右侧 -->
            <!-- <view class="list-right"></view> -->
        </view>
        <view style="height: 200rpx;"></view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                baseUrl: '',
                token: '',
                searchValue: '',
                searchFocus: true,
                dataList: []
            }
        },
        onShow() {
            this.baseUrl = uni.getStorageSync('baseUrl');
            this.token = uni.getStorageSync('token');
            this.oldDataList = [...this.dataList]
            this.getWrkMastList()
        },
        methods: {
            // 搜索框输入
            searchInput() {
                
            },
            // 重置搜索框
            clear() {
                
            },
            // 获取工作列表
            getWrkMastList() {
                let _this = this
                _this.dataList = []
                uni.request({
                    url: `${_this.baseUrl}/agv/wrkMast/list/auth`,
                    header: {'token': uni.getStorageSync('token')},
                    data: {
                        curr: 1,
                        limit: 1000,
                    },
                    method: 'GET',
                    success(res) {
                        res = res.data
                        if (res.code === 200) {
                            _this.dataList = res.data.records
                        } 
                    }
                })
            },
            // 获取工作明细
            getWrkDetlList(e) {
                let _this = this
                uni.navigateTo({
                    url: "./wrkDetl",
                    success: function(res) {
                        // 通过eventChannel向被打开页面传送数据   向另外一个页面传递值的
                        res.eventChannel.emit('item', {
                            item: e
                        })
                    },
                    events: {
                        // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据  另外一个页面传过来的
                        acceptDataFromOpenedPage: function(data) {
                            // _this.matnr = data.data
                            _this.input(_this.matnr)
                        },
                    },
                });
            },
            handControl(wrkNo) {
                let _this = this
                uni.request({
                    url: `${_this.baseUrl}/agv/hand/control/wrkMast`,
                    header: {
                        'token': uni.getStorageSync('token'),
                        'content-type': 'application/x-www-form-urlencoded'
                    },
                    data: {
                        workNo: wrkNo,
                        type: 1
                    },
                    method: 'POST',
                    success(res) {
                        res = res.data
                        if (res.code === 200) {
                            _this.getWrkMastList()
                        } 
                    }
                })
            }
        }
    }
</script>
 
<style>
    @import url('../../../static/css/common/order.css');
    .code {
        background-color: #d9d9d9;
        z-index: 99;
        position: sticky;
        top: 0rpx;
        left: 0;
    }
    .list {
        margin: 20rpx;
        background-color: #fff;
        background-color: #157ec1;
        color: #FFF;
        border-radius: 20rpx;
        border: 1px solid #eeeeee;
        display: flex;
        position: relative;
    }
    .list-left {
        flex: 1;
        position: relative;
    }
    .list-left-top {
        /* border-bottom: 1px solid #eeeeee; */
        padding: 20rpx;
    }
    .list-left-bottom {
        border-bottom: 1px solid #eeeeee;
        padding: 10rpx;
        display: flex;
        justify-content: space-around;
    }
    .list-right {
        width: 100rpx;
        border-left: 1px solid #eeeeee;
        display: flex;
        align-items: center;
        justify-content: center;
    }
</style>