You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
625 B
37 lines
625 B
<template>
|
|
<view class="content">
|
|
<headerTopsTips></headerTopsTips>
|
|
<uni-nav-bar left-icon="left" title="如何开锁" backgroundColor="#e6eafa" />
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import headerTopsTips from '@/pages/components/header_tops_tips.vue'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
background: #fff;
|
|
height: 100vh;
|
|
}
|
|
|
|
.t_1 {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
color: #787878;
|
|
}
|
|
|
|
.tops_per {
|
|
height: 260rpx;
|
|
background: #fff;
|
|
padding: 20rpx 0;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
border-top: 1px solid #787878;
|
|
}
|
|
|
|
.btn_s {
|
|
padding: 20rpx 30rpx;
|
|
}
|
|
</style> |