修复勋章信息管理页面报错问题
This commit is contained in:
@@ -41,16 +41,16 @@
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row.name).tr }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="medalDesc" align="center" label="勋章获得方式-华语区">
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row.medalDesc)?.zh || ''}}</template>
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row?.medalDesc)?.zh || ''}}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="medalDesc" align="center" label="勋章获得方式-英语区">
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row.medalDesc)?.en || ''}}</template>
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row?.medalDesc)?.en || ''}}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="medalDesc" align="center" label="勋章获得方式-阿语区">
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row.medalDesc)?.ar || ''}}</template>
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row?.medalDesc)?.ar || ''}}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="medalDesc" align="center" label="勋章获得方式-土耳其区">
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row.medalDesc)?.tr || ''}}</template>
|
||||
<template v-slot="scope">{{ JSON.parse(scope.row?.medalDesc)?.tr || ''}}</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="picUrl" label="勋章图片" width="120">
|
||||
<template v-slot="scope">
|
||||
|
Reference in New Issue
Block a user