软测宝小程序
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.
keysass_app/pages/shoppingtrolley/shoppingtrolleyold.vue

57 lines
746 B

7 months ago
<template>
<view>
<view class="bureau">
<img src="http://image.bjkeyware.com/static/shopping/shop.png" alt="">
7 months ago
<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>