incomeItem.vue 2.21 KB
<template functional>
  <div class="assets-record-container">
  <div class='assets-record-info-detail-view'>
    <div class='assets-record-left-view'>
      <div class='assets-record-middle-view'>
        <span class='assets-record-code-txt'>{{props.data.productName}}<span class="size">(尺码:{{props.data.sizeName}})</span></span>
        <span class='assets-record-time-txt'>{{props.data.time}}</span>
      </div>
    </div>
    <div class='assets-record-right-view'>
      <span class='assets-record-income-txt'>{{props.data.price}}</span>
      <span class='assets-record-income-tip-txt'>{{props.data.normalFlag ? '' : '打款失败'}}</span>
      <span class='assets-record-income-desc'>{{props.data.tradeTypeDesc}}</span>
    </div>
  </div>
  </div>
</template>

<style lang="scss" scoped>
  .assets-record-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: solid 1px #E0E0E0;
}

.assets-record-info-detail-view {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 160px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.assets-record-left-view {
  display: flex;
  flex-direction: row;
  align-items: center;

}
.assets-record-middle-view {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.assets-record-right-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.assets-record-image-style {
  width: 48px;
  height: 48px;
}
.assets-record-code-txt {
  font-family: PingFang-SC-Regular;
  font-size: 28px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.size {
  display: inline-block;
}
.assets-record-time-txt {
  font-family: SFProText-Regular;
  font-size: 22px;
  color: #999999;
  margin-top: 12px;
}
.assets-record-income-txt {
  font-family: SFProText-Medium;
  font-weight: bold;
  font-size: 28px;
  color: #65AB85;
}
.assets-record-income-tip-txt {
  font-family: PingFang-SC-Regular;
  font-size: 20px;
  color: #D0021B;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.assets-record-income-desc {
  color: #999;
  font-size: 22px;
}
</style>