Merge branch 'develop' of https://gitee.com/siwa-team/dawa-vue into develop

This commit is contained in:
Yjhon 2022-02-24 18:07:05 +08:00
commit cca5552a30
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
})
},