hejianhao
2025-04-16 dab2d210ca06c1faa514c6388fbd5de1ab355360
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
99
100
101
102
103
104
<template>
  <div class="box">
    <v-header title="组织详情"></v-header>
    <div class="main-box">
      <div class="main-head">基本资料</div>
      <div class="main">
        <div class="main-list">组织名称:{{ item.name }}</div>
        <div class="main-list">统一社会信用代码:{{ item.agencyCode }}</div>
        <div class="main-list">成立时间:{{ item.buildDate }}</div>
        <div class="main-list">
          组织类型:{{
            ["", "社会团体", "民办非企业单位", "基金会"][item.companyType]
          }}
        </div>
        <div class="main-list">法定代表人:{{ item.corporationName }}</div>
        <div class="main-list">联系人:{{ item.contactName }}</div>
        <div class="main-list">平台账号:{{ item.account }}</div>
        <div class="main-list">业务范围:{{ item.businessScope }}</div>
        <div class="main-list">平台账号:{{ item.account }}</div>
      </div>
    </div>
    <div style="margin-top: 50px">
      <el-button size="mini" @click="backHandle">返回</el-button>
    </div>
  </div>
</template>
<script>
export default {
  props: [],
  components: {},
  data() {
    return {
      item: {},
    };
  },
  created() {
    if (this.$route.query.row) {
      this.init(this.$route.query.row);
    }
  },
  mounted() {},
  methods: {
    init(row) {
      this.item = JSON.parse(row);
    },
    backHandle() {
      this.$router.back();
    },
  },
  watch: {},
  computed: {},
};
</script>
<style scoped lang='less'>
.box {
  overflow: scroll;
}
.main-box {
  width: 1000px;
  /*color: #B1B1B1;*/
  margin-top: 20px;
  font-size: 13px;
  .main-head {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
  }
  .main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    .card {
      width: 196px;
      height: 152px;
      border-radius: 5px;
      box-shadow: 1px 1px 5px #17171759;
      margin: 5px;
      .card-title {
        padding: 20px;
      }
      .card-cont {
        font-weight: bold;
        font-size: 30px;
        text-align: center;
      }
    }
    .text-cont {
      width: 100%;
      padding-top: 10px;
      line-height: 25px;
    }
    .image {
      margin: 5px;
      width: 100px;
      height: 100px;
      background: #1bd3af;
    }
    .main-list {
      margin: 5px 0;
      width: 300px;
    }
  }
}
</style>