|
@@ -523,12 +523,16 @@ export default {
|
|
|
switch (row.status) {
|
|
|
case 'DRAFT': {
|
|
|
// 编辑中
|
|
|
- this.$router.push({ path: '/business/teamBuild', query: { type: 'teamDraft', id: row.id, } })
|
|
|
+ this.$router.push({ path: '/business/teamBuild', query: { type: 'teamDraft', id: row.id, } }, router => {
|
|
|
+ router.meta.title = '编辑乐团'
|
|
|
+ })
|
|
|
break;
|
|
|
}
|
|
|
case 'AUDIT': {
|
|
|
// 审核中
|
|
|
- this.$router.push({ path: '/business/teamBuild', query: { type: 'teamAudit', id: row.id, } })
|
|
|
+ this.$router.push({ path: '/business/teamBuild', query: { type: 'teamAudit', id: row.id, } }, router => {
|
|
|
+ router.meta.title = '审核乐团'
|
|
|
+ })
|
|
|
break;
|
|
|
}
|
|
|
case 'PRE_BUILD_FEE': {
|
|
@@ -538,12 +542,16 @@ export default {
|
|
|
}
|
|
|
case 'FEE_AUDIT': {
|
|
|
// 费用审核中
|
|
|
- this.$router.push({ path: '/business/teamBuild', query: { type: 'feeAudit', id: row.id, } })
|
|
|
+ this.$router.push({ path: '/business/teamBuild', query: { type: 'feeAudit', id: row.id, } }, router => {
|
|
|
+ router.meta.title = '乐团费用审核中'
|
|
|
+ })
|
|
|
break;
|
|
|
}
|
|
|
case 'AUDIT_FAILED': {
|
|
|
// 审核失败
|
|
|
- this.$router.push({ path: '/business/teamBuild', query: { type: 'teamDraft', id: row.id, } })
|
|
|
+ this.$router.push({ path: '/business/teamBuild', query: { type: 'teamDraft', id: row.id, } }, router => {
|
|
|
+ router.meta.title = '乐团审核失败编辑'
|
|
|
+ })
|
|
|
break;
|
|
|
}
|
|
|
case 'PRE_APPLY': {
|