qushaowei
2025-05-20 8e6e8e57808ebf96eb6c2d51583ef33891c05c94
备件管理 界面修改
已添加2个文件
已修改1个文件
已删除3个文件
1432 ■■■■ 文件已修改
src/views/eam/spare/EamSparePartInventoryList.vue 200 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/EamSparePartsList.vue 384 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/modules/EamSparePartInventoryModal.vue 129 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/modules/EamSpareParts/EamSparePartInventoryList.vue 194 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/modules/EamSpareParts/EamSparePartsModal.vue 324 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/modules/EamSparePartsModal.vue 201 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/spare/EamSparePartInventoryList.vue
ÎļþÒÑɾ³ý
src/views/eam/spare/EamSparePartsList.vue
@@ -2,32 +2,88 @@
  <a-card :bordered="false">
    <!-- æŸ¥è¯¢åŒºåŸŸ -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
      <a-form
        layout="inline"
        @keyup.enter.native="searchQuery"
      >
        <a-row :gutter="24">
          <a-col :xl="4" :lg="7" :md="8" :sm="24">
            <a-form-item label="备件编码">
              <j-input placeholder="请输入备件编码" v-model="queryParam.partCode"></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl="4" :lg="7" :md="8" :sm="24">
            <a-form-item label="备件名称">
              <j-input placeholder="请输入备件名称" v-model="queryParam.partName"></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl="4" :lg="7" :md="8" :sm="24">
          <a-col
            :xl="4"
            :lg="7"
            :md="8"
            :sm="24"
          >
            <a-form-item label="备件分类">
              <j-input placeholder="请输入备件分类" v-model="queryParam.partCategory"></j-input>
              <j-dict-select-tag
                allow-clear
                :disabled="false"
                placeholder="请选择备件分类"
                :triggerChange="true"
                dictCode="spare_part_category"
                v-model="queryParam.partCategory"
              />
            </a-form-item>
          </a-col>
          <a-col :xl="4" :lg="7" :md="8" :sm="24">
          <a-col
            :xl="4"
            :lg="7"
            :md="8"
            :sm="24"
          >
            <a-form-item label="备件编码">
              <j-input
                placeholder="请输入备件编码"
                v-model="queryParam.partCode"
              ></j-input>
            </a-form-item>
          </a-col>
          <a-col
            :xl="4"
            :lg="7"
            :md="8"
            :sm="24"
          >
            <a-form-item label="备件名称">
              <j-input
                placeholder="请输入备件名称"
                v-model="queryParam.partName"
              ></j-input>
            </a-form-item>
          </a-col>
          <a-col
            :xl="4"
            :lg="7"
            :md="8"
            :sm="24"
          >
            <a-form-item label="备件型号">
              <j-input placeholder="请输入备件型号" v-model="queryParam.partModel"></j-input>
              <j-input
                placeholder="请输入备件型号"
                v-model="queryParam.partModel"
              ></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl="4" :lg="7" :md="8" :sm="24">
            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
          <a-col
            :xl="4"
            :lg="7"
            :md="8"
            :sm="24"
          >
            <span
              style="float: left;overflow: hidden;"
              class="table-page-search-submitButtons"
            >
              <a-button
                type="primary"
                @click="searchQuery"
                icon="search"
              >查询</a-button>
              <a-button
                type="primary"
                @click="searchReset"
                icon="reload"
                style="margin-left: 8px"
              >重置</a-button>
            </span>
          </a-col>
