mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
v1.9 admin 投訴工單詳情 英文bug
This commit is contained in:
parent
22935f31d6
commit
7eba6f1a32
@ -1,49 +1,27 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="complaint-detail-type">
|
<div class="complaint-detail-type">
|
||||||
<el-table
|
<el-table :data="complaintTypes" border style="width: 100%" v-loading="loading">
|
||||||
:data="complaintTypes"
|
<el-table-column prop="typeName" :label="$t('complaintDetailType.typeName')" align="center" />
|
||||||
border
|
<el-table-column prop="notifyWay" :label="$t('complaintDetailType.notifyWay')" align="center">
|
||||||
style="width: 100%"
|
|
||||||
v-loading="loading"
|
|
||||||
>
|
|
||||||
<el-table-column
|
|
||||||
prop="typeName"
|
|
||||||
:label="$t('complaintDetailType.typeName')"
|
|
||||||
align="center"
|
|
||||||
/>
|
|
||||||
<el-table-column
|
|
||||||
prop="notifyWay"
|
|
||||||
:label="$t('complaintDetailType.notifyWay')"
|
|
||||||
align="center"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.notifyWay === 'SMS' ? $t('complaintDetailType.sms') : $t('complaintDetailType.wechat') }}</span>
|
<span>{{ scope.row.notifyWay === 'SMS' ? $t('complaintDetailType.sms') : $t('complaintDetailType.wechat')
|
||||||
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column prop="appraiseReply" :label="$t('complaintDetailType.appraiseReply')" align="center">
|
||||||
prop="appraiseReply"
|
|
||||||
:label="$t('complaintDetailType.appraiseReply')"
|
|
||||||
align="center"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.appraiseReply === 'Y' ? $t('complaintDetailType.autoReply') : $t('complaintDetailType.manualReply') }}</span>
|
<span>{{ scope.row.appraiseReply === 'Y' ? $t('complaintDetailType.autoReply') :
|
||||||
|
$t('complaintDetailType.manualReply') }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column :label="$t('complaintDetailType.handler')" align="center">
|
||||||
:label="$t('complaintDetailType.handler')"
|
|
||||||
align="center"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-for="(item, index) in scope.row.staffs" :key="index">
|
<div v-for="(item, index) in scope.row.staffs" :key="index">
|
||||||
{{ item.staffName }}
|
{{ item.staffName }}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column prop="createTime" :label="$t('complaintDetailType.createTime')" align="center" />
|
||||||
prop="createTime"
|
|
||||||
:label="$t('complaintDetailType.createTime')"
|
|
||||||
align="center"
|
|
||||||
/>
|
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user