call.vue 780 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="call-box">
  3. <view class="call-icon">
  4. <image class="call-img" src="/static/img/circle/Group-100243@2x.png" mode="aspectFill"></image>
  5. </view>
  6. <view class="call-text sys-weight-600 sys-color-black">打招呼</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: "call",
  12. components: {},
  13. props: {},
  14. data() {
  15. return {}
  16. },
  17. watch: {},
  18. mounted() {
  19. },
  20. methods: {}
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .call-box{
  25. height: 40rpx;
  26. border-radius: 200rpx;
  27. border: 2rpx solid #141414;
  28. padding: 4rpx 16rpx;
  29. display: flex;
  30. justify-content: space-between;
  31. .call-img{
  32. width: 40rpx;
  33. height: 40rpx;
  34. margin-right: 8rpx;
  35. }
  36. .call-text{
  37. font-size: 28rpx;
  38. line-height: 40rpx;
  39. }
  40. }
  41. </style>