blankPage.vue 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view v-show="!isSortType">
  3. <view class="blankPage" :style="'height:'+ heightConfig*2 +'rpx;'" v-if="heightConfig>0">
  4. <view class="bankCon" :style="'background-color:'+ bgColor +';'"></view>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'blankPage',
  11. props: {
  12. dataConfig: {
  13. type: Object,
  14. default: () => {}
  15. },
  16. isSortType:{
  17. type: String | Number,
  18. default:0
  19. }
  20. },
  21. data() {
  22. return {
  23. bgColor:this.dataConfig.bgColor.color[0].item,
  24. heightConfig:this.dataConfig.heightConfig.val
  25. };
  26. },
  27. created() {},
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .blankPage{
  34. .bankCon{
  35. width: 100%;
  36. height: 100%;
  37. background-color: blue;
  38. }
  39. }
  40. </style>