123456789101112131415161718192021222324252627 |
- <template>
- <section class="sub">
- <tit :tname="name" />
- </section>
- </template>
- <script>
- import tit from '~/components/titles.vue'
- export default {
- components: {
- tit,
- },
- data() {
- return {
- name: '前期项目订阅管理'
- }
- },
- methods: {
- Subscribe(e) {
- this.$router.push({ path: '/bidding/sub?id=20' })
- }
- }
- }
- </script>
- <style>
- </style>
|