ComplaintDetailAppraise.vue
3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<template>
<div class="complaint-detail-appraise">
<el-table
:data="appraises"
border
style="width: 100%"
v-loading="loading"
>
<el-table-column
prop="createUserName"
:label="$t('complaintDetailAppraise.userName')"
align="center"
/>
<el-table-column
prop="context"
:label="$t('complaintDetailAppraise.content')"
align="center"
/>
<el-table-column
prop="score"
:label="$t('complaintDetailAppraise.score')"
align="center"
/>
<el-table-column
prop="state"
:label="$t('complaintDetailAppraise.status')"
align="center"
>
<template slot-scope="scope">
<span>{{ scope.row.state === 'W' ? $t('complaintDetailAppraise.waitReply') : $t('complaintDetailAppraise.replied') }}</span>
</template>
</el-table-column>
<el-table-column
prop="createTime"
:label="$t('complaintDetailAppraise.time')"
align="center"
/>
<el-table-column
prop="replyUserName"
:label="$t('complaintDetailAppraise.replyUser')"
align="center"
/>
<el-table-column
prop="replyContext"
:label="$t('complaintDetailAppraise.replyContent')"
align="center"
/>
<el-table-column
:label="$t('common.operation')"
align="center"
>
<template slot-scope="scope">
<el-button
v-if="scope.row.state === 'W'"
type="text"
size="small"
@click="openReplyModal(scope.row)"
>
{{ $t('complaintDetailAppraise.reply') }}
</el-button>
</template>
</el-table-column>
</el-table>
<reply-complaint-appraise
ref="replyComplaintAppraise"
@success="handleSuccess"
/>
</div>
</template>
<script>
import { getCommunityId } from '@/api/community/communityApi'
import { listComplaintAppraise } from '@/api/oa/complaintDetailApi'
import ReplyComplaintAppraise from './ReplyComplaintAppraise'
export default {
name: 'ComplaintDetailAppraise',
components: {
ReplyComplaintAppraise
},
data() {
return {
appraises: [],
loading: false,
complaintId: '',
communityId: ''
}
},
methods: {
async initData(params) {
this.communityId = getCommunityId()
this.complaintId = params.complaintId
await this.loadData()
},
async loadData() {
try {
this.loading = true
const params = {
communityId: this.communityId,
complaintId: this.complaintId,
page: 1,
row: 100
}
const { data } = await listComplaintAppraise(params)
this.appraises = data || []
} catch (error) {
console.error('获取工单评价数据失败:', error)
} finally {
this.loading = false
}
},
openReplyModal(row) {
this.$refs.replyComplaintAppraise.open(row)
},
handleSuccess() {
this.loadData()
}
}
}
</script>
<style lang="scss" scoped>
.complaint-detail-appraise {
margin-top: 20px;
}
</style>