|
@ -6,11 +6,16 @@ |
|
|
@click="$router.push({ path: '/appealDetail', query: { pageType: 'event', ...item } })"> |
|
|
@click="$router.push({ path: '/appealDetail', query: { pageType: 'event', ...item } })"> |
|
|
<div class=" flex flex-y"> |
|
|
<div class=" flex flex-y"> |
|
|
<div class="flex"> |
|
|
<div class="flex"> |
|
|
<van-tag size="medium" style="margin-right: 5px" |
|
|
<van-tag v-if="!item.satisfaction" size="medium" style="margin-right: 5px" |
|
|
:color="item.statusName == '处理中' ? processing.bg : completion.bg" |
|
|
:color="item.statusName == '处理中' ? processing1.bg : completion.bg" |
|
|
:text-color="item.statusName == '处理中' ? processing.text : completion.text"> |
|
|
:text-color="item.statusName == '处理中' ? processing1.text : completion.text"> |
|
|
{{ item.statusName }} |
|
|
{{ item.statusName }} |
|
|
</van-tag> |
|
|
</van-tag> |
|
|
|
|
|
<van-tag v-if="item.satisfaction" size="medium" style="margin-right: 5px" |
|
|
|
|
|
:color="processing.bg" |
|
|
|
|
|
:text-color="processing.text"> |
|
|
|
|
|
已评价 |
|
|
|
|
|
</van-tag> |
|
|
<!-- <van-tag size="medium" style="margin-right: 5px" |
|
|
<!-- <van-tag size="medium" style="margin-right: 5px" |
|
|
:color="item.statusName == '处理中' ? processing.bg : completion.bg" |
|
|
:color="item.statusName == '处理中' ? processing.bg : completion.bg" |
|
|
:text-color="item.statusName == '处理中' ? processing.text : completion.text"> |
|
|
:text-color="item.statusName == '处理中' ? processing.text : completion.text"> |
|
@ -37,9 +42,13 @@ export default { |
|
|
type: 0, |
|
|
type: 0, |
|
|
list: [], |
|
|
list: [], |
|
|
pageSize: 5, |
|
|
pageSize: 5, |
|
|
completion: { |
|
|
processing1: { |
|
|
bg: 'rgba(79,148,255,0.14)', |
|
|
bg: 'rgba(79,148,255,0.14)', |
|
|
text: '#4F94FF' |
|
|
text: '#638ff8' |
|
|
|
|
|
}, |
|
|
|
|
|
completion: { |
|
|
|
|
|
bg: 'rgba(18,184,174,0.1)', |
|
|
|
|
|
text: '#12B8AE' |
|
|
}, |
|
|
}, |
|
|
processing: { |
|
|
processing: { |
|
|
bg: 'rgba(255,120,60,0.14)', |
|
|
bg: 'rgba(255,120,60,0.14)', |
|
|