From 75869fbff43efbdaa8fae5468dfa2fe2cdde00e9 Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期三, 19 三月 2025 14:55:38 +0800
Subject: [PATCH] art:设备管理-基础数据-故障原因维护 功能添加

---
 src/views/eam/base/modules/EamEquipmentFaultReasonModal.vue |  127 +++++++++++++++++++++++++
 src/views/eam/base/EamEquipmentFaultReasonList.vue          |  172 ++++++++++++++++++++++++++++++++++
 2 files changed, 299 insertions(+), 0 deletions(-)

diff --git a/src/views/eam/base/EamEquipmentFaultReasonList.vue b/src/views/eam/base/EamEquipmentFaultReasonList.vue
new file mode 100644
index 0000000..7b8a444
--- /dev/null
+++ b/src/views/eam/base/EamEquipmentFaultReasonList.vue
@@ -0,0 +1,172 @@
+<template>
+  <a-card :bordered="false">
+
+    <!-- 鏌ヨ鍖哄煙 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="鏁呴殰缂栫爜">
+              <j-input placeholder="璇疯緭鍏ユ晠闅滅紪鐮�" v-model="queryParam.faultCode"></j-input>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="鏁呴殰绠�绉�">
+              <j-input placeholder="璇疯緭鍏ユ晠闅滅畝绉�" v-model="queryParam.faultName"></j-input>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="鏁呴殰鍒嗙被">
+              <j-dict-select-tag dict-code="fault_reason_category" placeholder="璇烽�夋嫨鏁呴殰鍒嗙被" v-model="queryParam.faultCategory"></j-dict-select-tag>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :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="info" @click="searchReset" icon="reload" style="margin-left: 8px">閲嶇疆</a-button>
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+
+    <!-- 鎿嶄綔鎸夐挳鍖哄煙 -->
+    <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-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>
+        <a-button style="margin-left: 8px"> 鎵归噺鎿嶄綔
+          <a-icon type="down" />
+        </a-button>
+      </a-dropdown>
+    </div>
+
+    <!-- table鍖哄煙-begin -->
+    <div>
+      <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>
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        class="j-table-force-nowrap"
+        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+        @change="handleTableChange">
+
+        <span slot="action" slot-scope="text, record">
+          <a @click="handleEdit(record)">缂栬緫</a>
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <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>鍒犻櫎</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+    <!-- table鍖哄煙-end -->
+
+    <!-- 琛ㄥ崟鍖哄煙 -->
+    <eamEquipmentFaultReason-modal ref="modalForm" @ok="modalFormOk"></eamEquipmentFaultReason-modal>
+  </a-card>
+</template>
+
+<script>
+import '@/assets/less/TableExpand.less'
+import EamEquipmentFaultReasonModal from './modules/EamEquipmentFaultReasonModal'
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+
+export default {
+  name: 'EamEquipmentFaultReasonList',
+  mixins: [JeecgListMixin],
+  components: {
+    EamEquipmentFaultReasonModal
+  },
+  data() {
+    return {
+      description: '璁惧鏁呴殰鍘熷洜缁存姢绠$悊椤甸潰',
+      // 琛ㄥご
+      columns: [
+        {
+          title: '#',
+          dataIndex: '',
+          key: 'rowIndex',
+          width: 60,
+          align: 'center',
+          customRender: function(t, r, index) {
+            return parseInt(index) + 1
+          }
+        },
+        {
+          title: '鏁呴殰缂栫爜',
+          align: 'center',
+          dataIndex: 'faultCode'
+        },
+        {
+          title: '鏁呴殰绠�绉�',
+          align: 'center',
+          dataIndex: 'faultName'
+        },
+        {
+          title: '鏁呴殰鎻忚堪',
+          align: 'center',
+          dataIndex: 'faultDescription'
+        },
+        {
+          title: '鏁呴殰鍒嗙被',
+          align: 'center',
+          dataIndex: 'faultCategory_dictText'
+        },
+        {
+          title: '鎿嶄綔',
+          dataIndex: 'action',
+          align: 'center',
+          scopedSlots: { customRender: 'action' }
+        }
+      ],
+      url: {
+        list: '/eam/equipmentFaultReason/list',
+        delete: '/eam/equipmentFaultReason/delete',
+        deleteBatch: '/eam/equipmentFaultReason/deleteBatch',
+        exportXlsUrl: 'eam/equipmentFaultReason/exportXls',
+        importExcelUrl: 'eam/equipmentFaultReason/importExcel'
+      }
+    }
+  },
+  computed: {
+    importExcelUrl: function() {
+      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
+    }
+  },
+  methods: {}
+}
+</script>
+<style scoped>
+@import '~@assets/less/common.less';
+</style>
\ No newline at end of file
diff --git a/src/views/eam/base/modules/EamEquipmentFaultReasonModal.vue b/src/views/eam/base/modules/EamEquipmentFaultReasonModal.vue
new file mode 100644
index 0000000..9d4a92c
--- /dev/null
+++ b/src/views/eam/base/modules/EamEquipmentFaultReasonModal.vue
@@ -0,0 +1,127 @@
+<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-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="faultCode" label="鏁呴殰缂栫爜">
+          <a-input placeholder="鍙傛暟缂栫爜鑷姩鐢熸垚" v-model="model.faultCode" disabled />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="faultName" label="鏁呴殰绠�绉�">
+          <a-input placeholder="璇疯緭鍏ユ晠闅滅畝绉�" v-model="model.faultName" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="faultCategory" label="鏁呴殰鍒嗙被">
+          <j-dict-select-tag dict-code="fault_reason_category" placeholder="璇烽�夋嫨鏁呴殰鍒嗙被"
+                             v-model="model.faultCategory"></j-dict-select-tag>
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="faultDescription" label="鏁呴殰鎻忚堪">
+          <a-textarea placeholder="璇疯緭鍏ユ晠闅滄弿杩�" v-model="model.faultDescription" />
+        </a-form-model-item>
+      </a-form-model>
+    </a-spin>
+  </j-modal>
+</template>
+
+<script>
+import { httpAction } from '@/api/manage'
+import moment from 'moment'
+
+export default {
+  name: 'EamEquipmentFaultReasonModal',
+  data() {
+    return {
+      title: '鎿嶄綔',
+      visible: false,
+      model: {},
+      labelCol: {
+        xs: { span: 24 },
+        sm: { span: 5 }
+      },
+      wrapperCol: {
+        xs: { span: 24 },
+        sm: { span: 16 }
+      },
+
+      confirmLoading: false,
+      validatorRules: {
+        faultName:[
+          { required: true, message: '璇疯緭鍏ユ晠闅滅畝绉�!' }
+        ],
+        faultCategory: [
+          { required: true, message: '璇烽�夋嫨鏁呴殰鍒嗙被!' }
+        ],
+        faultDescription: [
+          { required: true, message: '璇疯緭鍏ユ晠闅滄弿杩�!' }
+        ],
+      },
+      url: {
+        add: '/eam/equipmentFaultReason/add',
+        edit: '/eam/equipmentFaultReason/edit'
+      }
+    }
+  },
+  created() {
+  },
+  methods: {
+    add() {
+      //鍒濆鍖栭粯璁ゅ��
+      this.edit({})
+    },
+    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>
\ No newline at end of file

--
Gitblit v1.9.3