|
@@ -0,0 +1,50 @@
|
|
|
+<template>
|
|
|
+ <div class="forecastName">
|
|
|
+ <h2>
|
|
|
+ <el-page-header @back="onCancel" :content="teamName"></el-page-header>
|
|
|
+ </h2>
|
|
|
+
|
|
|
+ <p style="margin-bottom: 15px; font-size: 18px; font-weight: 400">
|
|
|
+ 缴费截止时间:{{ new Date() | formatTimer }}
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <div class="btnList">
|
|
|
+ <el-button type="primary">预报名链接</el-button>
|
|
|
+ <el-button type="primary">预报名时间延长</el-button>
|
|
|
+ <el-button type="primary">开启报名</el-button>
|
|
|
+ <!-- <div
|
|
|
+ class="newBand"
|
|
|
+ @click="payStart"
|
|
|
+ v-permission="'musicGroup/openPay'"
|
|
|
+ v-show="status == 'APPLY'"
|
|
|
+ >
|
|
|
+ 开始缴费
|
|
|
+ </div> -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { permission } from "@/utils/directivePage";
|
|
|
+export default {
|
|
|
+ name: 'forecastName',
|
|
|
+ data() {
|
|
|
+ const query = this.$route.query
|
|
|
+ return {
|
|
|
+ teamName: query.name || null
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ permission(str) {
|
|
|
+ return permission(str);
|
|
|
+ },
|
|
|
+ onCancel() {
|
|
|
+ this.$router.push({ path: "/business/teamDetail" });
|
|
|
+ },
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+
|
|
|
+</style>
|