李凌
2025-10-09 631dc512b226b346fefaebbedf1ddd79c06cab71
src/views/customerService/index.vue
@@ -22,7 +22,7 @@
          {{ $t('historyMessage') }}
        </div>
        <ul class="flex flex-col pt-3">
          <li v-for="(item, index) in list" :key="item.id" class="flex flex-col my-3">
          <li v-for="(item) in list" :key="item.id" class="flex flex-col my-3">
            <!-- <p class="font-13 text-center py-2 text-grey font-15" v-if="showTime(index)">{{
              item.createtime &&
              item.createtime.split(' ')[0]
@@ -299,10 +299,13 @@
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid $input_background;
    position: absolute;
    left: -10px;
    top: 10px;
    @include themify() {
      border-right: 10px solid themed("input_background");
    }
  }
}
@@ -319,12 +322,15 @@
}
.chatBg {
  background: $input_background;
  height: 36px;
  padding: 8px 18px;
  border-radius: 18px;
  color: $text_color;
  font-size: 14px;
  @include themify() {
    background: themed("input_background") !important;
    color: themed("text_color") !important;
  }
}
.right-chatBg {
@@ -346,6 +352,8 @@
}
.left-chatBg {
  background: $input_background;
  @include themify() {
    background: themed("input_background");
  }
}
</style>