新增了人员绩效页面

This commit is contained in:
chenze 2024-08-08 14:23:25 +08:00
parent 2a81739c90
commit 83292e321b

View File

@ -0,0 +1,180 @@
<template>
<a-card :bordered="false">
<div class="table-page-search-wrapper">
<a-form layout="inline">
<a-row :gutter="48">
<a-col :md="5" :sm="15">
<a-form-item label="报修单号">
<a-input placeholder="请输入报修单号" v-model="queryParam.sn"/>
</a-form-item>
</a-col>
<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="() => queryParam = {}">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<div class="table-operator">
<a-button v-if="addEnable" type="primary" icon="plus" @click="$refs.modal.add()">新建</a-button>
</div>
<s-table
size="default"
ref="table"
rowKey="id"
:columns="columns"
:data="loadData"
>
<span slot="status" slot-scope="text">
{{ text | statusFilter }}
</span>
<span slot="action" slot-scope="text, record">
<a v-if="editEnabel" @click="handleView(record.id)">详情</a>
<a-divider type="vertical" />
<!-- <a v-if="editEnabel" @click="handleEdit(record)">指派</a>-->
<!-- <a-divider type="vertical" />-->
<a v-if="editEnabel" @click="handleComplete(record)">完成</a>
</span>
</s-table>
</a-card>
</template>
<script>
import { STable } from '@/components'
import { getRepairList, complete } from '@/api/admin/repair'
import { checkPermission } from '@/utils/permissions'
export default {
name: 'TableList',
components: {
STable,
},
data () {
return {
labelCol: {
xs: { span: 24 },
sm: { span: 5 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 }
},
form: this.$form.createForm(this),
mdl: {},
// /
advanced: false,
//
queryParam: {},
//
columns: [
{
title: '用户姓名',
dataIndex: 'userName'
},
{
title: '所属分类',
dataIndex: 'typeName'
},
{
title: '工单数量',
dataIndex: 'repairDeviceName'
},
{
title: '已完成',
dataIndex: 'status'
},
{
title: '未解决',
dataIndex: 'repairLevel'
},
{
title: '处理中',
dataIndex: 'userName'
},
{
title: '好评数量好评率',
dataIndex: 'repairTime'
},
{
title: '中评数量中评率',
dataIndex: 'repairTime'
},
{
title: '差评数量差评率',
dataIndex: 'repairTime'
},
{
title: '操作',
width: '200px',
dataIndex: 'action',
scopedSlots: { customRender: 'action' }
}
],
// Promise
loadData: parameter => {
return getRepairList(Object.assign(parameter, this.queryParam))
},
addEnable: checkPermission('admin:repair:add'),
editEnabel: checkPermission('admin:repair:edit'),
removeEnable: checkPermission('admin:repair:list')
}
},
filters: {
statusFilter (status) {
const statusMap = {
'PENDING_ASSIGN': '待分配',
'PENDING_PROCESS': '待处理',
'COMPLETED': '已完成',
'CANCELED': '已取消',
'SCORE': '已评价'
}
return statusMap[status]
}
},
created () {
},
methods: {
handleAdd () {
this.$refs.modal.add()
},
handleView (repairId) {
this.$router.push({ name: 'repairView', query: { repairId: repairId } })
},
handleEdit (record) {
this.$refs.modal.edit(record)
},
handleOk () {
this.$refs.table.refresh(true)
console.log('handleSaveOk')
},
handleComplete (id) {
const _this = this
this.$confirm({
title: '警告',
content: '确认要完成工单吗?',
okText: '是',
okType: 'warning',
cancelText: '否',
onOk () {
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('系统错误,请稍后再试')
})
},
onCancel () {}
})
}
},
watch: {
}
}
</script>