tip.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="tip">
  3. <view>
  4. <span class="iconfont">&#xe78b;</span>
  5. </view>
  6. <view>{{message}}</view>
  7. </view>
  8. </template>
  9. <script>
  10. // +----------------------------------------------------------------------
  11. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  12. // +----------------------------------------------------------------------
  13. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  14. // +----------------------------------------------------------------------
  15. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  16. // +----------------------------------------------------------------------
  17. // | Author: CRMEB Team <admin@crmeb.com>
  18. // +----------------------------------------------------------------------
  19. export default {
  20. props: {
  21. message: {
  22. type: String,
  23. default: '开启时指定区域不配送时无效'
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .tip {
  30. display: flex;
  31. color: #E93323;
  32. width: 710rpx;
  33. margin: auto;
  34. padding: 21rpx 0 28rpx 0;
  35. font-size: 22rpx;
  36. .iconfont {
  37. font-size: 22rpx;
  38. display: inline-block;
  39. margin-right: 10rpx;
  40. }
  41. }
  42. </style>