index.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="edit_message_container">
  3. <view class="edit_message_container_left">
  4. <u-icon class="edit_message_container_left_icon"></u-icon>
  5. <text class="edit_message_container_left_text">正在编辑...</text>
  6. </view>
  7. <view class="edit_message_container_right">
  8. <u-icon
  9. @click="$emit('onShowEditMessageContainer')"
  10. class="edit_message_container_right_icon"
  11. name="/static/images/new_ui/message/replyMessage/close_icon.png"
  12. ></u-icon>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {};
  18. </script>
  19. <style scoped>
  20. .edit_message_container {
  21. width: 100%;
  22. height: 30px;
  23. background-color: #eff0f1;
  24. box-sizing: border-box;
  25. padding: 0 8px;
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. justify-content: space-between;
  30. }
  31. .edit_message_container_left_text {
  32. /* Nickname */
  33. width: 36px;
  34. height: 16px;
  35. /* 简体中文/标签/小 */
  36. font-family: 'PingFang SC';
  37. font-style: normal;
  38. font-weight: 400;
  39. font-size: 12px;
  40. line-height: 16px;
  41. /* identical to box height, or 133% */
  42. /* Neutral Special/5 */
  43. color: #5270ad;
  44. /* Inside auto layout */
  45. flex: none;
  46. order: 1;
  47. flex-grow: 0;
  48. }
  49. </style>