tip.vue 541 B

1234567891011121314151617181920212223242526272829303132333435
  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. export default {
  11. props: {
  12. message: {
  13. type: String,
  14. default: '开启时指定区域不配送时无效'
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .tip {
  21. display: flex;
  22. color: #E93323;
  23. width: 710rpx;
  24. margin: auto;
  25. padding: 21rpx 0 28rpx 0;
  26. font-size: 22rpx;
  27. .iconfont {
  28. font-size: 22rpx;
  29. display: inline-block;
  30. margin-right: 10rpx;
  31. }
  32. }
  33. </style>