|
@@ -609,13 +609,18 @@ export default {
|
|
|
path: "/business/resetTeaming",
|
|
|
query: { ...this.$route.query },
|
|
|
});
|
|
|
- }
|
|
|
- if(query.type == "look"){
|
|
|
- this.$store.dispatch("delVisitedViews", this.$route);
|
|
|
+ } else if(query.type == 'look') {
|
|
|
+ this.$store.dispatch("delVisitedViews", this.$route);
|
|
|
this.$router.push({
|
|
|
path: "/business/teamLookBase",
|
|
|
query: { ...this.$route.query },
|
|
|
});
|
|
|
+ }else if(query.type == 'PRE_BUILD_FEE'){
|
|
|
+ this.$store.dispatch("delVisitedViews", this.$route);
|
|
|
+ this.$router.push({
|
|
|
+ path: "/business/createPayment",
|
|
|
+ query: { ...this.$route.query },
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
handleSelectionChange(val) {
|