This commit is contained in:
yanran200730
2022-08-18 18:32:57 +08:00
parent 238a6807ac
commit 8aae3b84a5
2 changed files with 3 additions and 2 deletions

View File

@@ -632,7 +632,8 @@ export default {
examines: this.form.examines.length ? this.form.examines.map(v => { examines: this.form.examines.length ? this.form.examines.map(v => {
return { return {
...v, ...v,
examineUserId: v.id examineUserId: v.id,
examineUserName: v.name
} }
}) : [] }) : []
}).then(res => { }).then(res => {

View File

@@ -33,7 +33,7 @@
<div class="user-wrapper"> <div class="user-wrapper">
<div class="user" v-for="(item, index) in info.examines" :key="index"> <div class="user" v-for="(item, index) in info.examines" :key="index">
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" /> <img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
<span>{{ item.name }}</span> <span>{{ item.examineUserName }}</span>
</div> </div>
</div> </div>
</ai-info-item> </ai-info-item>