tearoom/page_fenbaotwo/cunganimg.vue
2025-01-02 18:04:30 +08:00

70 lines
1.2 KiB
Vue

<template>
<view class="page">
<u-navbar title="存取杆" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='50' id="navbar">
</u-navbar>
<view class="view">
<image src="https://api.ccttiot.com/smartmeter/img/static/u2djj8Fadz3RfygG4vCP" mode=""></image>
</view>
<view class="anniu" @click="btnsm">
扫码租柜
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
}
},
onLoad() {
},
methods: {
// 点击扫码进行租柜
btnsm(){
uni.navigateTo({
url:'/page_fenbaotwo/cunxuan'
})
}
}
}
</script>
<style lang="scss">
/deep/ .u-iconfont,
/deep/ .u-title{
padding-bottom: 20rpx;
}
.anniu{
width: 674rpx;
height: 96rpx;
background: #48893B;
border-radius: 53rpx 53rpx 53rpx 53rpx;
font-size: 40rpx;
color: #FFFFFF;
text-align: center;
line-height: 96rpx;
margin: auto;
margin-top: 114rpx;
}
.view{
width: 674rpx;
height: 934rpx;
margin: auto;
margin-top: 40rpx;
}
image{
width: 674rpx;
height: 934rpx;
}
page {
background: #F6F6F6;
}
</style>