value-change-detail.vue 591 Bytes
Newer Older
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
<template>
  <div class="value-change-detail">
    <div class="value-block">{{value.oldDesc || 'null'}}</div>
    <div class="arrow"><Icon type="md-arrow-round-forward" /></div>
    <div class="value-block">{{value.newDesc || 'null'}}</div>
  </div>
</template>

<script>
export default {
  props: {
    value: {
      default: () => ({}),
      type: Object,
    },
  }
}
</script>

<style lang="less" scoped>
.value-change-detail {
  display: flex;
  .value-block {
    width: 45%;
  }
  .arrow {
    width: 10%;
    height: 100%;
    align-self: center;
    color: #0DA2E6;
  }
}
</style>