liuying
2024-04-25 b4882e617627d537f405774b6576af1de154714d
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
<template>
  <a-modal
    title="新增托盘信息"
    :width="900"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleSubmit"
    @cancel="handleCancel">
    <a-spin :spinning="confirmLoading">
      <a-form :form="form">
        <a-form-item label="托盘编号" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input placeholder="请输入托盘编号" v-decorator="['containerCode', {rules: [{ required: true, message: '请输入托盘编号!' }]}]" />
        </a-form-item>
        <a-form-item label="托盘类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
          <a-select style="width: 100%" placeholder="请选择托盘类型" v-decorator="['containerType', {rules: [{ required: true, message: '请选择类型!' }]}]">
            <a-select-option v-for="(item,index) in containerTypeData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
          </a-select>
        </a-form-item>
        <!-- <a-form-item label="托盘状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
          <a-select style="width: 100%" placeholder="请选择托盘状态" v-decorator="['containerStatus', {rules: [{ required: true, message: '请选择托盘状态!' }]}]">
            <a-select-option v-for="(item,index) in containerStatusData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
          </a-select>
        </a-form-item> -->
        <!-- <a-form-item label="数量" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number placeholder="请输入数量" style="width: 100%" v-decorator="['Quantity', {rules: [{ required: true, message: '请输入数量!' }]}]" />
        </a-form-item> -->
        <a-form-item label="长度" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入长度" v-decorator="['specLength']" />
        </a-form-item>
        <a-form-item label="宽度" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入宽度" v-decorator="['specWidth']" />
        </a-form-item>
        <a-form-item label="高度" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入高度" v-decorator="['specHeight']" />
        </a-form-item>
        <!-- <a-form-item label="限长" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入限长" v-decorator="['limitLength']" />
        </a-form-item>
        <a-form-item label="限宽" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入限宽" v-decorator="['limitWidth']" />
        </a-form-item>
        <a-form-item label="限高" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入限高" v-decorator="['limitHeight']" />
        </a-form-item>
        <a-form-item label="载重上限" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input-number style="width:100%" :min="0" placeholder="请输入载重上限" v-decorator="['maxWeight']" />
        </a-form-item> -->
        <!-- <a-form-item label="父托盘Id" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-input placeholder="请输入父托盘Id" v-decorator="['parentContainerId']" />
        </a-form-item> -->
        <!-- <a-form-item label="托盘分类" :labelCol="labelCol" :wrapperCol="wrapperCol">
          <a-select style="width: 100%" placeholder="请选择托盘分类" v-decorator="['containerCategory', {rules: [{ required: true, message: '请选择托盘分类!' }]}]">
            <a-select-option v-for="(item,index) in containerCategoryData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
          </a-select>
        </a-form-item>
        <a-form-item label="所属车间" :labelCol="labelCol" :wrapperCol="wrapperCol">
          <a-select style="width: 100%" placeholder="请选择所属车间" v-decorator="['workShopType', {rules: [{ required: true, message: '请选择所属车间!' }]}]">
            <a-select-option v-for="(item,index) in workShopTypeData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
          </a-select>
        </a-form-item> -->
      </a-form>
    </a-spin>
  </a-modal>
</template>
 
<script>
  import {
    WmsContainerAdd
  } from '@/api/modular/main/WmsContainerManage'
  export default {
    data () {
      return {
        labelCol: {
          xs: { span: 24 },
          sm: { span: 5 }
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 15 }
        },
        containerTypeData: [],
        containerStatusData: [],
        containerCategoryData: [],
        workShopTypeData: [],
        visible: false,
        confirmLoading: false,
        form: this.$form.createForm(this)
      }
    },
    methods: {
      // 初始化方法
      add (record) {
        this.visible = true
        this.$nextTick(() => {
 
        })
        const containerTypeOption = this.$options
        this.containerTypeData = containerTypeOption.filters['dictData']('container_type')
        const containerStatusOption = this.$options
        this.containerStatusData = containerStatusOption.filters['dictData']('container_status')
        const containerCategoryOption = this.$options
        this.containerCategoryData = containerCategoryOption.filters['dictData']('container_category')
        const workShopTypeOption = this.$options
        this.workShopTypeData = workShopTypeOption.filters['dictData']('les_workshop_type')
      },
      /**
       * 提交表单
       */
      handleSubmit () {
        const { form: { validateFields } } = this
        this.confirmLoading = true
        validateFields((errors, values) => {
          if (!errors) {
            for (const key in values) {
              if (typeof (values[key]) === 'object') {
                values[key] = JSON.stringify(values[key])
              }
            }
            WmsContainerAdd(values).then((res) => {
              if (res.success) {
                this.$message.success('新增成功')
                this.confirmLoading = false
                this.$emit('ok', values)
                this.handleCancel()
              } else {
                this.$message.error('新增失败:' + JSON.stringify(res.message))
              }
            }).finally((res) => {
              this.confirmLoading = false
            })
          } else {
            this.confirmLoading = false
          }
        })
      },
      handleCancel () {
        this.form.resetFields()
        this.visible = false
      }
    }
  }
</script>