detail.vue 633 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="container">
  3. <cu-custom id="custom"
  4. bgImage="https://yostest175549.obs.cn-east-2.myhuaweicloud.com:443/202306151686796745663B52544232.png"
  5. :isBack="true">
  6. <block slot="backText">返回</block>
  7. <block slot="content">
  8. 设备详情
  9. </block>
  10. </cu-custom>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. components: {},
  16. name: "facilityD",
  17. data() {
  18. return {
  19. }
  20. },
  21. onLoad(options) {
  22. console.log(options)
  23. },
  24. methods: {}
  25. }
  26. </script>
  27. <style lang="scss" scoped></style>