list.vue 1.55 KB
<template>
  <div class="change_list">
    <NafmHeader navClass="nafmii-head-bg3" title="变更" />
    <section class="name list_item">
      <div class="item_info">
        <span>单位名称变更</span>
        <van-icon name="arrow" />
      </div>
    </section>
    <section class="represent list_item">
      <div class="item_info">
        <span>单位代表变更</span>
        <van-icon name="arrow" />
      </div>
    </section>
    <section class="type list_item">
      <div class="item_info">
        <span>会籍类别变更</span>
        <van-icon name="arrow" />
      </div>
    </section>
  </div>
</template>
<script>
export default {
  data() {
    return {

    }
  }
}
</script>
<style lang="less" scoped>
.change_list {
  padding: 20px;
  .list_item {
    display: flex;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    &.name {
      background: url("../../../../assets/icon/change_name.png") no-repeat;
      background-size: contain;
    }
    &.represent {
      background: url("../../../../assets/icon/change_representive.png")
        no-repeat;
      background-size: contain;
    }
    &.type {
      background: url("../../../../assets/icon/change_membership.png") no-repeat;
      background-size: contain;
    }
    .item_info {
      line-height: 66px;
      margin: 17px auto;
      display: flex;
      align-items: center;
      color: #ffffff;
      font-size: 18px;
      span {
        font-family: PingFangSC-Semibold;
        margin-right: 20px;
      }
      .van-icon {
        font-size: 12px;
      }
    }
  }
}
</style>