spring
4 天以前 435881d494e2be4ba5ce8bfccb02d6ef49e07314
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
<template>
    <view class="wrap">
        <u-form class="form" :model="model" :rules="rules" ref="uForm" label-position="left">
            <u-form-item label="箱号" prop="no" label-width="180" :required="true">
                <input v-model="model.no" placeholder="请扫箱号" :disabled="true"></input>
            </u-form-item>
            <u-form-item label="物料编码" prop="cusMaterialCode" label-width="180" >
                <input v-model="model.cusMaterialCode" placeholder="请扫物料编码" :disabled="true"></input>
            </u-form-item>
            <u-form-item label="包装尺寸" prop="packSize" label-width="180" >
                <picker @change="bindPackSizeChange($event,packSizeList)" :value="packSizeIndex" :range="packSizeList"
                    range-key="value">
                    <view>
                        <text>{{packSizeIndex==null ? "请选择":packSizeList[packSizeIndex].value}}</text>
                    </view>
                </picker>
            </u-form-item>
            <u-form-item label="包材" prop="packMaterial" label-width="180" >
                <picker @change="bindPackMaterialChange($event,packMaterialList)" :value="packMaterialIndex"
                    :range="packMaterialList" range-key="value">
                    <view>
                        <text>{{packMaterialIndex==null ? "请选择":packMaterialList[packMaterialIndex].value}}</text>
                    </view>
                </picker>
            </u-form-item>
            <u-form-item label="包装重量" prop="packWeight" label-width="180" >
                <input placeholder="请输入包装重量" v-model="model.packWeight" type="digit" :disabled="true"></input>
            </u-form-item>
        </u-form>
        <view class="form-footer">
            <u-button class="btn" type="primary" @click="submit">提交</u-button>
            <u-button class="btn" type="default" @click="cancel">清空扫码</u-button>
        </view>
        <scan></scan>
    </view>
</template>
 
<script>
    import scan from "@/components/scan/scan.vue";
    export default {
        components: {
            scan
        },
        data() {
            return {
                type: '',
                model: {
                    id: 0,
                    // no: 'BZ0000000011',
                    // cusMaterialCode: '88.118.1/A0306595',
                    no: '',
                    cusMaterialCode: '',
                    packWeight: '',
                    packSize: '',
                    packMaterial: ''
                },
                rules: {
                    no: [{
                        required: true,
                        message: '编号不能为空',
                        trigger: 'blur'
                    }],
                    packWeight: [{
                        required: true,
                        message: '包装重量不能为空',
                        trigger: 'blur'
                    }],
                    packSize: [{
                        required: true,
                        message: '包装尺寸不能为空',
                        trigger: 'blur'
                    }],
                    packMaterial: [{
                        required: true,
                        message: '包材不能为空',
                        trigger: 'blur'
                    }],
                },
                packMaterialList: [],
                packMaterialIndex: null,
                packSizeList: [],
                packSizeIndex: null,
                packWeightList: [],
            }
        },
        onLoad() {
            this.type = 'add'
            this.model = {}
        },
        onShow() {
 
            let that = this
 
            uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
            uni.$on('scan', function(data) {
                console.log('onscan');
                //扫码成功后的回调,你可以写自己的逻辑代码在这里
                console.log('扫码结果:', data.code);
                if (that.model.no == "undefined" || that.model.no == "" || that.model.no == undefined) {
                    that.model.no = data.code
                } else {
                    that.model.cusMaterialCode = data.code
                }
                that.$forceUpdate();
 
            })
        },
        onNavigationBarButtonTap(e) {
            uni.scanCode({
                success: res => {
                    try {
                        const result = JSON.parse(res.result)
 
                    } catch (e) {}
                }
            });
        },
        onReady() {
            // this.$refs.uForm.setRules(this.rules);
 
            let that = this
            that.$u.api.pigxPacking.packHeadBasicInfoList().then(res => {
 
                let packSizeList = res.data.packSizeWeightList
                let packMaterialList = res.data.packMaterialList
 
                that.packWeightList = packSizeList
 
                if (packSizeList.length > 0) {
                    packSizeList.map((item, index) => {
 
                        let packSize = {
                            lable: item.packSize,
                            value: item.packSize
                        }
                        that.packSizeList.push(packSize)
                    });
                }
 
                packMaterialList.map((item, index) => {
                    let packMaterial = {
                        lable: item,
                        value: item
                    }
                    that.packMaterialList.push(packMaterial)
                });
            });
 
 
        },
        methods: {
            submit() {
 
 
                if (JSON.stringify(this.model) == "{}") {
                    this.$u.toast('请填写必填信息')
                    return
                }
 
                this.$refs.uForm.validate(async valid => {
                    if (valid) {
 
                        await this.$u.api.pigxPacking.addObj(this.model)
                        setTimeout(() => {
                            uni.showModal({
                                title: '提示',
                                content: '添加成功',
                                showCancel: false,
                                success: function() {
                                    uni.setStorageSync('refreshList', true);
                                    uni.navigateTo({
                                        url: '/pages/wareHouse/packing/index'
                                    })
                                }
                            })
                        }, 200)
                    } else {
                        this.$u.toast('您填写的信息有误,请根据提示修正。')
                    }
                });
            },
            cancel() {
                this.model.no = ""
                this.model.cusMaterialCode = ""
                this.$forceUpdate();
            },
            //包装大小选择
            bindPackSizeChange(e, storage) {
 
                if (storage.length <= 0) {
                    this.packSizeIndex = null
                    return
                }
                this.packSizeIndex = e.target.value
                this.model.packSize = storage[this.packSizeIndex].value
 
                let list = this.packWeightList.filter(item => item.packSize = storage[this.packSizeIndex].value)
                if (list.length > 0) {
                    this.model.packWeight = list[0].packWeight
                }
            },
            //包材选择
            bindPackMaterialChange(e, storage) {
 
                if (storage.length <= 0) {
                    this.packMaterialIndex = null
                    return
                }
                this.packMaterialIndex = e.target.value
                this.model.packMaterial = storage[this.packMaterialIndex].value
            },
 
        }
    }
</script>
<style lang="scss" scoped>
    .uni-input-placeholder {
        font-size: 12px;
    }
    
    uni-input{font-size: 12px;}
    
    
</style>