123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="content">
- <button type="primary" @click="addDevice">添加设备</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: "Hello",
- };
- },
- onLoad() {},
- methods: {
- addDevice() {
- uni.navigateTo({
- url: "../addDevice/selectDevice/selectDevice",
- });
- },
- },
- };
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|