v1.9 admin 投訴工單詳情 英文bug

This commit is contained in:
wuxw 2025-09-02 15:59:14 +08:00
parent 22935f31d6
commit 7eba6f1a32

View File

@ -1,49 +1,27 @@
<template>
<div class="complaint-detail-type">
<el-table
:data="complaintTypes"
border
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"
>
<el-table :data="complaintTypes" border 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">
<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>
</el-table-column>
<el-table-column
prop="appraiseReply"
:label="$t('complaintDetailType.appraiseReply')"
align="center"
>
<el-table-column prop="appraiseReply" :label="$t('complaintDetailType.appraiseReply')" align="center">
<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>
</el-table-column>
<el-table-column
:label="$t('complaintDetailType.handler')"
align="center"
>
<el-table-column :label="$t('complaintDetailType.handler')" align="center">
<template slot-scope="scope">
<div v-for="(item, index) in scope.row.staffs" :key="index">
{{ item.staffName }}
</div>
</template>
</el-table-column>
<el-table-column
prop="createTime"
:label="$t('complaintDetailType.createTime')"
align="center"
/>
<el-table-column prop="createTime" :label="$t('complaintDetailType.createTime')" align="center" />
</el-table>
</div>
</template>