38 lines
461 B
Vue
38 lines
461 B
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' height='45'></u-navbar>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: '#fff'
|
|
},
|
|
sn:'',
|
|
istrue:false
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" >
|
|
page{
|
|
background-color: #fff;
|
|
}
|
|
.page{
|
|
width: 750rpx;
|
|
|
|
|
|
|
|
}
|
|
</style>
|