lyh
2025-03-19 bab64d0b2147a3e619e53d7417e40b5bd45fcfdb
src/views/dnc/base/modules/ProductStructure/Process/ProcessModalForm.vue
@@ -15,14 +15,6 @@
      </a-row>
      <a-row>
        <a-col :span="24">
          <a-form-model-item label="加工设备编号" :labelCol="labelColLong" :wrapperCol="wrapperColLong">
            <j-dict-select-tag v-model="model.processingEquipmentCode" placeholder="请选择加工设备编号" dictCode="mdc_equipment,equipment_id,equipment_id"/>
          </a-form-model-item>
        </a-col>
      </a-row>
      <a-row>
        <a-col :span="12">
          <a-form-model-item label="加工设备型号">
            <a-input v-model="model.processingEquipmentModel" placeholder="请输入加工设备型号"></a-input>
@@ -83,11 +75,6 @@
  export default {
    name: 'ProcessModalForm',
    components: {},
    props: {
      allDeviceList: {
        type: Array
      }
    },
    data() {
      return {
        model: {
@@ -127,7 +114,6 @@
    created() {
      //备份model原始值
      this.modelDefault = JSON.parse(JSON.stringify(this.model))
      this.$bus.$on('sendAllDeviceList', deviceList => this.deviceList = deviceList)
    },
    methods: {
      add(params) {