| | |
| | | <template> |
| | | <a-card :bordered="false"> |
| | | <a-card :bordered='false'> |
| | | |
| | | <!-- 查询区域 --> |
| | | <div class="table-page-search-wrapper"> |
| | | <a-form layout="inline" @keyup.enter.native="searchQuery"> |
| | | <a-row :gutter="24"> |
| | | <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="删除标记"> |
| | | <a-input placeholder="请输入删除标记" v-model="queryParam.delFlag"></a-input> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <a-form-item label='设备编号'> |
| | | <lx-search-equipment-select v-model='queryParam.equipmentId' |
| | | placeholder='请输入设备编号或名称搜索'></lx-search-equipment-select> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :xl="6" :lg="7" :md="8" :sm="24"> |
| | | <a-form-item label="单据号"> |
| | | <a-input placeholder="请输入单据号" v-model="queryParam.code"></a-input> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <a-form-item label='单据号'> |
| | | <a-input v-model='queryParam.code' placeholder='请输入单据号'></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <template v-if="toggleSearchStatus"> |
| | | <a-col :xl="6" :lg="7" :md="8" :sm="24"> |
| | | <a-form-item label="设备ID"> |
| | | <a-input placeholder="请输入设备ID" v-model="queryParam.equipmentId"></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :xl="6" :lg="7" :md="8" :sm="24"> |
| | | <a-form-item label="转让/报废"> |
| | | <a-input placeholder="请输入转让/报废" v-model="queryParam.scrapType"></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :xl="6" :lg="7" :md="8" :sm="24"> |
| | | <a-form-item label="申请人"> |
| | | <a-input placeholder="请输入申请人" v-model="queryParam.reportUser"></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <template v-if='toggleSearchStatus'> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <a-form-item label='设备ID'> |
| | | <a-input v-model='queryParam.equipmentId' placeholder='请输入设备ID'></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <a-form-item label='转让/报废'> |
| | | <a-input v-model='queryParam.scrapType' placeholder='请输入转让/报废'></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <a-form-item label='申请人'> |
| | | <a-input v-model='queryParam.reportUser' placeholder='请输入申请人'></a-input> |
| | | </a-form-item> |
| | | </a-col> |
| | | </template> |
| | | <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="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
| | | <a @click="handleToggleSearch" style="margin-left: 8px"> |
| | | {{ toggleSearchStatus ? '收起' : '展开' }} |
| | | <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> |
| | | </a> |
| | | <a-col :lg='7' :md='8' :sm='24' :xl='6'> |
| | | <span class='table-page-search-submitButtons' style='float: left;overflow: hidden;'> |
| | | <a-button icon='search' type='primary' @click='searchQuery'>查询</a-button> |
| | | <a-button icon='reload' style='margin-left: 8px' type='primary' @click='searchReset'>重置</a-button> |
| | | <!-- <a @click="handleToggleSearch" style="margin-left: 8px">--> |
| | | <!-- {{ toggleSearchStatus ? '收起' : '展开' }}--> |
| | | <!-- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>--> |
| | | <!-- </a>--> |
| | | </span> |
| | | </a-col> |
| | | |
| | |
| | | </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> |
| | | <div class='table-operator'> |
| | | <a-button icon='plus' type='primary' @click='handleAdd'>新增</a-button> |
| | | <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-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 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" |
| | | ref='table' |
| | | :columns='columns' |
| | | :dataSource='dataSource' |
| | | :loading='loading' |
| | | :pagination='ipagination' |
| | | :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}' |
| | | bordered |
| | | rowKey="id" |
| | | :columns="columns" |
| | | :dataSource="dataSource" |
| | | :pagination="ipagination" |
| | | :loading="loading" |
| | | class="j-table-force-nowrap" |
| | | :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
| | | @change="handleTableChange"> |
| | | class='j-table-force-nowrap' |
| | | rowKey='id' |
| | | size='middle' |
| | | @change='handleTableChange'> |
| | | |
| | | <span slot="action" slot-scope="text, record"> |
| | | <a @click="handleEdit(record)">编辑</a> |
| | | <span slot='action' slot-scope='text, record'> |
| | | <template v-if="record.scrapStatus === 'WAIT_SUBMIT'"> |
| | | <a-popconfirm title='确定提交吗?' @confirm='() => handleSubmit(record.id)'> |
| | | <a>提交</a> |
| | | </a-popconfirm> |
| | | <a-divider type='vertical' /> |
| | | |
| | | <a-divider type="vertical" /> |
| | | <a-dropdown> |
| | | <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> |
| | | <a-menu slot="overlay"> |
| | | <a class='ant-dropdown-link'>更多 <a-icon type='down' /></a> |
| | | <a-menu slot='overlay'> |
| | | <a-menu-item> |
| | | <a @click='handleEdit(record)'>编辑</a> |
| | | </a-menu-item> |
| | | <a-menu-item> |
| | | <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
| | | <a-popconfirm title='确定删除吗?' @confirm='() => handleDelete(record.id)'> |
| | | <a>删除</a> |
| | | </a-popconfirm> |
| | | </a-menu-item> |
| | | </a-menu> |
| | | </a-dropdown> |
| | | </template> |
| | | <template v-else> |
| | | <a href='javascript:;' @click='handleDetail(record)'>详情</a> |
| | | </template> |
| | | </span> |
| | | |
| | | </a-table> |
| | |
| | | <!-- table区域-end --> |
| | | |
| | | <!-- 表单区域 --> |
| | | <eamEquipmentScrap-modal ref="modalForm" @ok="modalFormOk"></eamEquipmentScrap-modal> |
| | | <eamEquipmentScrap-modal ref='modalForm' @ok='modalFormOk'></eamEquipmentScrap-modal> |
| | | </a-card> |
| | | </template> |
| | | |
| | | <script> |
| | | import '@/assets/less/TableExpand.less' |
| | | import EamEquipmentScrapModal from './modules/EamEquipmentScrapModal' |
| | | import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
| | | import '@/assets/less/TableExpand.less' |
| | | import EamEquipmentScrapModal from './modules/EamEquipmentScrapModal' |
| | | import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
| | | import LxSearchEquipmentSelect from '@views/eam/equipment/modules/LxSearchEquipmentSelect.vue' |
| | | import { getAction } from '@api/manage' |
| | | |
| | | export default { |
| | | name: "EamEquipmentScrapList", |
| | | mixins:[JeecgListMixin], |
| | | components: { |
| | | EamEquipmentScrapModal |
| | | }, |
| | | 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: 'delFlag' |
| | | }, |
| | | { |
| | | title: '单据号', |
| | | align:"center", |
| | | dataIndex: 'code' |
| | | }, |
| | | { |
| | | title: '设备ID', |
| | | align:"center", |
| | | dataIndex: 'equipmentId' |
| | | }, |
| | | { |
| | | title: '转让/报废', |
| | | align:"center", |
| | | dataIndex: 'scrapType' |
| | | }, |
| | | { |
| | | title: '申请人', |
| | | align:"center", |
| | | dataIndex: 'reportUser' |
| | | }, |
| | | { |
| | | title: '处置时间', |
| | | align:"center", |
| | | dataIndex: 'scrapTime' |
| | | }, |
| | | { |
| | | title: '处置理由', |
| | | align:"center", |
| | | dataIndex: 'scrapReason' |
| | | }, |
| | | { |
| | | title: '处置金额', |
| | | align:"center", |
| | | dataIndex: 'scrapAmount' |
| | | }, |
| | | { |
| | | title: '审核人', |
| | | align:"center", |
| | | dataIndex: 'approvalUser' |
| | | }, |
| | | { |
| | | title: '审核意见', |
| | | align:"center", |
| | | dataIndex: 'approvalComment' |
| | | }, |
| | | { |
| | | title: '审核时间', |
| | | align:"center", |
| | | dataIndex: 'approvalTime' |
| | | }, |
| | | { |
| | | title: '备注', |
| | | align:"center", |
| | | dataIndex: 'remark' |
| | | }, |
| | | { |
| | | title: '操作', |
| | | dataIndex: 'action', |
| | | align:"center", |
| | | scopedSlots: { customRender: 'action' }, |
| | | |
| | | export default { |
| | | name: 'EamEquipmentScrapList', |
| | | mixins: [JeecgListMixin], |
| | | components: { |
| | | EamEquipmentScrapModal, |
| | | LxSearchEquipmentSelect |
| | | }, |
| | | data() { |
| | | return { |
| | | description: '设备报废(转让)管理页面', |
| | | // 表头 |
| | | columns: [ |
| | | { |
| | | title: '#', |
| | | dataIndex: '', |
| | | key: 'rowIndex', |
| | | width: 60, |
| | | align: 'center', |
| | | customRender: function(t, r, index) { |
| | | return parseInt(index) + 1 |
| | | } |
| | | ], |
| | | url: { |
| | | list: "/eam/eamEquipmentScrap/list", |
| | | delete: "/eam/eamEquipmentScrap/delete", |
| | | deleteBatch: "/eam/eamEquipmentScrap/deleteBatch", |
| | | exportXlsUrl: "eam/eamEquipmentScrap/exportXls", |
| | | importExcelUrl: "eam/eamEquipmentScrap/importExcel", |
| | | }, |
| | | }, |
| | | { |
| | | title: '单据号', |
| | | align: 'center', |
| | | dataIndex: 'code' |
| | | }, |
| | | { |
| | | title: '设备编号', |
| | | align: 'center', |
| | | dataIndex: 'equipmentCode' |
| | | }, |
| | | { |
| | | title: '设备名称', |
| | | align: 'center', |
| | | dataIndex: 'equipmentName' |
| | | }, |
| | | { |
| | | title: '转让/报废', |
| | | align: 'center', |
| | | dataIndex: 'scrapType_dictText' |
| | | }, |
| | | { |
| | | title: '申请人', |
| | | align: 'center', |
| | | dataIndex: 'reportUser_dictText' |
| | | }, |
| | | { |
| | | title: '处置时间', |
| | | align: 'center', |
| | | dataIndex: 'scrapTime' |
| | | }, |
| | | { |
| | | title: '处置理由', |
| | | align: 'center', |
| | | dataIndex: 'scrapReason' |
| | | }, |
| | | { |
| | | title: '处置金额', |
| | | align: 'center', |
| | | dataIndex: 'scrapAmount' |
| | | }, |
| | | { |
| | | title: '处置状态', |
| | | align: 'center', |
| | | dataIndex: 'scrapStatus_dictText' |
| | | }, |
| | | { |
| | | title: '审核人', |
| | | align: 'center', |
| | | dataIndex: 'approvalUser_dictText' |
| | | }, |
| | | { |
| | | title: '审核意见', |
| | | align: 'center', |
| | | dataIndex: 'approvalComment' |
| | | }, |
| | | { |
| | | title: '审核时间', |
| | | align: 'center', |
| | | dataIndex: 'approvalTime' |
| | | }, |
| | | { |
| | | title: '备注', |
| | | align: 'center', |
| | | dataIndex: 'remark' |
| | | }, |
| | | { |
| | | title: '操作', |
| | | dataIndex: 'action', |
| | | align: 'center', |
| | | fixed: 'right', |
| | | width: 150, |
| | | scopedSlots: { customRender: 'action' } |
| | | } |
| | | ], |
| | | url: { |
| | | list: '/eam/eamEquipmentScrap/list', |
| | | delete: '/eam/eamEquipmentScrap/delete', |
| | | deleteBatch: '/eam/eamEquipmentScrap/deleteBatch', |
| | | submit: '/eam/eamEquipmentScrap/submit' |
| | | } |
| | | } |
| | | }, |
| | | computed: { |
| | | importExcelUrl: function(){ |
| | | return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
| | | importExcelUrl: function() { |
| | | return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}` |
| | | } |
| | | }, |
| | | methods: { |
| | | |
| | | methods: { |
| | | handleSubmit(id) { |
| | | if (!this.url.submit) { |
| | | this.$message.error('请设置url.submit属性!') |
| | | return |
| | | } |
| | | let that = this |
| | | getAction(that.url.submit, { id: id }).then((res) => { |
| | | if (res.success) { |
| | | //重新计算分页问题 |
| | | that.reCalculatePage(1) |
| | | // that.$message.success(res.message); |
| | | that.$notification.success({ |
| | | message: '消息', |
| | | description: res.message |
| | | }) |
| | | that.loadData() |
| | | } else { |
| | | // that.$message.warning(res.message); |
| | | that.$notification.warning({ |
| | | message: '消息', |
| | | description: res.message |
| | | }) |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | <style scoped> |
| | | @import '~@assets/less/common.less'; |
| | | @import '~@assets/less/common.less'; |
| | | </style> |