sub.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <section class="sub">
  3. <tit :tname="name"/>
  4. <ul class="add">
  5. <li>
  6. <nuxt-link to="subIndustry">
  7. <span class="title">项目行业</span>
  8. <span class="name">
  9. 工业建筑/勘探设计/酒店建筑
  10. <img src="~/static/img/to.png" alt>
  11. </span>
  12. </nuxt-link>
  13. </li>
  14. <li>
  15. <nuxt-link to="subStage">
  16. <span class="title">项目阶段</span>
  17. <span class="name">
  18. 请选择
  19. <img src="~/static/img/to.png" alt>
  20. </span>
  21. </nuxt-link>
  22. </li>
  23. <li>
  24. <nuxt-link to="subArea">
  25. <span class="title">项目地区</span>
  26. <span class="name">
  27. 北京/河南/佳木斯/鄂尔多斯/北京/...
  28. <img src="~/static/img/to.png" alt>
  29. </span>
  30. </nuxt-link>
  31. </li>
  32. <li>
  33. <nuxt-link to="subKeywords">
  34. <span class="title">自定义关键词</span>
  35. <span class="name">
  36. 去定义
  37. <img src="~/static/img/to.png" alt>
  38. </span>
  39. </nuxt-link>
  40. </li>
  41. <!-- <li>
  42. <span class="title">项目行业</span>
  43. <span class="name">
  44. 工业建筑/勘探设计/酒店建筑
  45. <img src="~/static/img/to.png" alt>
  46. </span>
  47. </li>-->
  48. </ul>
  49. <button>确认</button>
  50. </section>
  51. </template>
  52. <script>
  53. import tit from '~/components/titles.vue'
  54. export default {
  55. components: {
  56. tit
  57. },
  58. data() {
  59. return {
  60. name: '前期项目订阅管理'
  61. }
  62. },
  63. methods: {
  64. Subscribe(e) {
  65. this.$router.push({ path: '/bidding/sub?id=20' })
  66. }
  67. }
  68. }
  69. </script>
  70. <style>
  71. </style>