You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
Vue
67 lines
1.4 KiB
Vue
<template>
|
|
<view class="shopDeatilCard">
|
|
<view class="left">
|
|
<view class="top">
|
|
<view class="shopName">店铺名称</view>
|
|
<view class="bodyName">公司名称</view>
|
|
</view>
|
|
<view class="bottom">提交申请后由对应云拣仓负责人进行审核</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="rightText">正在申请</view>
|
|
<image class="rightIamge" src="https://wx4.sinaimg.cn/large/006joT8tgy1hs17gom6tnj30k00k0q4l.jpg"></image>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.shopDeatilCard{
|
|
width: 678rpx;
|
|
height: 220rpx;
|
|
background-size: 100% 100%;
|
|
background-image: url("https://files.hecrab.com/crab-net/yxs-cloudStore-shopDetialCard-bg1.png");
|
|
display: flex;
|
|
.left{
|
|
flex: 1;
|
|
padding: 24rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
.shopName{
|
|
font-weight: 600;
|
|
font-size: 40rpx;
|
|
color: #000000;
|
|
}
|
|
.bodyName{
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
color: #606266;
|
|
}
|
|
.bottom{
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
}
|
|
}
|
|
.right{
|
|
.rightText{
|
|
margin-top: 16rpx;
|
|
padding-left: 46rpx;
|
|
right: 0;
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
.rightIamge{
|
|
margin:28rpx;
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
background: #E7E7E7;
|
|
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |