|
@@ -552,8 +552,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
createNewTeam() {
|
|
|
- let search = JSON.stringify(this.topForm);
|
|
|
- let rules = JSON.stringify(this.rules);
|
|
|
+ this.$store.dispatch('buildIndex',0)
|
|
|
this.$router.push(
|
|
|
{ path: "/business/teamBuild", query: { type: "newTeam" } },
|
|
|
(router) => {
|
|
@@ -567,10 +566,8 @@ export default {
|
|
|
this.$message.error("请至少选择一个乐团进行调整");
|
|
|
return;
|
|
|
}
|
|
|
- let search = JSON.stringify(this.topForm);
|
|
|
- let rules = JSON.stringify(this.rules);
|
|
|
this.$router.push({
|
|
|
- path: "/business/teamBuild",
|
|
|
+ path: "/business/teamDraft",
|
|
|
query: { type: "teamList", teamList: this.passed },
|
|
|
});
|
|
|
},
|
|
@@ -702,9 +699,10 @@ export default {
|
|
|
switch (row.status) {
|
|
|
case "DRAFT": {
|
|
|
// 编辑中
|
|
|
+ this.$store.dispatch('buildIndex',0)
|
|
|
this.$router.push(
|
|
|
{
|
|
|
- path: "/business/teamBuild",
|
|
|
+ path: "/business/teamDraft",
|
|
|
query: { type: "teamDraft", id: row.id },
|
|
|
},
|
|
|
(router) => {
|
|
@@ -715,9 +713,10 @@ export default {
|
|
|
}
|
|
|
case "AUDIT": {
|
|
|
// 审核中
|
|
|
+ this.$store.dispatch('buildIndex',0)
|
|
|
this.$router.push(
|
|
|
{
|
|
|
- path: "/business/teamBuild",
|
|
|
+ path: "/business/teamDraft",
|
|
|
query: { type: "teamAudit", id: row.id },
|
|
|
},
|
|
|
(router) => {
|
|
@@ -736,9 +735,10 @@ export default {
|
|
|
}
|
|
|
case "FEE_AUDIT": {
|
|
|
// 费用审核中
|
|
|
+ this.$store.dispatch('buildIndex',0)
|
|
|
this.$router.push(
|
|
|
{
|
|
|
- path: "/business/teamBuild",
|
|
|
+ path: "/business/teamDraft",
|
|
|
query: { type: "feeAudit", id: row.id },
|
|
|
},
|
|
|
(router) => {
|
|
@@ -749,9 +749,10 @@ export default {
|
|
|
}
|
|
|
case "AUDIT_FAILED": {
|
|
|
// 审核失败
|
|
|
+ this.$store.dispatch('buildIndex',0)
|
|
|
this.$router.push(
|
|
|
{
|
|
|
- path: "/business/teamBuild",
|
|
|
+ path: "/business/teamDraft",
|
|
|
query: { type: "teamDraft", id: row.id },
|
|
|
},
|
|
|
(router) => {
|