sub.vue 1.4 KB

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