Blame view

ant-design-vue-jeecg/src/views/system/config/modules/MaterialUnitForm.vue 3.53 KB
1
2
3
4
5
6
7
<template>
  <a-spin :spinning="confirmLoading">
    <j-form-container :disabled="formDisabled">
      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
        <a-row>
          <a-col :span="24">
            <a-form-model-item label="物料编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="materialCode">
肖超群 authored
8
              <a-input v-model="model.materialCode" placeholder="请输入物料编码"></a-input>
9
10
11
12
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="物料名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="materialName">
肖超群 authored
13
              <a-input v-model="model.materialName" placeholder="请输入物料名称"></a-input>
14
15
16
17
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="规格" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="materialSpec">
肖超群 authored
18
              <a-input v-model="model.materialSpec" placeholder="请输入规格"></a-input>
19
20
21
22
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="单位" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="unit">
肖超群 authored
23
              <a-input v-model="model.unit" placeholder="请输入单位"></a-input>
24
25
26
27
28
29
30
31
32
33
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </j-form-container>
  </a-spin>
</template>

<script>
肖超群 authored
34
35
import {httpAction, getAction} from '@/api/manage'
import {validateDuplicateValue} from '@/utils/util'
36
import { translateResultMessage } from '@/api/api'
37
肖超群 authored
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
export default {
  name: 'MaterialUnitForm',
  components: {},
  props: {
    //表单禁用
    disabled: {
      type: Boolean,
      default: false,
      required: false
    }
  },
  data() {
    return {
      model: {},
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16},
      },
      confirmLoading: false,
      validatorRules: {
        materialCode: [
          {required: true, message: '请输入物料编码!'},
        ],
        unit: [
          {required: true, message: '请输入单位!'},
        ],
      },
      url: {
        add: "/config/materialUnit/add",
        edit: "/config/materialUnit/edit",
        queryById: "/config/materialUnit/queryById"
73
      }
肖超群 authored
74
75
76
77
78
    }
  },
  computed: {
    formDisabled() {
      return this.disabled
79
    },
肖超群 authored
80
81
82
83
84
85
86
87
  },
  created() {
    //备份model原始值
    this.modelDefault = JSON.parse(JSON.stringify(this.model));
  },
  methods: {
    add() {
      this.edit(this.modelDefault);
88
    },
肖超群 authored
89
90
91
    edit(record) {
      this.model = Object.assign({}, record);
      this.visible = true;
92
    },
肖超群 authored
93
94
95
96
97
98
99
100
101
102
103
104
105
106
    submitForm() {
      const that = this;
      // 触发表单验证
      this.$refs.form.validate(valid => {
        if (valid) {
          that.confirmLoading = true;
          let httpurl = '';
          let method = '';
          if (!this.model.id) {
            httpurl += this.url.add;
            method = 'post';
          } else {
            httpurl += this.url.edit;
            method = 'put';
107
          }
肖超群 authored
108
109
          httpAction(httpurl, this.model, method).then((res) => {
            if (res.success) {
110
              that.$message.success(translateResultMessage(res, res.message))
肖超群 authored
111
112
              that.$emit('ok');
            } else {
113
              that.$message.warning(translateResultMessage(res, res.message))
肖超群 authored
114
115
116
117
118
119
120
121
            }
          }).finally(() => {
            that.confirmLoading = false;
          })
        }

      })
    },
122
  }
肖超群 authored
123
}
124
</script>