| 12345678910111213141516171819202122232425262728293031 | <!-- 订单详情 --><template>  <su-video    class="sss"    :uid="guid()"    :src="sheep.$url.cdn(data.videoUrl)"    :poster="sheep.$url.cdn(data.src)"    :height="styles.height"  ></su-video></template><script setup>  import sheep from '@/sheep';  import { guid } from '@/sheep/helper';  const props = defineProps({    data: {      type: Object,      default() {},    },    styles: {      type: Object,      default() {},    },  });</script><style lang="scss" scoped>  .sss {    z-index: -100;  }</style>
 |