fix: 问题修复

This commit is contained in:
cgd_mac 2022-02-24 18:06:02 +08:00
parent c37fd41bc6
commit 5ec19f31e4
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
<a-popconfirm
v-if="record.status === 1"
slot="actions"
:title="`确定要报名参加${record.name}吗?`"
:title="`确定要报名参加${record.trainName}吗?`"
ok-text="添加"
cancel-text="取消"
@confirm="handlerJoin(record)"

View File

@ -106,7 +106,7 @@
<a-popconfirm
v-if="item.status === 1"
slot="actions"
:title="`确定要报名参加${item.name}吗?`"
:title="`确定要报名参加${item.trainName}吗?`"
ok-text="添加"
cancel-text="取消"
@confirm="handlerJoin(item)"
@ -223,7 +223,7 @@ export default {
},
//
getJzpxList () {
reqCourseCenterList({ pageSize: 2, pageNum: 1 }).then(res => {
reqCourseCenterList({ pageSize: 5, pageNum: 1 }).then(res => {
this.jzpxList = res.rows
})
},