|
@@ -1,260 +1,143 @@
|
|
|
<template>
|
|
|
<a-card :bordered="false">
|
|
|
- <div class="table-page-search-wrapper">
|
|
|
- <a-form layout="inline">
|
|
|
- <a-row :gutter="48">
|
|
|
- <a-col :md="8" :sm="24">
|
|
|
- <a-form-item label="关键字">
|
|
|
- <a-input v-model.trim="queryParam.keyword" placeholder="请输入名称/类型名称"/>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :md="8 || 24" :sm="24">
|
|
|
- <span class="table-page-search-submitButtons">
|
|
|
- <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
|
|
|
- <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
|
|
|
- </span>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-form>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="table-operator" style="margin-bottom: 8px;">
|
|
|
- <a-button v-if="$auth('repairmanage-error-type-add')" type="primary" icon="plus" @click="$refs.baseModal.base()">新增</a-button>
|
|
|
- <a-button style="margin-left: 8px" v-if="$auth('repairmanage-error-type-export')" type="primary" icon="download" @click="doExport">导出</a-button>
|
|
|
- <a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('repairmanage-error-type-del')">
|
|
|
- <a-menu slot="overlay">
|
|
|
- <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
|
- <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
|
|
|
- </a-popconfirm>
|
|
|
- </a-menu>
|
|
|
- <a-button style="margin-left: 8px">
|
|
|
- 批量操作 <a-icon type="down" />
|
|
|
- </a-button>
|
|
|
- </a-dropdown>
|
|
|
- </div>
|
|
|
-
|
|
|
- <s-table
|
|
|
- ref="table"
|
|
|
- size="default"
|
|
|
- rowKey="id"
|
|
|
- :columns="columns"
|
|
|
- :data="loadData"
|
|
|
- :alert="options.alert"
|
|
|
- :rowSelection="options.rowSelection"
|
|
|
- showPagination="auto"
|
|
|
- >
|
|
|
- <span slot="action" slot-scope="record">
|
|
|
- <template>
|
|
|
- <a @click="handleView(record)">查看</a>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a v-if="$auth('repairmanage-error-type-edit')" @click="handleEdit(record)">修改</a>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a-popconfirm v-if="$auth('repairmanage-error-type-del')" title="是否要删除该条数据?" @confirm="batchDelete(record.id)">
|
|
|
- <a>删除</a>
|
|
|
+ <a-row :gutter="8">
|
|
|
+ <a-col :span="5">
|
|
|
+ <div class="menu-button-group">
|
|
|
+ <a-button type="primary" @click="handleAdd">添加故障类别</a-button>
|
|
|
+ <a-popconfirm title="是否要删除所选故障类别?" @confirm="handleDelete()" v-show="deleteButtonShow">
|
|
|
+ <a-button type="primary" style="margin-left: 15px">删除</a-button>
|
|
|
</a-popconfirm>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a @click="handleCopy(record)">复制</a>
|
|
|
- </template>
|
|
|
- </span>
|
|
|
- <span slot="delFlag" slot-scope="text">
|
|
|
- <badge
|
|
|
- :status="DictCache.COLOR.DELFLAG[text]"
|
|
|
- :text="delFlagMap[text]" />
|
|
|
- </span>
|
|
|
- </s-table>
|
|
|
- <base-form ref="baseModal" @ok="handleOk"/>
|
|
|
- <detail ref="detailModal"/>
|
|
|
+ </div>
|
|
|
+ <a-tree
|
|
|
+ @expand="onExpand"
|
|
|
+ :expandedKeys="expandedKeys"
|
|
|
+ :autoExpandParent="autoExpandParent"
|
|
|
+ @select="onSelect"
|
|
|
+ @rightClick="rightClick"
|
|
|
+ :selectedKeys="selectedKeys"
|
|
|
+ :treeData="treeData"
|
|
|
+ />
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="19">
|
|
|
+ <a-card class="card" :title="title" :bordered="false">
|
|
|
+ <base-form
|
|
|
+ :detail="detail"
|
|
|
+ @ok="refresh">
|
|
|
+ </base-form>
|
|
|
+ </a-card>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
</a-card>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { STable, Ellipsis } from '@/components'
|
|
|
import BaseForm from './modules/BaseForm'
|
|
|
-import Detail from './modules/Detail'
|
|
|
-import { getErrorTypePage, deleteErrorTypes, fetchErrorType, exportErrorType } from '@/api/repair/errortype'
|
|
|
+import { fetchErrorTypeTree, fetchErrorType, deleteErrorType } from '@/api/repair/errortype'
|
|
|
|
|
|
export default {
|
|
|
- name: 'ErrorTypeList',
|
|
|
+ name: 'ErrorType',
|
|
|
components: {
|
|
|
- STable,
|
|
|
- Ellipsis,
|
|
|
- BaseForm,
|
|
|
- Detail
|
|
|
+ BaseForm
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
- // 查询参数
|
|
|
- queryParam: {
|
|
|
- },
|
|
|
- // 表头
|
|
|
- columns: [
|
|
|
- {
|
|
|
- title: '序号',
|
|
|
- dataIndex: 'index',
|
|
|
- customRender: (text, record, index) => {
|
|
|
- return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '故障代码',
|
|
|
- dataIndex: 'no'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '名称',
|
|
|
- dataIndex: 'name'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '类别',
|
|
|
- dataIndex: 'type',
|
|
|
- customRender: (text, record, index) => {
|
|
|
- return this.BaseTool.Object.getField(this.typeMap, text)
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '排序',
|
|
|
- dataIndex: 'sort'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '上层类别类别',
|
|
|
- dataIndex: 'parentId',
|
|
|
- customRender: (text, record, index) => {
|
|
|
- return record.parentName
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '备注',
|
|
|
- dataIndex: 'remark'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '是否删除',
|
|
|
- dataIndex: 'delFlag',
|
|
|
- scopedSlots: { customRender: 'delFlag' }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '操作',
|
|
|
- key: 'action',
|
|
|
- width: '200px',
|
|
|
- align: 'center',
|
|
|
- scopedSlots: { customRender: 'action' }
|
|
|
- }
|
|
|
- ],
|
|
|
- // 下拉框map
|
|
|
- typeMap: {},
|
|
|
- delFlagMap: {},
|
|
|
- // 加载数据方法 必须为 Promise 对象
|
|
|
- loadData: parameter => {
|
|
|
- parameter = {
|
|
|
- ...parameter,
|
|
|
- ...this.queryParam,
|
|
|
- dataScope: {
|
|
|
- }
|
|
|
- }
|
|
|
- return getErrorTypePage(Object.assign(parameter, this.queryParam))
|
|
|
- .then(res => {
|
|
|
- return res.data
|
|
|
- })
|
|
|
- },
|
|
|
- selectedRowKeys: [],
|
|
|
- selectedRows: [],
|
|
|
-
|
|
|
- options: {
|
|
|
- alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
|
|
|
- rowSelection: {
|
|
|
- selectedRowKeys: this.selectedRowKeys,
|
|
|
- onChange: this.onSelectChange
|
|
|
- }
|
|
|
- },
|
|
|
- optionAlertShow: false
|
|
|
+ openKeys: [''],
|
|
|
+ title: '添加故障类别',
|
|
|
+ selectedKeys: [],
|
|
|
+ treeData: [],
|
|
|
+ expandedKeys: [],
|
|
|
+ autoExpandParent: true,
|
|
|
+ deleteButtonShow: false,
|
|
|
+ importFlag: false,
|
|
|
+ rightSelectDept: {},
|
|
|
+ detail: {
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
- // 下拉框map
|
|
|
- this.typeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBTYPE_TYPE)
|
|
|
- this.delFlagMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.DELFLAG)
|
|
|
- this.tableOption()
|
|
|
+ this.importFlag = false
|
|
|
+ this.rightSelectDept = {}
|
|
|
+ this.initErrorTypeTree()
|
|
|
},
|
|
|
methods: {
|
|
|
- tableOption () {
|
|
|
- if (!this.optionAlertShow) {
|
|
|
- this.options = {
|
|
|
- alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
|
|
|
- rowSelection: {
|
|
|
- selectedRowKeys: this.selectedRowKeys,
|
|
|
- onChange: this.onSelectChange,
|
|
|
- getCheckboxProps: record => ({
|
|
|
- props: {
|
|
|
- disabled: false,
|
|
|
- name: record.id
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
+ initErrorTypeTree () {
|
|
|
+ const parameter = {
|
|
|
+ }
|
|
|
+ fetchErrorTypeTree(parameter).then(res => {
|
|
|
+ const treeData = res.data
|
|
|
+ this.setClass(treeData)
|
|
|
+ // 循环获取样式
|
|
|
+ this.treeData = treeData
|
|
|
+ })
|
|
|
+ },
|
|
|
+ setClass (treeData) {
|
|
|
+ treeData.forEach(item => {
|
|
|
+ if (this.BaseTool.Object.isNotBlank(item.clazz)) {
|
|
|
+ item['class'] = item.clazz
|
|
|
+ }
|
|
|
+ if (this.BaseTool.Object.isNotBlank(item.children) && item.children.length > 0) {
|
|
|
+ this.setClass(item.children)
|
|
|
}
|
|
|
- this.optionAlertShow = true
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onSelect (selectedKeys, info) {
|
|
|
+ this.importFlag = false
|
|
|
+ this.rightSelectDept = {}
|
|
|
+ this.title = '编辑故障类别'
|
|
|
+ this.selectedKeys = selectedKeys
|
|
|
+ if (selectedKeys.length > 0) {
|
|
|
+ fetchErrorType({ id: selectedKeys }).then(res => {
|
|
|
+ this.detail = res.data
|
|
|
+ this.deleteButtonShow = true
|
|
|
+ })
|
|
|
} else {
|
|
|
- this.options = {
|
|
|
- alert: false,
|
|
|
- rowSelection: null
|
|
|
+ this.detail = {
|
|
|
+ type: 2
|
|
|
}
|
|
|
- this.optionAlertShow = false
|
|
|
}
|
|
|
},
|
|
|
- batchDelete (id) {
|
|
|
- let ids = []
|
|
|
- if (this.BaseTool.String.isBlank(id)) {
|
|
|
- const length = this.selectedRows.length
|
|
|
- if (length === 0) {
|
|
|
- this.$message.info('请选择要删除的记录')
|
|
|
- return
|
|
|
- }
|
|
|
- ids = this.selectedRows.map(item => item.id)
|
|
|
+ onExpand (expandedKeys) {
|
|
|
+ this.expandedKeys = expandedKeys
|
|
|
+ this.autoExpandParent = false
|
|
|
+ },
|
|
|
+ handleAdd () {
|
|
|
+ this.title = '添加故障类别'
|
|
|
+ if (this.selectedKeys.length > 0) {
|
|
|
+ fetchErrorType({ id: this.selectedKeys[0] }).then(res => {
|
|
|
+ this.detail = {
|
|
|
+ type: 2,
|
|
|
+ parentId: res.data.id,
|
|
|
+ parentName: res.data.name,
|
|
|
+ remark: res.data.no
|
|
|
+ }
|
|
|
+ })
|
|
|
} else {
|
|
|
- ids = [id]
|
|
|
+ this.detail = {
|
|
|
+ type: 2
|
|
|
+ }
|
|
|
}
|
|
|
- deleteErrorTypes(ids).then(res => {
|
|
|
- this.$message.info('删除成功')
|
|
|
- this.handleOk()
|
|
|
- this.$refs.table.clearSelected()
|
|
|
- })
|
|
|
- },
|
|
|
- handleEdit (record) {
|
|
|
- fetchErrorType({ id: record.id }).then(res => {
|
|
|
- const modal = this.$refs.baseModal
|
|
|
- modal.base(res.data)
|
|
|
- })
|
|
|
},
|
|
|
- handleView (record) {
|
|
|
- fetchErrorType({ id: record.id }).then(res => {
|
|
|
- const modal = this.$refs.detailModal
|
|
|
- modal.base(res.data)
|
|
|
+ handleDelete () {
|
|
|
+ deleteErrorType({ id: this.selectedKeys[0] }).then(res => {
|
|
|
+ this.$message.info(`提示:删除成功 `)
|
|
|
+ this.refresh()
|
|
|
})
|
|
|
},
|
|
|
- handleOk () {
|
|
|
- this.$refs.table.refresh()
|
|
|
+ rightClick (info) {
|
|
|
+ this.importFlag = true
|
|
|
+ this.rightSelectDept = info.node.dataRef.item
|
|
|
},
|
|
|
- onSelectChange (selectedRowKeys, selectedRows) {
|
|
|
- this.selectedRowKeys = selectedRowKeys
|
|
|
- this.selectedRows = selectedRows
|
|
|
- },
|
|
|
- resetSearchForm () {
|
|
|
- this.queryParam = {
|
|
|
- }
|
|
|
- this.$refs.table.refresh(true)
|
|
|
- },
|
|
|
- doExport () {
|
|
|
- const parameter = {
|
|
|
- ...this.queryParam
|
|
|
+ refresh () {
|
|
|
+ this.initErrorTypeTree()
|
|
|
+ this.detail = {
|
|
|
+ type: 2
|
|
|
}
|
|
|
- exportErrorType(parameter).then(file => {
|
|
|
- this.BaseTool.UPLOAD.downLoadExportExcel(file)
|
|
|
- })
|
|
|
- },
|
|
|
- handleCopy (record) {
|
|
|
- fetchErrorType({ id: record.id }).then(res => {
|
|
|
- const modal = this.$refs.baseModal
|
|
|
- res.data.id = null
|
|
|
- modal.base(res.data)
|
|
|
- })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style>
|
|
|
+.tree-title-close-dept-future .ant-tree-title {
|
|
|
+ color: #c5baba;
|
|
|
+}
|
|
|
+</style>
|