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
<template>
    <el-dialog
        custom-class="sy-modal"
        
        :title="title"
        :close-on-click-modal="false"
        width="600px"
        :before-close="close"
    >
        <template #default>
            <div class="sy-default-form-modal-content add-input-task-frame" v-loading="loading">
                <el-form ref="form" :model="form" :rules="rules" label-width="80px">
                    <el-row>
                        <el-col :span="24">
                            <el-form-item label="物料码" prop="cargoNo">
                                <el-input v-model.trim="form.cargoNo" placeholder="请录入..." @change="getGoodsInfo"></el-input>
                            </el-form-item>
                        </el-col>
                    </el-row>
                    <el-row>
                        <el-col :span="12">
                            <el-form-item label="序列号">
                                <el-input v-model="materialForm.SerialNumber" disabled></el-input>
                            </el-form-item>
                        </el-col>
                        <el-col :span="12">
                            <el-form-item label="系列">
                                <el-input v-model="materialForm.SeriesName" disabled></el-input>
                            </el-form-item>
                        </el-col>
                    </el-row>
                    <el-row>
                        <el-col :span="12">
                            <el-form-item label="品类">
                                <el-input v-model="materialForm.CargoTypeName" disabled></el-input>
                            </el-form-item>
                        </el-col>
                    </el-row>
                </el-form>
            </div>
        </template>
        <template #footer>
            <span class="dialog-footer">
                <el-button @click="onClose">取&nbsp;消</el-button>
                <el-button type="primary" @click="onSubmit(false)" :disabled="!submitEnabled">提&nbsp;交</el-button>
                <el-button type="primary" @click="onSubmit(true)" :disabled="!submitEnabled">提交并继续新增</el-button>
            </span>
        </template>
    </el-dialog>
</template>
 
<script>
import Pannel from '@/components/Pannel1.vue'
import { Search } from '@element-plus/icons'
const defaultForm = {
    cargoNo:''
}
const materialDefaultForm = {
    SerialNumber:'',
    SeriesName:'',
    CargoTypeName:''
}
export default {
    name:'tasksOfVirtualInputAddModalCompontent',
    components:{Pannel,'e-icon-search':Search},
    emits:['submitCallback','update:visible'],
    props:{
        visible:{
            type:Boolean,
            default:false
        }
    },
    data(){
        return {
            title:'新建入库任务',
            loading:false,
            form:{...defaultForm},
            materialForm:{...materialDefaultForm},
            rules:{
                cargoNo:[
                    { required: true, message: '请录入物料码!', trigger: 'blur' }
                ]
            },
            submitEnabled:false
        }
    },
    watch:{
        visible(newVal,oldVal){
            if (newVal!==oldVal) {
                if (newVal) {
                    this.initForm();
                } else {
                    this.clearForm();
                }
            }
        }
    },
    methods:{
        initForm(){
            this.restForm()
            this.$nextTick(()=>{
                this.$refs.form.clearValidate()
            })
        },
        clearForm(){
            this.form = {...defaultForm}
        },
        restForm(){
            this.form = {...defaultForm}
            this.submitEnabled = false
        },
        close(){
            this.$emit('update:visible',false)
        },
        onClose(){
            this.close();
        },
        onSubmit(isMore){
            this.$refs.form.validate((valid) => {
                if (valid) {
                    this.dealSubmit((f)=>{
                        if (f) {
                            if (isMore) {
                                this.restForm()
                                this.$nextTick(()=>{
                                    this.$refs.form.clearValidate()
                                })
                            } else {
                                this.close();
                            }
                            this.$emit('submitCallback',!isMore)
                        }
                    })
                } 
            })
        },
        dealSubmit(callback){
            let params = {...this.form};
            this.loading = true
            this.$api.post('AddInVirtualStore',params,{block:'virtualTask'}).then((d)=>{
                this.loading = false
                callback && callback(true)
            }).catch((err)=>{
                this.loading = false
                callback && callback(false)
            })
        },
        getGoodsInfo(){
            if (!this.form.cargoNo) {
                return false;
            }
            let params = {cargoNo:this.form.cargoNo};
            this.loading = true
            this.$api.post('AnalyzeMaterial',params,{block:'taskMain'}).then((d)=>{
                this.materialForm = {...d}
                this.submitEnabled = true
                this.loading = false
            }).catch((err)=>{
                this.materialForm = {...materialDefaultForm}
                this.submitEnabled = false
                this.loading = false
            })
        }
    }
}
</script>
 
<style scoped lang="scss">
 
</style>