BUG 26305

This commit is contained in:
aixianling
2022-01-04 18:38:27 +08:00
parent 76484f4b95
commit 4499445db6
4 changed files with 11 additions and 11 deletions

View File

@@ -43,12 +43,12 @@
@getList="getList">
<el-table-column slot="releaseUserName" label="发布人" align="center">
<template slot-scope="{ row }">
<ai-open-data type="userName" :openid="row.releaseUserName"></ai-open-data>
<span v-text="row.releaseUserName"/>
</template>
</el-table-column>
<el-table-column slot="unitName" label="发布部门" align="center">
<template slot-scope="{ row }">
<ai-open-data type="departmentName" :openid="row.unitName"></ai-open-data>
<span v-text="row.unitName"/>
</template>
</el-table-column>
@@ -75,7 +75,7 @@
<div class="wrap">
<div class="item" v-for="(item,index) in readObj.read" :key="index">
<img :src="item.avatar" alt="">
<ai-open-data type="userName" :openid="item.name"></ai-open-data>
<span v-text="item.name"/>
</div>
</div>
</template>
@@ -85,7 +85,7 @@
<div class="wrap">
<div class="item" v-for="(item,index) in readObj.unRead" :key="index">
<img :src="item.avatar" alt="">
<ai-open-data type="userName" :openid="item.name"></ai-open-data>
<span v-text="item.name"/>
</div>
</div>
</template>