Bxh.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div class="iframe-main">
  3. <div class="iframe-dom" :style="{height: height }" ></div>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. head(){
  9. return {
  10. link: [
  11. { rel: 'stylesheet', href: '//yun.baoxiaohe.com/openflatform/css/v1.0/sdk.css' },],
  12. }
  13. },
  14. props:{
  15. bxhType:String,
  16. design:Number,
  17. height:{
  18. type: String,
  19. default: '99vh',
  20. },
  21. link:String,
  22. templateArr:{
  23. type: Array,
  24. default: ()=>{
  25. return []
  26. },
  27. }
  28. },
  29. data() {
  30. return {
  31. iframe: null,
  32. }
  33. },
  34. watch:{
  35. },
  36. mounted() {
  37. this.$nextTick(()=>{
  38. this.createBxh()
  39. });
  40. window.addEventListener("message", this.receiveData)
  41. },
  42. beforeDestroy() {
  43. window.removeEventListener("message", this.receiveData)
  44. },
  45. methods: {
  46. async createBxh() {
  47. if(this.bxhType=='3D'){
  48. let companyToken = await this.$axios.get("/api/bxh/company/token")
  49. let design=this.design || this.link
  50. this.init(design,companyToken.result,this.bxhType)
  51. }else if(this.bxhType=='design'){
  52. let token = await this.$axios.get("/api/bxh/token")
  53. this.init(this.design,token.result,this.bxhType)
  54. }else if(this.bxhType=='render'){
  55. let token = await this.$axios.get("/api/bxh/token")
  56. this.init(this.design,token.result,this.bxhType)
  57. }
  58. },
  59. init(id,token,bxhType) {
  60. this.iframe = new window.BXHIframe({
  61. // production: false,
  62. // env:true,
  63. elCls:'iframe-dom',
  64. prefixCls:'detail-iframe-sdk',
  65. locale:"en-US",
  66. params: {
  67. id,
  68. token3D:token,
  69. token,
  70. project_id: id,
  71. isShowRotate:false, //右下角的旋转按钮
  72. isShowFold:false, //右下角的折叠按钮
  73. locale:"en-US"
  74. },
  75. name: bxhType,
  76. })
  77. },
  78. receiveData(event) {
  79. if (event) {
  80. try {
  81. if (typeof event.data === "string") {
  82. const { event: e, name, params,preDesignParams } = JSON.parse(
  83. event.data
  84. )
  85. if (e === "needLogin") {
  86. this.iframe.preDesign({...preDesignParams,token: ''})
  87. } else if (e === "viewDetails") {
  88. this.iframe.render({ name, params })
  89. }else if (e === "viewDetails") {
  90. this.iframe.render({ name, params })
  91. } else if (e === "startDesign") {
  92. this.iframe.render({ params: { id: params.id, token: '' }, name: "design" })
  93. } else if (e === "logoutSuccess") {
  94. console.log("logoutSuccess")
  95. } else if (e === "reloadParams") {
  96. console.log("reloadParams")
  97. } else if (e === "saveSuccess") {
  98. console.log("saveSuccess")
  99. } else if (e === "saveFail") {
  100. console.log("saveFail")
  101. } else if (e === "loadSuccess") {
  102. console.log("loadSuccess")
  103. } else if (e === "toPreview3d") {
  104. console.log("手机端编辑器进入3d页面回调")
  105. } else if (e === "toEditor") {
  106. console.log("手机端从3d页面进入编辑器回调")
  107. }
  108. }
  109. } catch (error) {
  110. console.log(error)
  111. }
  112. }
  113. },
  114. },
  115. }
  116. </script>
  117. <style scoped>
  118. /* .iframe-main {
  119. width: 100%;
  120. height: 100%;
  121. } */
  122. .iframe-dom {
  123. position: relative;
  124. }
  125. </style>