processForecast.vue 454 Bytes
<template>
  <div
    style="background:#fff;      border: 1px solid #dcdfe6;"

    :style="{
      height:height>0? height + 'px':'auto',
      width:width>0? `calc(${width}px - 2px)`:'auto',
      'white-space':width>0?'':'nowrap'
    }"
  >
    审批预测需要绑定流程后显示
  </div>
</template>

<script>
export default {
  props: {
    width: {
      default:0
    },
    height: {
      default:0
    }
  },

}
</script>

<style></style>