workerManInfowindow.vue 591 Bytes
Newer Older
纪泽龙's avatar
纪泽龙 committed
1 2
<template>
  <div class="wrapper">
纪泽龙's avatar
纪泽龙 committed
3
    <span class="left">高雄高雄:</span>
纪泽龙's avatar
纪泽龙 committed
4 5 6 7 8 9 10 11 12 13
    <span class="right">2019-99-99 15:21:21</span>
  </div>
</template>

<script>
export default {};
</script>

<style  lang="scss" scoped>
.wrapper{
纪泽龙's avatar
纪泽龙 committed
14
  width: 166px;
纪泽龙's avatar
纪泽龙 committed
15 16 17 18 19
  height: 54px;
  background: #0D4F88;
  font-size: 14px;
  color:#fff;
  box-sizing: border-box;
纪泽龙's avatar
纪泽龙 committed
20
  padding:7px 0px 7px 8px;
纪泽龙's avatar
纪泽龙 committed
21 22 23 24 25 26 27 28
  box-shadow: 0 0 20px -5px #0D4F88;
  border-radius: 4px;
  span{
    word-break: break-all;
    display: inline-block;
    vertical-align: top;
    &.right{
      width:90px;
纪泽龙's avatar
纪泽龙 committed
29
      padding-left:4px;
纪泽龙's avatar
纪泽龙 committed
30 31 32 33
    }
  }
}
</style>