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.
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
|
|
|
|
<view class="bureau">
|
|
|
|
<img src="http://image.bjkeyware.com/static/shopping/shop.png" alt="">
|
|
|
|
<p>购物车竟然是空的</p>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
uni.login({
|
|
|
|
success(res) {
|
|
|
|
console.log(res);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.contendt{
|
|
|
|
width:100vw;
|
|
|
|
padding: 13px;
|
|
|
|
/* margin:16px 5vw 20px 5vw; */
|
|
|
|
}
|
|
|
|
.bureau{
|
|
|
|
width: 49%;
|
|
|
|
/* height: 210rpx; */
|
|
|
|
border-radius: 10rpx;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px 5px;
|
|
|
|
margin: 23vh auto;
|
|
|
|
}
|
|
|
|
.bureau img{
|
|
|
|
width:28vw;
|
|
|
|
height:28vw;
|
|
|
|
margin:10px auto;
|
|
|
|
}
|
|
|
|
.bureau p{
|
|
|
|
font-size:30rpx;
|
|
|
|
color: #969494;
|
|
|
|
margin:10px 0 15px 0px
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|