研发图纸文件管理系统-前端项目
he wei
2024-01-12 36704dbc78007ca051633aa015c1094de3a2630a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<template>
  <div class="">
    <table class="table">
      <tbody>
        <tr>
          <th class="title" colspan="6">文件基本信息</th>
        </tr>
        <tr>
          <th class="col-1">文件名称</th>
          <td colspan="5">{{ info.fileName }}</td>
        </tr>
        <tr>
          <th class="col-1">软件类型</th>
          <td colspan="5">{{ info.type }}</td>
        </tr>
        <tr>
          <th class="col-1">文件版本</th>
          <td colspan="1">{{ info.version }}</td>
          <th class="col-1">基于版本</th>
          <td colspan="3">{{ info.basedVersion }}</td>
        </tr>
        <tr>
          <th class="col-1">负责人</th>
          <td colspan="1">{{ info.owner }}</td>
          <th class="col-1">归档日期</th>
          <td colspan="3">{{ info.filingDate }}</td>
        </tr>
        <tr>
          <th class="title" colspan="6">规格书适用机型</th>
        </tr>
        <tr >
          <th class="col-1">物料编码</th>
          <td colspan="1">{{ info.applyMaterialCode }}</td>
          <th class="col-1">规格型号</th>
          <td colspan="1">{{ info.applyModel }}</td>
          <th class="col-1">定制单号</th>
          <td colspan="1">{{ info.applyCustomCode }}</td>
        </tr>
        <tr>
          <th class="col-1">发布说明</th>
          <td colspan="5">{{ info.releaseNotes }}</td>
        </tr>
      </tbody>
    </table>
  </div>
</template>
 
<script>
export default {
  name: "",
  props: {
    info: {
      type: Object,
      default() {
        return {};
      },
    },
  },
  data() {
    return {
    };
  },
  computed: {
  },
  watch: {
  },
  methods: {
  },
 
  mounted() {
  },
};
</script>
 
<style lang="less" scoped>
.table {
  width: 100%;
  // table-layout: fixed;
  border-collapse: collapse;
  th,
  td {
    border: 1px #fff solid;
    padding: 4px;
  }
  td {
    color: #fff;
  }
  .title {
    font-weight: 900;
    padding-left: 2em;
    font-style: italic;
  }
}
.col-1 {
  // word-break:break-all;
  width: 6.4em;
}
</style>