123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div id="fabuList">
- <el-row>
- <el-col :span="24" class="info">
- <el-col :span="24" class="one">
- <span></span>
- <span>需求发布</span>
- </el-col>
- <el-col :span="24">
- <el-col :span="24" class="title"> 需求技术名称: {{ form.name }} </el-col>
- <el-col :span="24" class="title"> 所属领域: {{ form.field }} </el-col>
- <el-col :span="24" class="title"> 拟投入预算(万): {{ form.budget }} </el-col>
- <el-col :span="24" class="title"> 需求截止日期: {{ form.enddate }} </el-col>
- <el-col :span="24" class="title"> 难题或瓶颈问题: {{ form.problem }} </el-col>
- <el-col :span="24" class="title"> 企业解决技术需求已具备的条件: {{ form.condition }} </el-col>
- <el-col :span="24" class="title"> 合作方式: {{ form.type }} </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'fabuList',
- props: { form: null },
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- .info {
- width: 100%;
- min-height: 600px;
- background: #fff;
- padding: 0 20px;
- .one {
- height: 35px;
- margin: 20px 0;
- border-bottom: 1px dashed #ccc;
- span:first-child {
- display: inline-block;
- width: 4px;
- height: 20px;
- background: #005293;
- margin: 0 10px -3px 0;
- }
- span:nth-child(2) {
- font-size: 20px;
- color: #005293;
- font-weight: bold;
- }
- }
- }
- .title {
- padding: 15px 10px 15px 10px;
- }
- </style>
|