123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <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="设备名称">
- <a-input placeholder="请输入设备名称" v-model="queryParam.equipmentname"></a-input>
- </a-form-item>
- </a-col>
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="优先级">
- <j-dict-select-tag v-model="queryParam.priority" placeholder="请输入优先级" dictCode="repair_priority"/>
- </a-form-item>
- </a-col>
- <template v-if="toggleSearchStatus">
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="待办人">
- <a-input placeholder="请输入待办人" v-model="queryParam.repairuser"></a-input>
- </a-form-item>
- </a-col>
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="维修状态">
- <j-dict-select-tag v-model="queryParam.status" placeholder="请选择维修状态" dictCode="repair_handle_status"/>
- </a-form-item>
- </a-col>
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="工单状态">
- <j-dict-select-tag v-model="queryParam.repairstatus" placeholder="请选择工单状态" dictCode="repair_order_status"/>
- </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>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 查询区域-END -->
- <!-- 操作按钮区域 -->
- <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>
- <!-- 高级查询区域 -->
- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
- <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"
- :scroll="{x:true}"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- class="j-table-force-nowrap cmms-table"
- @change="handleTableChange">
- <template slot="htmlSlot" slot-scope="text">
- <div v-html="text"></div>
- </template>
- <template slot="imgSlot" slot-scope="text,record">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
- <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
- </template>
- <template slot="fileSlot" slot-scope="text">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
- <a-button
- v-else
- :ghost="true"
- type="primary"
- icon="download"
- size="small"
- @click="downloadFile(text)">
- 下载
- </a-button>
- </template>
- <span slot="priority" slot-scope="text, record">
- <a-tag v-if="record.priority === '0'">{{ text }}</a-tag>
- <a-tag v-if="record.priority === '1'" color="orange">{{ text }}</a-tag>
- <a-tag v-if="record.priority === '2'" color="red">{{ text }}</a-tag>
- </span>
- <span slot="status" slot-scope="text, record">
- <a-tag v-if="record.status === '0'" color="orange">{{ text }}</a-tag>
- <a-tag v-if="record.status === '1' || record.priority === '2'" color="blue">{{ text }}</a-tag>
- <a-tag v-if="record.status === '3'">{{ text }}</a-tag>
- </span>
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">编辑</a>
- <a-divider type="vertical" />
- <a @click="handleDisptch(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 @click="handleDrawerDetail(record)">详情</a>
- </a-menu-item>
- <a-menu-item>
- <a @click="handleFreeze(record)">冻结</a>
- </a-menu-item>
- <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>
- <!-- 增改+派单 -->
- <cmms-repair-manage-modal ref="modalForm" @ok="modalFormOk"></cmms-repair-manage-modal>
- <!-- 详情 -->
- <cmms-repair-manage-detail ref="drawerDetail"></cmms-repair-manage-detail>
- </a-card>
- </template>
- <script>
- import '@/assets/less/TableExpand.less'
- import { mixinDevice } from '@/utils/mixin'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import CmmsRepairManageModal from './modules/CmmsRepairManageModal'
- import CmmsRepairManageDetail from './modules/CmmsRepairManageDetail.vue'
- export default {
- name: 'CmmsRepairManageList',
- mixins:[JeecgListMixin, mixinDevice],
- components: {
- CmmsRepairManageModal,
- CmmsRepairManageDetail,
- },
- 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: 'priority_dictText',
- scopedSlots: { customRender: 'priority' }
- },
- {
- title:'维修工单编号',
- align:"center",
- dataIndex: 'repaircode',
- customCell: this.customCellDetail
- },
- {
- title:'工单名称',
- align:"center",
- dataIndex: 'repairname'
- },
- {
- title:'维修时间',
- align:"center",
- dataIndex: 'repairdate',
- customRender:function (text) {
- return !text?"":(text.length>10?text.substr(0,10):text)
- }
- },
- // {
- // title:'设备ID',
- // align:"center",
- // dataIndex: 'equipmentid'
- // },
- {
- title:'设备名称',
- align:"center",
- dataIndex: 'equipmentname'
- },
- {
- title:'设备编号',
- align:"center",
- dataIndex: 'equipmentcode'
- },
- {
- title:'故障日期',
- align:"center",
- dataIndex: 'faultdate',
- customRender:function (text) {
- return !text?"":(text.length>10?text.substr(0,10):text)
- }
- },
- {
- title:'故障描述',
- align:"center",
- dataIndex: 'faultdesc'
- },
- {
- title:'录入人',
- align:"center",
- dataIndex: 'createBy'
- },
- {
- title:'待办人',
- align:"center",
- dataIndex: 'repairuser'
- },
- {
- title:'维修时间',
- align:"center",
- dataIndex: ''
- },
- {
- title:'维修反馈',
- align:"center",
- dataIndex: 'feedback'
- },
- // {
- // title:'维修结果',
- // align:"center",
- // dataIndex: 'result'
- // },
- // {
- // title:'关联ID',
- // align:"center",
- // dataIndex: 'relid'
- // },
- {
- title:'创建时间',
- align:"center",
- dataIndex: 'createTime',
- customRender:function (text) {
- return !text?"":(text.length>10?text.substr(0,10):text)
- }
- },
- // {
- // title:'备注',
- // align:"center",
- // dataIndex: 'remark'
- // },
- {
- title:'工单状态',
- align:"center",
- dataIndex: 'repairstatus_dictText'
- },
- {
- title:'维修状态',
- align:"center",
- fixed:"right",
- width:80,
- dataIndex: 'status_dictText',
- scopedSlots: { customRender: 'status' }
- },
- {
- title: '操作',
- dataIndex: 'action',
- align:"center",
- fixed:"right",
- width:152,
- scopedSlots: { customRender: 'action' }
- }
- ],
- url: {
- list: "/cmmsRepair/cmmsRepair/list",
- delete: "/cmmsRepair/cmmsRepair/delete",
- deleteBatch: "/cmmsRepair/cmmsRepair/deleteBatch",
- exportXlsUrl: "/cmmsRepair/cmmsRepair/exportXls",
- importExcelUrl: "cmmsRepair/cmmsRepair/importExcel",
-
- },
- dictOptions:{},
- superFieldList:[],
- }
- },
- created() {
- this.getSuperFieldList();
- },
- computed: {
- importExcelUrl: function(){
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
- },
- },
- methods: {
- // 派单
- handleDisptch (record) {
- this.$refs.modalForm.title = "派单";
- this.$refs.modalForm.modalType = "disptch";
- this.$refs.modalForm.dispatch(record);
- },
- // 冻结
- handleFreeze(record){
-
- },
- initDictConfig(){
- },
- getSuperFieldList(){
- let fieldList=[];
- fieldList.push({type:'string',value:'id',text:'维修工单ID',dictCode:''})
- fieldList.push({type:'string',value:'createBy',text:'创建者',dictCode:''})
- fieldList.push({type:'date',value:'createTime',text:'创建时间'})
- fieldList.push({type:'string',value:'remark',text:'备注',dictCode:''})
- fieldList.push({type:'string',value:'repaircode',text:'维修工单编号',dictCode:''})
- fieldList.push({type:'string',value:'repairname',text:'工单名称',dictCode:''})
- fieldList.push({type:'string',value:'equipmentid',text:'设备ID',dictCode:''})
- fieldList.push({type:'string',value:'equipmentcode',text:'设备编号',dictCode:''})
- fieldList.push({type:'string',value:'equipmentname',text:'设备名称',dictCode:''})
- fieldList.push({type:'string',value:'priority',text:'优先级:0普通,1紧急,2特急',dictCode:''})
- fieldList.push({type:'date',value:'faultdate',text:'故障日期'})
- fieldList.push({type:'string',value:'faultdesc',text:'故障描述',dictCode:''})
- fieldList.push({type:'string',value:'repairuser',text:'待办人',dictCode:''})
- fieldList.push({type:'date',value:'repairdate',text:'维修时间'})
- fieldList.push({type:'string',value:'feedback',text:'维修反馈',dictCode:''})
- fieldList.push({type:'string',value:'result',text:'维修结果',dictCode:''})
- fieldList.push({type:'string',value:'status',text:'状态:0待处理,1维修检查,2设备维修,3维修结束',dictCode:''})
- fieldList.push({type:'string',value:'relid',text:'关联ID:巡检、点检、保养的ID',dictCode:''})
- fieldList.push({type:'string',value:'repairstatus',text:'维修工单状态: 0正常、1冻结、2拒绝',dictCode:''})
- this.superFieldList = fieldList
- }
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- </style>
- <style lang="less" scoped>
- .cmms-table{
- /deep/ .ant-table-tbody tr:nth-child(2n){
- background-color: #fafafa;
- }
- }
- </style>
|