custom-nodata.vue 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="nodata">
  3. <!-- <image src="../../static/images/order.png" class="orderIcon"></image> -->
  4. <text class="notice">{{notice}}</text>
  5. <!-- <text class="cp">贵州省单株碳汇精准扶贫平台</text> -->
  6. </view>
  7. </template>
  8. <script>
  9. export default{
  10. name:'custom-nodata',
  11. props:{
  12. notice:{
  13. type:String,
  14. default:'暂无数据'
  15. }
  16. },
  17. data(){
  18. return {
  19. ntxt:''
  20. }
  21. },
  22. watch:{
  23. notice(n,o){
  24. this.ntxt = n;
  25. }
  26. }
  27. }
  28. </script>
  29. <style>
  30. .nodata{
  31. width:560rpx;
  32. margin:0 auto;
  33. padding:250rpx 0;
  34. text-align:center;
  35. }
  36. .nodata .orderIcon{
  37. width:374rpx;
  38. height:288rpx;
  39. margin:20rpx 0 0rpx 0;
  40. }
  41. .nodata text{
  42. display:block;
  43. }
  44. .nodata .notice{
  45. margin-bottom:15rpx;
  46. font-size:36rpx;
  47. font-weight:400;
  48. color:rgba(51,51,51,1);
  49. }
  50. .nodata .cp{
  51. font-size:26rpx;
  52. font-weight:400;
  53. color:rgba(153,153,153,1);
  54. }
  55. </style>