detail.vue 2.37 KB
<template>
  <div class="detail_container">
    <NafmHeader navClass="nafmii-head-bg3" title="资质查询" />
    <section class="detail_content">
      <van-cell-group class="">
        <van-cell>
          <span slot="title" class="detail_title">{{qulificationDetail.name}}</span>
          <span class="org_type">机构类型:{{qulificationDetail.orgType}}</span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">是否会员</span>
          <span class="info"></span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">会籍类别</span>
          <span class="info">{{qulificationDetail.memberType}}</span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">主承销商类型</span>
          <span class="info">{{qulificationDetail.memberType}}</span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">做市商</span>
          <span class="info">{{qulificationDetail.memberType}}</span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">信用风险缓释工具</span>
          <span class="info">{{qulificationDetail.memberType}}</span>
        </van-cell>
        <van-cell>
          <span slot="title" class="label">已签署备案主协议</span>
          <span class="info">
            <div class="master_agreement" @click="toMasterAgreement">《NAFMII主协议》</div>
            {{qulificationDetail.memberType}}
          </span>
        </van-cell>
      </van-cell-group>
    </section>
  </div>
</template>
<script>
export default {
  name: 'QulificationDetail',
  data() {
    return {
      qulificationDetail: {
        name: '中国银行诏安支行',
        orgType: 'XXXX',
        isMember: true,
        memberType: '投资人',

      }
    }
  },
  methods: {
    toMasterAgreement() {
      this.$router.push({name: 'MasterAgreement'})
    }
  }
}
</script>
<style lang="less" scoped>
.detail_content {
  .detail_title {
    font-size: 16px;
    color: #222222;
    font-family: PingFangSC-Semibold;
    border-left: 2.5px solid #135faa;
    padding-left: 5px;
  }
  .org_type {
    color: #999999;
    font-size: 14px;
  }
  .label {
    font-size: 14px;
    color: #161818;
  }
  .info {
    font-size: 14px;
    color: #666666;
  }
  .master_agreement {
    color: #245fae;
    text-decoration: underline;
  }
}
</style>