detail.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div id="fabuList">
  3. <el-row>
  4. <el-col :span="24" class="info">
  5. <el-col :span="24" class="one">
  6. <span></span>
  7. <span>需求发布</span>
  8. </el-col>
  9. <el-col :span="24">
  10. <el-col :span="24" class="title"> 需求技术名称: {{ form.name }} </el-col>
  11. <el-col :span="24" class="title"> 所属领域: {{ form.field }} </el-col>
  12. <el-col :span="24" class="title"> 拟投入预算(万): {{ form.budget }} </el-col>
  13. <el-col :span="24" class="title"> 需求截止日期: {{ form.enddate }} </el-col>
  14. <el-col :span="24" class="title"> 难题或瓶颈问题: {{ form.problem }} </el-col>
  15. <el-col :span="24" class="title"> 企业解决技术需求已具备的条件: {{ form.condition }} </el-col>
  16. <el-col :span="24" class="title"> 合作方式: {{ form.type }} </el-col>
  17. </el-col>
  18. </el-col>
  19. </el-row>
  20. </div>
  21. </template>
  22. <script>
  23. import { mapState, createNamespacedHelpers } from 'vuex';
  24. export default {
  25. name: 'fabuList',
  26. props: { form: null },
  27. components: {},
  28. data: function() {
  29. return {};
  30. },
  31. created() {},
  32. methods: {},
  33. computed: {
  34. ...mapState(['user']),
  35. pageTitle() {
  36. return `${this.$route.meta.title}`;
  37. },
  38. },
  39. metaInfo() {
  40. return { title: this.$route.meta.title };
  41. },
  42. };
  43. </script>
  44. <style lang="less" scoped>
  45. .info {
  46. width: 100%;
  47. min-height: 600px;
  48. background: #fff;
  49. padding: 0 20px;
  50. .one {
  51. height: 35px;
  52. margin: 20px 0;
  53. border-bottom: 1px dashed #ccc;
  54. span:first-child {
  55. display: inline-block;
  56. width: 4px;
  57. height: 20px;
  58. background: #005293;
  59. margin: 0 10px -3px 0;
  60. }
  61. span:nth-child(2) {
  62. font-size: 20px;
  63. color: #005293;
  64. font-weight: bold;
  65. }
  66. }
  67. }
  68. .title {
  69. padding: 15px 10px 15px 10px;
  70. }
  71. </style>