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
<template>
  <a-modal
    :title="title"
    :maskClosable="true"
    :width="modalWidth"
    @cancel="handleModalClose"
    :visible="visible">
    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form" :form="form" :model="model" :rules="validatorRules">
 
        <a-row :gutter="24">
          <a-col :span="24">
            <a-form-model-item prop="componentNo" label="零件号" :labelCol="labelColLong"
                               :wrapperCol="wrapperColLong">
              <a-input v-model="model.componentNo" placeholder="请输入零件号"></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
 
        <a-row :gutter="24">
          <a-col :span="24">
            <a-form-model-item prop="componentName" label="零件名称" :labelCol="labelColLong"
                               :wrapperCol="wrapperColLong">
              <a-input v-model="model.componentName" placeholder="请输入零件名称"></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
 
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item prop="scheduleNum" label="班产能" :labelCol="labelCol"
                               :wrapperCol="wrapperCol">
              <a-input v-model="model.scheduleNum" placeholder="请输入班产能"></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item prop="dayNum" label="天产能" :labelCol="labelCol"
                               :wrapperCol="wrapperCol">
              <a-input v-model="model.dayNum" placeholder="请输入天产能"></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
 
        <a-row :gutter="24">
          <a-col :span="24">
            <a-form-model-item prop="productionId" label="生产线" :labelCol="labelColLong"
                               :wrapperCol="wrapperColLong">
              <a-select v-model="model.productionId" @change="handleProductionLineChange"
                        placeholder="请选择生产线">
                <a-select-option v-for="(item,index) in productionList" :key="index" :value="item.id">
                  {{item.productionName}}
                </a-select-option>
              </a-select>
            </a-form-model-item>
          </a-col>
        </a-row>
 
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item prop="overallFlag" label="是否为自动线" :labelCol="{xs: { span: 24 },sm: { span: 8 }}"
                               :wrapperCol="{xs: { span: 24 },sm: { span: 16 }}">
              <j-switch v-model="model.overallFlag" @change="handleSwitchChange"></j-switch>
            </a-form-model-item>
          </a-col>
 
          <a-col :span="12" v-if="model.overallFlag==='N'">
            <a-form-model-item prop="equipmentId" label="生产设备" :labelCol="labelCol" :wrapperCol="wrapperCol">
              <a-select v-model="model.equipmentId" placeholder="请选择生产设备" mode="multiple" :maxTagCount="1"
                        style="width: 100%" allow-clear>
                <a-select-option v-for="(item,index) in equipmentList" :key="index" :value="item.equipmentId">
                  {{item.equipmentId}}
                </a-select-option>
              </a-select>
            </a-form-model-item>
          </a-col>
 
        </a-row>
 
      </a-form-model>
    </a-spin>
 
 
    <template slot="footer">
      <a-popconfirm title="确定放弃操作?" @confirm="handleModalClose" okText="确定" cancelText="取消">
        <a-button style="margin-right: .8rem">取消</a-button>
      </a-popconfirm>
      <a-button @click="handleSubmit" type="primary" :loading="confirmLoading">提交</a-button>
    </template>
 
  </a-modal>
 
</template>
 
<script>
  import pick from 'lodash.pick'
  import api from '@/api/mdc'
 
  export default {
    name: 'SparePartsModal',
    components: {},
    props: {
      driveTypeList: {
        type: Array
      }
    },
    data() {
      return {
        modalWidth: 700,
        form: this.$form.createForm(this),
        validatorRules: {
          componentNo: [
            {
              required: true, message: '请输入零件号'
            }
          ],
          componentName: [
            {
              required: true, message: '请输入零件名称'
            }
          ],
          scheduleNum: [
            {
              required: true, message: '请输入班产能'
            }
          ],
          dayNum: [
            {
              required: true, message: '请输入天产能'
            }
          ],
          productionId: [
            {
              required: true, message: '请选择生产线'
            }
          ]
        },
        title: '操作',
        visible: false,
        model: {
          componentNo: '',
          componentName: '',
          scheduleNum: '',
          dayNum: '',
          overallFlag: 'Y'
        },
        labelCol: {
          xs: { span: 24 },
          sm: { span: 6 }
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 18 }
        },
        labelColLong: {
          xs: { span: 24 },
          sm: { span: 3 }
        },
        wrapperColLong: {
          xs: { span: 24 },
          sm: { span: 21 }
        },
        confirmLoading: false,
        productionList: [],
        equipmentList: []
      }
    },
    created() {
 
    },
    methods: {
      add() {
        this.visible = true
        this.model = {
          componentNo: '',
          componentName: '',
          scheduleNum: '',
          dayNum: '',
          overallFlag: 'Y'
        }
        this.getProductionLineByApi()
        this.$nextTick(() => {
          this.form.setFieldsValue(pick(this.model, 'componentNo', 'componentName', 'scheduleNum', 'dayNum', 'overallFlag'))
        })
      },
 
      edit(record) {
        this.visible = true
        this.model = Object.assign({}, record)
        this.model.equipmentId = this.model.equipmentId.split(',')
        console.log('model', this.model)
        this.getProductionLineByApi()
        this.$nextTick(() => {
          this.form.setFieldsValue(pick(this.model, 'componentNo', 'componentName', 'scheduleNum', 'dayNum', 'productionId', 'overallFlag', 'equipmentId'))
        })
      },
 
      handleSubmit() {
        const that = this
        // 触发表单验证
        this.$refs.form.validate(valid => {
          if (valid) {
            that.confirmLoading = true
            let obj
            if (!this.model.equipmentId) this.model.equipmentId = ''
            else this.model.equipmentId = this.model.equipmentId.join(',')
            if (this.title == '新增') {
              obj = api.addSparePartApi(this.model)
            } else {
              obj = api.editSparePartApi(this.model)
            }
            obj.then((res) => {
              if (res.success) {
                that.$notification.success({
                  message: '消息',
                  description: res.message
                })
                that.$emit('ok')
              } else {
                that.$notification.warning({
                  message: '消息',
                  description: res.message
                })
              }
            }).finally(() => {
              that.confirmLoading = false
              this.visible = false
            })
          } else {
            return false
          }
        })
      },
 
      getProductionLineByApi() {
        api.getProductionLineApi()
          .then(res => {
            if (res.success) {
              console.log('res', res)
              this.productionList = res.result
              if (this.model.productionId) {
                if (!this.model.equipmentId) delete this.model.equipmentId
                this.getEquipmentListByProductionId()
              }
            }
          })
      },
 
      /**
       * 生产线选中后获取对应生产设备
       */
      handleProductionLineChange() {
        delete this.model.equipmentId
        this.getEquipmentListByProductionId()
      },
 
      handleSwitchChange(value) {
        console.log('value', value)
        if (value === 'Y') delete  this.model.equipmentId
      },
 
      getEquipmentListByProductionId() {
        api.getEquipmentListByProductionIdApi(this.model.productionId)
          .then(res => {
            console.log('res=-', res)
            this.equipmentList = res.result.records
          })
      },
 
      handleModalClose() {
        this.visible = false
        this.equipmentList = []
        this.removeValidate()
      },
 
      /**
       * 编辑或查看详情数据时清除抽屉表单验证
       */
      removeValidate() {
        if (this.$refs.form) this.$refs.form.clearValidate()
      }
    }
 
  }
</script>
 
<style scoped>
 
</style>