@@ -37,24 +93,51 @@
    <!-- æ“ä½œæŒ‰é’®åŒºåŸŸ -->
    <div class="table-operator">
      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
      <a-button type="primary" icon="download" @click="handleExportXls('备品备件管理')">导出</a-button>
      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
        <a-button type="primary" icon="import">导入</a-button>
      <a-button
        @click="handleAdd"
        type="primary"
        icon="plus"
      >新增</a-button>
      <!-- <a-button
        type="primary"
        icon="download"
        @click="handleExportXls('备品备件管理')"
      >导出</a-button>
      <a-upload
        name="file"
        :showUploadList="false"
        :multiple="false"
        :headers="tokenHeader"
        :action="importExcelUrl"
        @change="handleImportExcel"
      >
        <a-button
          type="primary"
          icon="import"
        >导入</a-button>
      </a-upload>
      <a-dropdown v-if="selectedRowKeys.length > 0">
        <a-menu slot="overlay">
          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
          <a-menu-item
            key="1"
            @click="batchDel"
          ><a-icon type="delete" />删除</a-menu-item>
        </a-menu>
        <a-button style="margin-left: 8px"> æ‰¹é‡æ“ä½œ <a-icon type="down" /></a-button>
      </a-dropdown>
      </a-dropdown> -->
    </div>
    <!-- table区域-begin -->
    <div>
      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
      <div
        class="ant-alert ant-alert-info"
        style="margin-bottom: 16px;"
      >
        <i class="anticon anticon-info-circle ant-alert-icon"></i> å·²é€‰æ‹© <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
        <a
          style="margin-left: 24px"
          @click="onClearSelected"
        >清空</a>
      </div>
      <a-table
@@ -67,10 +150,15 @@
        :pagination="ipagination"
        :loading="loading"
        class="j-table-force-nowrap"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
        @change="handleTableChange">
        :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
        :customRow='clickThenSelect'
        @change="handleTableChange"
      >
        <span slot="action" slot-scope="text, record">
        <span
          slot="action"
          slot-scope="text, record"
        >
          <a @click="handleEdit(record)">编辑</a>
          <a-divider type="vertical" />
@@ -78,7 +166,10 @@
            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
            <a-menu slot="overlay">
              <a-menu-item>
                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
                <a-popconfirm
                  title="确定删除吗?"
                  @confirm="() => handleDelete(record.id)"
                >
                  <a>删除</a>
                </a-popconfirm>
              </a-menu-item>
@@ -87,116 +178,161 @@
        </span>
      </a-table>
      <a-tabs defaultActiveKey="1">
        <a-tab-pane
          tab='库存明细'
          key="1"
        >
          <div
            class="table-operator"
            style="margin:-16px"
          >
            <eamSpare-part-inventory-list :sparePartId='sparePartId' />
          </div>
        </a-tab-pane>
      </a-tabs>
    </div>
    <!-- table区域-end -->
    <!-- è¡¨å•区域 -->
    <eamSpareParts-modal ref="modalForm" @ok="modalFormOk"></eamSpareParts-modal>
    <eamSpareParts-modal
      ref="modalForm"
      @ok="modalFormOk"
    ></eamSpareParts-modal>
  </a-card>
