普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
926 B

  1. <template>
  2. <view class="flex card">
  3. <view class="flex label">
  4. <image class="icon" src="/pages_order/static/center/icon-wx.png" mode="scaleToFill"></image>
  5. <view>官方微信公众号</view>
  6. </view>
  7. <button class="flex btn">
  8. <text class="btn-text">即刻关注</text>
  9. <uv-icon name="arrow-right" color="#C6C6C6" size="24rpx"></uv-icon>
  10. </button>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. @import './styles/card.scss';
  19. .card {
  20. padding: 24rpx 32rpx;
  21. justify-content: space-between;
  22. }
  23. .icon {
  24. width: 64rpx;
  25. height: 64rpx;
  26. }
  27. .label {
  28. column-gap: 16rpx;
  29. font-family: PingFang SC;
  30. font-weight: 400;
  31. font-size: 28rpx;
  32. line-height: 1;
  33. color: #252545;
  34. }
  35. .btn {
  36. font-family: PingFang SC;
  37. font-size: 24rpx;
  38. font-weight: 400;
  39. line-height: 1.4;
  40. color: #A8A8A8;
  41. &-text {
  42. margin-right: 4rpx;
  43. }
  44. }
  45. </style>