| 1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="container">
- <cu-custom id="custom"
- bgImage="https://yostest175549.obs.cn-east-2.myhuaweicloud.com:443/202306151686796745663B52544232.png"
- :isBack="true">
- <block slot="backText">返回</block>
- <block slot="content">
- 设备详情
- </block>
- </cu-custom>
- </view>
- </template>
- <script>
- export default {
- components: {},
- name: "facilityD",
- data() {
- return {
- }
- },
- onLoad(options) {
- console.log(options)
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped></style>
|