</template>
<script>
import '@assets/less/TableExpand.less'
import EamSparePartsModal from './modules/EamSparePartsModal.vue'
import EamSparePartsModal from './modules/EamSpareParts/EamSparePartsModal.vue'
import EamSparePartInventoryList from './modules/EamSpareParts/EamSparePartInventoryList.vue'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  export default {
    name: "EamSparePartsList",
    mixins:[JeecgListMixin],
    components: {
      EamSparePartsModal
    },
    data () {
      return {
        description: '备品备件管理管理页面',
        // è¡¨å¤´
        columns: [
              {
            title: '备件编码',
            align:"center",
            dataIndex: 'partCode'
          },
          {
            title: '备件名称',
            align:"center",
            dataIndex: 'partName'
          },
          {
            title: '分类',
            align:"center",
            dataIndex: 'partCategory'
          },
          {
            title: '型号',
            align:"center",
            dataIndex: 'partModel'
          },
          {
            title: '规格',
            align:"center",
            dataIndex: 'partSpecification'
          },
          {
            title: '存放仓库',
            align:"center",
            dataIndex: 'storehouse'
          },
          {
            title: '制造商',
            align:"center",
            dataIndex: 'manufacturingEnterprise'
          },
          {
            title: '单位',
            align:"center",
            dataIndex: 'unit'
          },
          {
            title: '有效期(天)',
            align:"center",
            dataIndex: 'periodOfValidity'
          },
              {
            title: '库存上限值',
            align:"center",
            dataIndex: 'inventoryMax'
          },
              {
            title: '库存下限值',
            align:"center",
            dataIndex: 'inventoryMin'
          },
              {
            title: '库存预警值',
            align:"center",
            dataIndex: 'inventoryWarning'
          },
          {
            title: '操作',
            dataIndex: 'action',
            align:"center",
            scopedSlots: { customRender: 'action' },
          }
        ],
        url: {
          list: "/eam/eamSpareParts/list",
          delete: "/eam/eamSpareParts/delete",
          deleteBatch: "/eam/eamSpareParts/deleteBatch",
          exportXlsUrl: "eam/eamSpareParts/exportXls",
          importExcelUrl: "eam/eamSpareParts/importExcel",
       },
export default {
  name: "EamSparePartsList",
  mixins: [JeecgListMixin],
  components: {
    EamSparePartsModal,
    EamSparePartInventoryList
  },
  data() {
    return {
      description: '备品备件管理页面',
      sparePartId: '-1',
      // è¡¨å¤´
      columns: [
        {
          title: '备件编码',
          align: "center",
          dataIndex: 'partCode'
        },
        {
          title: '分类',
          align: "center",
          dataIndex: 'partCategory_dictText'
        },
        {
          title: '备件名称',
          align: "center",
          dataIndex: 'partName'
        },
        {
          title: '型号',
          align: "center",
          dataIndex: 'partModel'
        },
        {
          title: '规格',
          align: "center",
          dataIndex: 'partSpecification'
        },
        {
          title: '存放仓库',
          align: "center",
          dataIndex: 'storehouse'
        },
        {
          title: '制造商',
          align: "center",
          dataIndex: 'manufacturingEnterprise'
        },
        {
          title: '单位',
          align: "center",
          dataIndex: 'unit'
        },
        {
          title: '有效期(天)',
          align: "center",
          dataIndex: 'periodOfValidity'
        },
        {
          title: '库存上限值',
          align: "center",
          dataIndex: 'inventoryMax'
        },
        {
          title: '库存下限值',
          align: "center",
          dataIndex: 'inventoryMin'
        },
        {
          title: '库存预警值',
          align: "center",
          dataIndex: 'inventoryWarning'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: "center",
          scopedSlots: { customRender: 'action' },
        }
      ],
      url: {
        list: "/eam/eamSpareParts/list",
        delete: "/eam/eamSpareParts/delete",
        deleteBatch: "/eam/eamSpareParts/deleteBatch",
        exportXlsUrl: "eam/eamSpareParts/exportXls",
        importExcelUrl: "eam/eamSpareParts/importExcel",
      },
    }
  },
  computed: {
    importExcelUrl: function(){
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
    }
  },
    methods: {
    }
  methods: {
    searchReset() {
      this.queryParam = {}
      this.onClearSelected()
      this.loadData(1);
    },
    clickThenSelect(record) {
      return {
        on: {
          click: () => {
            this.onSelectChange(record.id.split(','), [record])
          }
        }
      }
    },
    onClearSelected() {
      this.selectedRowKeys = []
      this.selectionRows = []
      this.sparePartId = '-1'
    },
    onSelectChange(selectedRowKeys, selectionRows) {
      if (selectedRowKeys.length == 1) {
        this.sparePartId = selectionRows[0]['id']
      } else {
        this.sparePartId = '-1'
      }
      this.selectedRowKeys = selectedRowKeys
      this.selectionRows = selectionRows
    },
  }
}
</script>
<style scoped>
  @import '~@assets/less/common.less';
@import '~@assets/less/common.less';
</style>
src/views/eam/spare/modules/EamSparePartInventoryModal.vue
ÎļþÒÑɾ³ý
src/views/eam/spare/modules/EamSpareParts/EamSparePartInventoryList.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,194 @@
<template>
  <a-card
    :bordered="false"
    :class="'cust-erp-sub-tab'"
  >
    <!-- æŸ¥è¯¢åŒºåŸŸ -->
    <div class="table-page-search-wrapper">
      <a-form
        layout="inline"
        @keyup.enter.native="searchQuery"
      >
        <a-row :gutter="24">
        </a-row>
      </a-form>
    </div>
    <div>
      <a-table
        ref="table"
        size="middle"
        bordered
        rowKey="id"
        :scroll="{x:true}"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        @change="handleTableChange"
      >
      </a-table>
    </div>
  </a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getAction } from '@/api/manage'
import Tooltip from 'ant-design-vue/es/tooltip'
import { ACCESS_TOKEN } from '@/store/mutation-types'
import Vue from 'vue'
import { getFileAccessHttpUrl } from '@/api/manage';
export default {
  name: "EamSparePartInventoryList",
  mixins: [JeecgListMixin],
  components: {
    Tooltip,
  },
  props: {
    sparePartId: {
      type: String,
      default: '-1',
      required: false
    }
  },
  watch: {
    sparePartId: {
      immediate: true,
      handler(val) {
        if (!this.sparePartId) {
          this.clearList()
        } else {
          this.queryParam['sparePartId'] = val;
          this.loadData(1);
        }
      }
    }
  },
  data() {
    return {
      // è¡¨å¤´
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
          align: "center",
          customRender: function (t, r, index) {
            return parseInt(index) + 1;
          }
        },
        // {
        //   title: '备品备件ID',
        //   align: "center",
        //   dataIndex: 'sparePartId'
        // },
        {
          title: '批次号',
          align: "center",
          dataIndex: 'batchNum'
        },
        {
          title: '库存数量',
          align: "center",
          dataIndex: 'inventory'
        },
        {
          title: '出厂日期(生产日期)',
          align: "center",
          dataIndex: 'manufactureDate'
        },
        {
          title: '供应商',
          align: "center",
          dataIndex: 'supplier'
        },
        {
          title: '截止有效期',
          align: "center",
          dataIndex: 'expirationOfValidity'
        },
        {
          title: '存放位置',
          align: "center",
          dataIndex: 'location'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: "center",
          scopedSlots: { customRender: 'action' },
        }
      ],
      url: {
        list: "/eam/eamSparePartInventory/list",
        delete: "/eam/eamSparePartInventory/delete",
        deleteBatch: "/eam/eamSparePartInventory/deleteBatch",
        exportXlsUrl: "eam/eamSparePartInventory/exportXls",
        importExcelUrl: "eam/eamSparePartInventory/importExcel",
      },
      /* åˆ†é¡µå‚æ•° */
      ipagination: {
        current: 1,
        pageSize: 20,
        pageSizeOptions: ['5', '10', '20', '50'],
        showTotal: (total, range) => {
          return range[0] + '-' + range[1] + ' å…±' + total + '条'
        },
        showQuickJumper: true,
        showSizeChanger: true,
        total: 0
      },
    }
  },
  created() {
  },
  computed: {
  },
  methods: {
    clearList() {
      this.dataSource = []
      this.selectedRowKeys = []
      this.ipagination.current = 1
    },
    loadData(arg) {
      if (!this.url.list) {
        this.$message.error("请设置url.list属性!")
        return
      }
      //加载数据 è‹¥ä¼ å…¥å‚æ•°1则加载第一页的内容
      if (arg === 1) {
        this.ipagination.current = 1;
      }
      var params = this.getQueryParams();//查询条件
      this.loading = true;
      // this.originTargetKeys = [];
      getAction(this.url.list, params).then((res) => {
        if (res.success) {
          // for (let i = 0; i < res.result.records.length; i++) {
          //   let r = res.result.records[i].upload;
          //   r.src = this.getSrc(res.result.records[i].upload);
          // }
          this.dataSource = res.result.records || res.result;
          if (res.result.total) {
            this.ipagination.total = res.result.total;
          } else {
            this.ipagination.total = 0;
          }
          //update-end---author:zhangyafei    Date:20201118  for:适配不分页的数据列表------------
        } else {
          this.$message.warning(res.message)
        }
      }).finally(() => {
        this.loading = false
      })
    },
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>
src/views/eam/spare/modules/EamSpareParts/EamSparePartsModal.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,324 @@
<template>
  <j-modal
    :title="title"
    :width="800"
    :visible="visible"
    :confirmLoading="confirmLoading"
    switchFullscreen
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭"
  >
    <a-spin :spinning="confirmLoading">
      <a-form-model
        ref="form"
        :model="model"
        :rules="validatorRules"
      >
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="partCode"
              label="备件编码"
            >
              <a-input
                placeholder="备件编码自动生成"
                v-model="model.partCode"
                :disabled="true"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="partCategory"
              label="备件分类"
            >
              <!-- <a-input
                placeholder="请输入备件分类"
                v-model="model.partCategory"
              /> -->
              <j-dict-select-tag
                allow-clear
                :disabled="false"
                placeholder="请选择备件分类"
                :triggerChange="true"
                dictCode="spare_part_category"
                v-model="model.partCategory"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="partName"
              label="备件名称"
            >
              <a-input
                placeholder="请输入备件名称"
                v-model="model.partName"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="partModel"
              label="备件型号"
            >
              <a-input
                placeholder="请输入备件型号"
                v-model="model.partModel"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="partSpecification"
              label="备件规格"
            >
              <a-input
                placeholder="请输入备件规格"
                v-model="model.partSpecification"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="storehouse"
              label="存放仓库"
            >
              <a-input
                placeholder="请输入存放仓库"
                v-model="model.storehouse"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="unit"
              label="计量单位"
            >
              <a-input
                placeholder="请输入计量单位"
                v-model="model.unit"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="manufacturingEnterprise"
              label="制造企业"
            >
              <a-input
                placeholder="请输入制造企业"
                v-model="model.manufacturingEnterprise"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="periodOfValidity"
              label="有效期(天)"
            >
              <a-input-number
                style="width: 100%"
                :min="0"
                :precision="0"
                v-model="model.periodOfValidity"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="inventoryWarning"
              label="库存预警值"
            >
              <a-input-number
                style="width: 100%"
                :min="0"
                v-model="model.inventoryWarning"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="inventoryMax"
              label="最大备货库存"
            >
              <a-input-number
                style="width: 100%"
                :min="0"
                v-model="model.inventoryMax"
              />
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item
              :labelCol="labelCol"
              :wrapperCol="wrapperCol"
              prop="inventoryMin"
              label="最小备货库存"
            >
              <a-input-number
                style="width: 100%"
                :min="0"
                v-model="model.inventoryMin"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row :gutter="24">
          <a-col :span="24">
            <a-form-model-item
              :labelCol="{xs: { span: 24 }, sm: { span: 3 }}"
              :wrapperCol="{xs: { span: 24 },sm: { span: 21 }}"
              prop="remark"
              label="备注"
            >
              <a-textarea
                placeholder="请输入备注"
                v-model="model.remark"
              />
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </a-spin>
  </j-modal>
</template>
<script>
import { getAction, httpAction } from '@api/manage'
import moment from "moment"
export default {
  name: "EamSparePartsModal",
  data() {
    return {
      title: "操作",
      visible: false,
      model: {},
      labelCol: {
        xs: { span: 24 },
        sm: { span: 6 }
      },
      wrapperCol: {
        xs: { span: 24 },
        sm: { span: 18 }
      },
      confirmLoading: false,
      validatorRules: {
        partName: [
          { required: true, message: '请输入备件名称' }
        ]
      },
      url: {
        add: "/eam/eamSpareParts/add",
        edit: "/eam/eamSpareParts/edit",
        generateRequisitionCode: "sys/sysBusinessCodeRule/generateBusinessCodeSeq"
      },
    }
  },
  created() {
  },
  methods: {
    add() {
      const that = this
      let params = {
        businessCode: "SparePartCodeRule"
      }
      getAction(that.url.generateRequisitionCode, params).then((res) => {
        if (res.success) {
          this.model = {
            partCode: res.result
          }
        } else {
          that.$message.warning(res.message);
        }
      })
      //初始化默认值
      that.edit(this.model);
    },
    edit(record) {
      this.model = Object.assign({}, record);
      this.visible = true;
    },
    close() {
      this.$emit('close');
      this.visible = false;
      this.$refs.form.clearValidate();
    },
    handleOk() {
      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';
          }
          httpAction(httpurl, this.model, method).then((res) => {
            if (res.success) {
              that.$message.success(res.message);
              that.$emit('ok');
            } else {
              that.$message.warning(res.message);
            }
          }).finally(() => {
            that.confirmLoading = false;
            that.close();
          })
        } else {
          return false;
        }
      })
    },
    handleCancel() {
      this.close()
    }
  }
}
</script>
<style lang="less" scoped>
</style>
src/views/eam/spare/modules/EamSparePartsModal.vue
ÎļþÒÑɾ³ý