| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <view class="safe-area-inset-bottom">
- <view class="card" v-for="(item,index) in 8" :key="index">
- <view class="item">
- <view class="left">
- <view class="tag bg-red">
- <text>麦</text>
- </view>
- <view class="content">
- <text class="text-cut-1">麦草方格(宁夏)文化传媒有限公司</text>
- <text class="text-cut-1">德锐斯园区A区</text>
- </view>
- </view>
- <view class="right">
- <image src="../../static/index/call.png" mode=""></image>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .card{
- position: relative;
- background-color: #FFFFFF;
- padding: 35rpx;
- margin: 20rpx;
-
- .item{
- display: flex;
- justify-content: space-between;
- }
-
- .left{
- display: flex;
- width: 88%;
-
- .tag{
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 80rpx;
- width: 80rpx;
- font-size: 32rpx;
- }
-
- .content{
- padding-left: 30rpx;
- display: flex;
- flex-direction: column;
-
- text:first-child{
- font-size: 32rpx;
- }
-
- text:last-child{
- font-size: 28rpx;
- color: #9f9f9f;
- padding-top: 15rpx;
- }
- }
- }
-
- .right{
- display: flex;
- justify-content: center;
- align-items: center;
-
- image{
- width: 50rpx;
- height: 50rpx;
- }
- }
-
- }
- </style>
|