2024-01-23 17:05:40 +08:00
|
|
|
|
<template>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-card :bordered='false'>
|
|
|
|
|
<div class='table-page-search-wrapper' v-if='!isShowModel'>
|
|
|
|
|
<a-form layout='inline'>
|
|
|
|
|
<a-row :gutter='48'>
|
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item label='维修单号'>
|
|
|
|
|
<a-input placeholder='请输入关键词' v-model='queryParam.sn' />
|
2024-08-29 13:36:34 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' :allowClear='true' label='故障类型'>
|
|
|
|
|
<a-select v-model='queryParam.typeId'
|
2024-08-30 10:26:59 +08:00
|
|
|
|
v-decorator="['typeId']"
|
2024-08-31 22:01:04 +08:00
|
|
|
|
@change='selectDevice'>
|
|
|
|
|
<a-select-option v-for='item in typeList' :key='item.id'>{{ item.name }}
|
2024-08-28 18:05:00 +08:00
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
2024-08-20 16:35:26 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' :allowClear='true' label='故障子类'>
|
|
|
|
|
<a-select v-model='queryParam.deviceId'
|
2024-08-28 18:05:00 +08:00
|
|
|
|
v-decorator="['deviceId', {rules: [{ required: true, message: '请选择所属设备' }]}]"
|
2024-08-31 22:01:04 +08:00
|
|
|
|
@change='getDeviceName'>
|
|
|
|
|
<a-select-option v-for='item in deviceList' :key='item.id'>{{ item.name }}
|
2024-08-28 18:05:00 +08:00
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
2024-08-20 16:35:26 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='20'>
|
|
|
|
|
<a-form-item label='关键词(故障描述)'>
|
|
|
|
|
<a-input placeholder='请输入关键词' v-model='queryParam.explain' />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item label='故障等级'>
|
|
|
|
|
<a-select v-model='queryParam.repairLevel' :allowClear='true'
|
|
|
|
|
v-decorator="['repairLevel']">
|
|
|
|
|
<a-select-option v-for='item in repairLevelOptions' :key='item.value'>
|
2024-08-30 12:01:32 +08:00
|
|
|
|
{{ item.label }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item label='报修来源'>
|
|
|
|
|
<a-select v-model='queryParam.remark' :allowClear='true'
|
|
|
|
|
v-decorator="['remark']">
|
|
|
|
|
<a-select-option v-for='item in remarkOption' :key='item.value'>
|
2024-08-28 18:05:00 +08:00
|
|
|
|
{{ item.label }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='工单状态'>
|
|
|
|
|
<a-select v-model='queryParam.type' :allowClear='true'
|
|
|
|
|
v-decorator="['status']">
|
|
|
|
|
<a-select-option v-for='item in options' :key='item.value'>
|
2024-08-28 18:05:00 +08:00
|
|
|
|
{{ item.label }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item label='评价'>
|
|
|
|
|
<a-select v-model='queryParam.evalService'
|
2024-08-30 00:42:34 +08:00
|
|
|
|
v-decorator="['evalService']">
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-select-option v-for='item in evalOptions' :key='item.value'>
|
2024-08-30 00:42:34 +08:00
|
|
|
|
{{ item.label }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='7' :sm='15'>
|
|
|
|
|
<a-form-item label='报修时间'>
|
|
|
|
|
<a-range-picker v-model='dateRange' @change='onChange' />
|
2024-08-20 16:35:26 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-col :md='8' :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='reset()'>重置</a-button>
|
|
|
|
|
<a-button style='margin-left: 8px' type='primary' @click='exportRepair()'>导出工单模版</a-button>
|
|
|
|
|
<a-button style='margin-left: 8px' type='primary' @click='importDataVisible()'>导入</a-button>
|
|
|
|
|
<a-button style='margin-left: 8px' type='primary' @click='exportRepairList()'>导出工单数据</a-button>
|
2024-08-28 21:31:59 +08:00
|
|
|
|
|
2024-01-23 17:05:40 +08:00
|
|
|
|
</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
</a-form>
|
|
|
|
|
</div>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<div class='table-operator' v-if='!isShowModel'>
|
|
|
|
|
<a-button v-if='addEnable' type='primary' icon='plus' @click='$refs.modal.add()'>新建</a-button>
|
2024-09-02 20:07:31 +08:00
|
|
|
|
<a-dropdown v-if='removeEnable&&selectedRowKeys.length > 0'>
|
|
|
|
|
<a-button type='danger' icon='delete' @click='delByIds(selectedRowKeys)'>删除</a-button>
|
|
|
|
|
</a-dropdown>
|
2024-08-05 15:32:46 +08:00
|
|
|
|
</div>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<s-table
|
|
|
|
|
size='default'
|
|
|
|
|
ref='table'
|
|
|
|
|
rowKey='id'
|
|
|
|
|
:rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
|
|
|
|
|
:columns='columns'
|
|
|
|
|
:data='loadData'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<span slot='status' slot-scope='text'>
|
2024-01-23 17:05:40 +08:00
|
|
|
|
{{ text | statusFilter }}
|
|
|
|
|
</span>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<span slot='remark' slot-scope='text'>
|
|
|
|
|
<a-tag v-if="text == '5110'" color='blue'>
|
2024-08-28 18:05:00 +08:00
|
|
|
|
{{ text }}
|
|
|
|
|
</a-tag>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-tag v-else color='cyan'>
|
2024-08-28 18:05:00 +08:00
|
|
|
|
普通报修
|
|
|
|
|
</a-tag>
|
|
|
|
|
</span>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<span slot='action' slot-scope='text, record'>
|
|
|
|
|
<a v-if='editEnabel' @click='handleView(record.id)'>详情</a>
|
|
|
|
|
<!-- <a-divider v-if='!isShowModel' type='vertical' />-->
|
|
|
|
|
<!-- <a v-if='editEnabel && !isShowModel' @click='handleEdit(record)'>编辑</a>-->
|
2024-09-02 20:07:31 +08:00
|
|
|
|
<a-divider v-if='!isShowModel' type='vertical' />
|
|
|
|
|
<a type='danger' v-if='!isShowModel' @click='delByIds(record.id)'>删除</a>
|
2024-09-02 17:55:21 +08:00
|
|
|
|
<!-- <a-divider v-if='!isShowModel' type='vertical' />-->
|
2024-09-02 20:07:31 +08:00
|
|
|
|
<!-- <a type='danger' v-if='!isShowModel' @click='delByIds(selectedRowKeys)'>批量删除</a>-->
|
2024-01-23 17:05:40 +08:00
|
|
|
|
</span>
|
2024-08-31 22:01:04 +08:00
|
|
|
|
</s-table>
|
|
|
|
|
<repair-modal ref='modal' @success='handleOk' />
|
2024-08-28 21:31:59 +08:00
|
|
|
|
|
2024-08-31 22:01:04 +08:00
|
|
|
|
<a-modal v-model='visible' title='导入工单'>
|
|
|
|
|
<div style='display: flex'>
|
2024-08-28 21:31:59 +08:00
|
|
|
|
<a-upload
|
2024-08-31 22:01:04 +08:00
|
|
|
|
accept='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel'
|
|
|
|
|
@change='customChange'
|
|
|
|
|
:customRequest='customRequest'>
|
|
|
|
|
<a-button type='primary'>导入工单</a-button>
|
2024-08-28 21:31:59 +08:00
|
|
|
|
</a-upload>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</a-modal>
|
2024-01-23 17:05:40 +08:00
|
|
|
|
</a-card>
|
2024-08-28 21:31:59 +08:00
|
|
|
|
|
2024-01-23 17:05:40 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { STable } from '@/components'
|
2024-08-29 13:36:34 +08:00
|
|
|
|
import { getRepairList, complete, delRepair } from '@/api/admin/repair'
|
|
|
|
|
import { oneWorkerList, oneFloorList, oneFloorCreateList } from '@/api/admin/repair/repairStats'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
import RepairModal from './modules/RepairModal.vue'
|
|
|
|
|
import { checkPermission } from '@/utils/permissions'
|
2024-08-28 18:05:00 +08:00
|
|
|
|
import { getRepairDeviceList } from '@/api/admin/repair/repairDevice'
|
|
|
|
|
import { getRepairTypeList } from '@/api/admin/repair/repairDeviceType'
|
2024-08-28 21:31:59 +08:00
|
|
|
|
import { exportRepair, exportTemplate, importData } from '@/api/admin/repair/repairIo'
|
|
|
|
|
import storage from 'store'
|
|
|
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types'
|
2024-08-29 13:36:34 +08:00
|
|
|
|
import { message } from 'ant-design-vue'
|
2024-09-02 20:07:31 +08:00
|
|
|
|
import { delRepairRoom } from '@/api/admin/repair/repairAddressFloor'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'TableList',
|
|
|
|
|
components: {
|
|
|
|
|
STable,
|
|
|
|
|
RepairModal
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
data() {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
return {
|
2024-08-29 00:04:46 +08:00
|
|
|
|
dateRange: [],
|
2024-08-31 22:01:04 +08:00
|
|
|
|
isShowModel: false, // 是否为查看模式,查看模式下仅允许查看列表、查看详情
|
2024-01-23 17:05:40 +08:00
|
|
|
|
labelCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 5 }
|
|
|
|
|
},
|
|
|
|
|
wrapperCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 16 }
|
|
|
|
|
},
|
|
|
|
|
form: this.$form.createForm(this),
|
|
|
|
|
mdl: {},
|
2024-08-28 21:31:59 +08:00
|
|
|
|
visible: false,
|
|
|
|
|
headers: {
|
|
|
|
|
Authorization: 'Bearer ' + storage.get(ACCESS_TOKEN)
|
|
|
|
|
},
|
2024-01-23 17:05:40 +08:00
|
|
|
|
// 高级搜索 展开/关闭
|
|
|
|
|
advanced: false,
|
|
|
|
|
// 查询参数
|
2024-08-31 22:01:04 +08:00
|
|
|
|
queryParam: {
|
|
|
|
|
'type': 'all',
|
|
|
|
|
'explain': '',
|
|
|
|
|
'sn': '',
|
|
|
|
|
'typeId': '',
|
|
|
|
|
'deviceId': '',
|
|
|
|
|
'status': '',
|
|
|
|
|
'repairLevel': '',
|
|
|
|
|
'beginTime': '',
|
|
|
|
|
'endTime': '',
|
|
|
|
|
'evalService': '',
|
|
|
|
|
'timeout': '',
|
|
|
|
|
'remark': '',
|
|
|
|
|
'name': ''
|
|
|
|
|
},
|
|
|
|
|
// loadData: [],
|
2024-08-28 18:05:00 +08:00
|
|
|
|
typeList: [],
|
|
|
|
|
deviceList: [],
|
|
|
|
|
repairLevelOptions: [{
|
2024-08-31 22:01:04 +08:00
|
|
|
|
value: '',
|
|
|
|
|
label: '全部'
|
|
|
|
|
}, {
|
2024-08-28 18:05:00 +08:00
|
|
|
|
value: '一级',
|
|
|
|
|
label: '一级'
|
|
|
|
|
}, {
|
|
|
|
|
value: '二级',
|
|
|
|
|
label: '二级'
|
|
|
|
|
}, {
|
|
|
|
|
value: '三级',
|
|
|
|
|
label: '三级'
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-08-30 00:42:34 +08:00
|
|
|
|
evalOptions: [{
|
2024-08-31 22:01:04 +08:00
|
|
|
|
value: '',
|
|
|
|
|
label: '全部'
|
|
|
|
|
}, {
|
2024-08-30 01:14:09 +08:00
|
|
|
|
value: 1,
|
2024-08-30 00:42:34 +08:00
|
|
|
|
label: '好评'
|
|
|
|
|
}, {
|
2024-08-30 01:14:09 +08:00
|
|
|
|
value: 2,
|
2024-08-30 00:42:34 +08:00
|
|
|
|
label: '中评'
|
|
|
|
|
}, {
|
2024-08-30 01:14:09 +08:00
|
|
|
|
value: 3,
|
2024-08-30 00:42:34 +08:00
|
|
|
|
label: '差评'
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-08-29 13:36:34 +08:00
|
|
|
|
remarkOption: [{
|
2024-08-31 22:01:04 +08:00
|
|
|
|
value: '',
|
|
|
|
|
label: '全部'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'no',
|
2024-08-29 13:36:34 +08:00
|
|
|
|
label: '普通报修'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'yes',
|
2024-08-29 13:36:34 +08:00
|
|
|
|
label: '5110'
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-08-28 18:05:00 +08:00
|
|
|
|
options: [{
|
2024-08-31 22:01:04 +08:00
|
|
|
|
value: 'all',
|
|
|
|
|
label: '全部'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'wait',
|
|
|
|
|
label: '待派单'
|
2024-08-28 18:05:00 +08:00
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'anew',
|
2024-08-28 18:05:00 +08:00
|
|
|
|
label: '重新派单'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'already',
|
2024-08-28 18:05:00 +08:00
|
|
|
|
label: '已派单'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'process',
|
2024-08-28 18:05:00 +08:00
|
|
|
|
label: '处理中'
|
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'evaling',
|
2024-08-31 22:01:04 +08:00
|
|
|
|
label: '待评价'
|
2024-08-28 18:05:00 +08:00
|
|
|
|
}, {
|
2024-08-30 00:42:34 +08:00
|
|
|
|
value: 'evaled',
|
2024-08-28 18:05:00 +08:00
|
|
|
|
label: '已评价'
|
2024-08-31 22:01:04 +08:00
|
|
|
|
}, {
|
|
|
|
|
value: 'invalid',
|
|
|
|
|
label: '无效申请'
|
2024-08-28 18:05:00 +08:00
|
|
|
|
}
|
|
|
|
|
],
|
2024-01-23 17:05:40 +08:00
|
|
|
|
// 表头
|
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
title: '维修单号',
|
|
|
|
|
dataIndex: 'sn'
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-08-31 22:01:04 +08:00
|
|
|
|
title: '故障类型',
|
2024-08-07 09:56:31 +08:00
|
|
|
|
dataIndex: 'typeName'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2024-08-30 10:26:59 +08:00
|
|
|
|
title: '故障子类',
|
2024-08-15 17:33:04 +08:00
|
|
|
|
dataIndex: 'deviceName'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
{
|
|
|
|
|
title: '故障等级',
|
|
|
|
|
dataIndex: 'repairLevel'
|
|
|
|
|
},
|
2024-08-28 18:05:00 +08:00
|
|
|
|
{
|
|
|
|
|
title: '报修来源',
|
|
|
|
|
dataIndex: 'remark',
|
|
|
|
|
scopedSlots: { customRender: 'remark' }
|
|
|
|
|
},
|
2024-01-23 17:05:40 +08:00
|
|
|
|
{
|
2024-08-05 15:32:46 +08:00
|
|
|
|
title: '工单状态',
|
|
|
|
|
dataIndex: 'status',
|
|
|
|
|
scopedSlots: { customRender: 'status' }
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-08-30 12:01:32 +08:00
|
|
|
|
title: '报修人',
|
2024-08-15 17:33:04 +08:00
|
|
|
|
dataIndex: 'name'
|
2024-08-05 15:32:46 +08:00
|
|
|
|
},
|
2024-01-23 17:05:40 +08:00
|
|
|
|
{
|
|
|
|
|
title: '报修时间',
|
2024-08-28 18:05:00 +08:00
|
|
|
|
dataIndex: 'createTime',
|
2024-01-23 17:05:40 +08:00
|
|
|
|
sorter: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
width: '200px',
|
|
|
|
|
dataIndex: 'action',
|
|
|
|
|
scopedSlots: { customRender: 'action' }
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// 加载数据方法 必须为 Promise 对象
|
2024-08-31 22:01:04 +08:00
|
|
|
|
loadData: parameter => {
|
|
|
|
|
if (this.$route.query.repairUserId != null) {
|
|
|
|
|
return oneWorkerList(Object.assign(parameter, { workerId: this.$route.query.repairUserId }))
|
|
|
|
|
} else if (this.$route.query.floorId != null) {
|
|
|
|
|
return oneFloorList(Object.assign(parameter, { floorerId: this.$route.query.floorId }))
|
|
|
|
|
} else if (this.$route.query.floorCreateId != null) {
|
|
|
|
|
return oneFloorCreateList(Object.assign(parameter, { floorerId: this.$route.query.floorCreateId }))
|
|
|
|
|
} else {
|
|
|
|
|
const data = {
|
|
|
|
|
'role': 7,
|
|
|
|
|
'type': this.queryParam.type,
|
|
|
|
|
'repair': {
|
|
|
|
|
'explain': this.queryParam.explain,
|
|
|
|
|
'sn': this.queryParam.sn,
|
|
|
|
|
'typeId': this.queryParam.typeId,
|
|
|
|
|
'deviceId': this.queryParam.deviceId,
|
|
|
|
|
'status': this.queryParam.status,
|
|
|
|
|
'repairLevel': this.queryParam.repairLevel,
|
|
|
|
|
'beginTime': this.queryParam.startTime,
|
|
|
|
|
'endTime': this.queryParam.endTime,
|
|
|
|
|
'evalService': this.queryParam.evalService,
|
|
|
|
|
'timeout': this.queryParam.timeout,
|
|
|
|
|
'remark': this.queryParam.remark,
|
|
|
|
|
'name': this.queryParam.name
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return getRepairList(Object.assign(parameter, data))
|
|
|
|
|
}
|
|
|
|
|
// return getRepairList(Object.assign(parameter, this.queryParam))
|
|
|
|
|
},
|
|
|
|
|
selectedRowKeys: [],
|
|
|
|
|
selectedRows: [],
|
2024-01-23 17:05:40 +08:00
|
|
|
|
addEnable: checkPermission('admin:repair:add'),
|
|
|
|
|
editEnabel: checkPermission('admin:repair:edit'),
|
|
|
|
|
removeEnable: checkPermission('admin:repair:list')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
2024-08-15 17:33:04 +08:00
|
|
|
|
// 状态:1 待派单,3 重新派单,5 已派单,7 处理中, 9已完成 待评价, 11 已关闭 13 已评价
|
2024-08-31 22:01:04 +08:00
|
|
|
|
statusFilter(status) {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
const statusMap = {
|
2024-08-30 10:26:59 +08:00
|
|
|
|
'1': '待派单',
|
2024-08-15 17:33:04 +08:00
|
|
|
|
'3': '重新派单',
|
|
|
|
|
'5': '已派单',
|
|
|
|
|
'7': '处理中',
|
2024-08-31 22:01:04 +08:00
|
|
|
|
'9': '待评价',
|
2024-08-30 10:26:59 +08:00
|
|
|
|
'11': '无效申请',
|
2024-08-15 17:33:04 +08:00
|
|
|
|
'13': '已评价'
|
2024-01-23 17:05:40 +08:00
|
|
|
|
}
|
|
|
|
|
return statusMap[status]
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
created() {
|
|
|
|
|
// console.log('this.$route.query', this.$route.query.evalService)
|
|
|
|
|
// 获取三个查询参数
|
2024-08-30 01:14:09 +08:00
|
|
|
|
if (this.$route.query.evalService != null) {
|
|
|
|
|
this.queryParam.evalService = this.$route.query.evalService
|
|
|
|
|
}
|
2024-08-30 00:42:34 +08:00
|
|
|
|
this.queryParam.timeout = this.$route.query.timeout
|
2024-08-31 22:01:04 +08:00
|
|
|
|
this.queryParam.type = this.$route.query.status || 'all'
|
|
|
|
|
// this.selectRepairList()
|
|
|
|
|
// 页面部分隐藏
|
|
|
|
|
if (this.$route.query.repairUserId != null || this.$route.query.floorId != null || this.$route.query.floorCreateId != null) {
|
|
|
|
|
// 从绩效入口进入,不允许新建、查询、编辑、删除等操作
|
|
|
|
|
this.isShowModel = true
|
|
|
|
|
}
|
2024-08-28 18:05:00 +08:00
|
|
|
|
this.selectType()
|
2024-01-23 17:05:40 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-08-31 22:01:04 +08:00
|
|
|
|
fatherMethod(val) {
|
|
|
|
|
console.log('val实际就是子组件传过来的childParam')
|
|
|
|
|
},
|
|
|
|
|
customChange() {
|
2024-08-28 21:31:59 +08:00
|
|
|
|
|
2024-08-30 00:42:34 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onSelectChange(selectedRowKeys, selectedRows) {
|
|
|
|
|
this.selectedRowKeys = selectedRowKeys
|
|
|
|
|
this.selectedRows = selectedRows
|
|
|
|
|
},
|
|
|
|
|
reset() {
|
|
|
|
|
this.queryParam = {
|
|
|
|
|
'type': 'all',
|
|
|
|
|
'explain': '',
|
|
|
|
|
'sn': '',
|
|
|
|
|
'typeId': '',
|
|
|
|
|
'deviceId': '',
|
|
|
|
|
'status': '',
|
|
|
|
|
'repairLevel': '',
|
|
|
|
|
'beginTime': '',
|
|
|
|
|
'endTime': '',
|
|
|
|
|
'evalService': '',
|
|
|
|
|
'timeout': '',
|
|
|
|
|
'remark': '',
|
|
|
|
|
'name': ''
|
|
|
|
|
}
|
|
|
|
|
this.handleOk(true)
|
|
|
|
|
// this.queryParam = {}
|
|
|
|
|
// this.queryParam.typeId = ''
|
|
|
|
|
// this.selectRepairList()
|
2024-08-28 21:31:59 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
customRequest(file) {
|
2024-08-28 21:31:59 +08:00
|
|
|
|
// file 是上传的文件 其内容会在放在下面截图中
|
|
|
|
|
// 后端需要接受的参数是 formData数据,
|
|
|
|
|
// uploadFile 我自己的接口
|
|
|
|
|
const formData = new FormData()
|
|
|
|
|
formData.append('file', file.file)
|
|
|
|
|
console.log(file)
|
|
|
|
|
importData(formData).then(res => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
// 调用组件内方法, 设置为成功状态
|
|
|
|
|
file.onSuccess(res, file.file)
|
|
|
|
|
file.status = 'done'
|
|
|
|
|
this.visible = false
|
|
|
|
|
this.$message.success('导入成功')
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.msg)
|
|
|
|
|
file.onError()
|
|
|
|
|
file.status = 'error'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 导入工单
|
2024-08-31 22:01:04 +08:00
|
|
|
|
importDataVisible() {
|
2024-08-28 21:31:59 +08:00
|
|
|
|
this.visible = true
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 导出工单模板
|
2024-08-31 22:01:04 +08:00
|
|
|
|
exportRepair() {
|
2024-08-28 21:31:59 +08:00
|
|
|
|
exportTemplate().then(res => {
|
2024-08-29 00:04:46 +08:00
|
|
|
|
this.exportExcel('工单模版', res)
|
2024-08-28 21:31:59 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 导出工单
|
2024-08-31 22:01:04 +08:00
|
|
|
|
exportRepairList() {
|
2024-08-29 00:04:46 +08:00
|
|
|
|
if (this.dateRange.length < 2) {
|
2024-08-29 13:36:34 +08:00
|
|
|
|
message.error('请先设置时间范围,系统将根据时间范围导出工单数据')
|
|
|
|
|
return
|
2024-08-29 00:04:46 +08:00
|
|
|
|
}
|
2024-08-29 13:36:34 +08:00
|
|
|
|
const startDate = this.dateRange[0].format('YYYY-MM-DD')
|
|
|
|
|
const endDate = this.dateRange[1].format('YYYY-MM-DD')
|
2024-08-29 00:04:46 +08:00
|
|
|
|
exportRepair({ startDate: startDate, endDate: endDate }).then(res => {
|
|
|
|
|
this.exportExcel('工单数据', res)
|
2024-08-28 21:31:59 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
exportExcel(filename, res) {
|
2024-08-28 21:31:59 +08:00
|
|
|
|
const link = document.createElement('a')
|
|
|
|
|
let blob = new Blob([res], { type: 'application/vnd.ms-excel;charset=UTF-8' })
|
|
|
|
|
link.style.display = 'none'
|
|
|
|
|
link.href = URL.createObjectURL(blob)
|
|
|
|
|
let num = ''
|
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
|
num += Math.ceil(Math.random() * 10)
|
|
|
|
|
}
|
|
|
|
|
link.setAttribute('download', filename + '.xls')
|
|
|
|
|
document.body.appendChild(link)
|
|
|
|
|
link.click()
|
|
|
|
|
document.body.removeChild(link)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 切换时间
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onChange(value, dateString) {
|
2024-08-28 18:05:00 +08:00
|
|
|
|
this.queryParam.startTime = dateString[0]
|
|
|
|
|
this.queryParam.endTime = dateString[1]
|
|
|
|
|
},
|
2024-08-28 21:31:59 +08:00
|
|
|
|
// 查询分类
|
2024-08-31 22:01:04 +08:00
|
|
|
|
selectType() {
|
2024-08-28 18:05:00 +08:00
|
|
|
|
getRepairTypeList().then(res => {
|
2024-08-31 22:01:04 +08:00
|
|
|
|
let _all = []
|
|
|
|
|
_all.push({
|
|
|
|
|
name: '全部', id: ''
|
|
|
|
|
})
|
|
|
|
|
_all = _all.concat(res.rows)
|
|
|
|
|
this.typeList = _all
|
|
|
|
|
// 给设备子类赋值,默认全部为空
|
|
|
|
|
this.deviceList = [{
|
|
|
|
|
name: '全部', id: ''
|
|
|
|
|
}]
|
2024-08-28 18:05:00 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
2024-08-28 21:31:59 +08:00
|
|
|
|
// 查询设备
|
2024-08-31 22:01:04 +08:00
|
|
|
|
selectDevice(typeId) {
|
|
|
|
|
if (typeId === '') {
|
|
|
|
|
// 全部的情况
|
|
|
|
|
this.deviceList = [{
|
|
|
|
|
name: '全部', id: ''
|
|
|
|
|
}]
|
|
|
|
|
this.queryParam.deviceId = ''
|
2024-08-16 11:07:18 +08:00
|
|
|
|
} else {
|
2024-08-31 22:01:04 +08:00
|
|
|
|
// ajax获取
|
|
|
|
|
getRepairDeviceList({ 'typeId': typeId }).then(res => {
|
|
|
|
|
let _all = []
|
|
|
|
|
_all.push({
|
|
|
|
|
name: '全部', id: ''
|
|
|
|
|
})
|
|
|
|
|
_all = _all.concat(res.rows)
|
|
|
|
|
this.deviceList = _all
|
|
|
|
|
this.queryParam.deviceId = ''
|
2024-08-17 16:31:37 +08:00
|
|
|
|
})
|
2024-08-15 17:33:04 +08:00
|
|
|
|
}
|
2024-08-31 22:01:04 +08:00
|
|
|
|
this.queryParam.typeId = typeId
|
|
|
|
|
},
|
|
|
|
|
getDeviceName(deviceId) {
|
|
|
|
|
this.queryParam.deviceId = deviceId
|
2024-08-29 13:36:34 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
delByIds(ids) {
|
2024-08-29 13:36:34 +08:00
|
|
|
|
const _this = this
|
2024-09-02 20:07:31 +08:00
|
|
|
|
if (ids === '') {
|
|
|
|
|
this.$message.error('请选择后删除!')
|
|
|
|
|
return
|
|
|
|
|
}
|
2024-08-29 13:36:34 +08:00
|
|
|
|
this.$confirm({
|
|
|
|
|
title: '警告',
|
2024-09-02 20:07:31 +08:00
|
|
|
|
content: '删除后不可恢复,是否确认删除?',
|
2024-08-29 13:36:34 +08:00
|
|
|
|
okText: '是',
|
|
|
|
|
okType: 'warning',
|
|
|
|
|
cancelText: '否',
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onOk() {
|
2024-09-02 20:07:31 +08:00
|
|
|
|
delRepair({ ids: ids.join(',') }).then(res => {
|
2024-08-29 13:36:34 +08:00
|
|
|
|
if (res.code === 0) {
|
2024-09-02 20:07:31 +08:00
|
|
|
|
_this.message.success('删除成功')
|
2024-08-31 22:01:04 +08:00
|
|
|
|
_this.handleOk()
|
2024-08-29 13:36:34 +08:00
|
|
|
|
} else {
|
2024-09-02 20:07:31 +08:00
|
|
|
|
_this.$message.error(res.msg)
|
2024-08-29 13:36:34 +08:00
|
|
|
|
}
|
2024-09-02 20:07:31 +08:00
|
|
|
|
_this.selectedRowKeys = []
|
2024-08-29 13:36:34 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onCancel() {
|
2024-08-29 13:36:34 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
2024-08-15 17:33:04 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
handleAdd() {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
this.$refs.modal.add()
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
handleView(repairId) {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
this.$router.push({ name: 'repairView', query: { repairId: repairId } })
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
handleEdit(record) {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
this.$refs.modal.edit(record)
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
handleOk(status) {
|
|
|
|
|
status = status || false
|
|
|
|
|
this.$refs.table.refresh(status)
|
|
|
|
|
// console.log('handleSaveOk')
|
2024-01-23 17:05:40 +08:00
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
handleComplete(id) {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
const _this = this
|
|
|
|
|
this.$confirm({
|
|
|
|
|
title: '警告',
|
|
|
|
|
content: '确认要完成工单吗?',
|
|
|
|
|
okText: '是',
|
|
|
|
|
okType: 'warning',
|
|
|
|
|
cancelText: '否',
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onOk() {
|
2024-01-23 17:05:40 +08:00
|
|
|
|
complete(id).then(res => {
|
|
|
|
|
if (res.code === 0) {
|
|
|
|
|
_this.$message.success('操作成功')
|
|
|
|
|
_this.$refs.table.refresh(true)
|
|
|
|
|
} else {
|
|
|
|
|
_this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.$message.error('系统错误,请稍后再试')
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-08-31 22:01:04 +08:00
|
|
|
|
onCancel() {
|
2024-08-15 17:33:04 +08:00
|
|
|
|
}
|
2024-01-23 17:05:40 +08:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-08-15 17:33:04 +08:00
|
|
|
|
watch: {}
|
2024-01-23 17:05:40 +08:00
|
|
|
|
}
|
|
|
|
|
</script>
|