智慧保安APP验收版本
zengh
2021-12-06 886a9f2deb311453f12cb0302bcb882a9d331d7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
    <view class="container">
        <u-navbar :is-fixed="false" :border-bottom="false" :is-back="true" back-icon-name="arrow-leftward"
            back-icon-size="35" :background="{ background: '#fff' }" title="设置" title-color="#000">
        </u-navbar>
        <view class="u-demo">
            <view class="u-demo-wrap">
                <view class="u-demo-title">很快到来</view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                data: {}
            };
        },
    }
</script>