Files
Hfive/pages/index/merchant.vue
2024-05-08 19:37:19 +08:00

72 lines
1.5 KiB
Vue

<template>
<view class="content">
<view class="contentitem">
<view class="contentitemone flex-between">
<view class="contentitem_o">
西安国强有限公司
</view>
<u-icon name="arrow-right" color="#999999" size="14"></u-icon>
</view>
<view class="contentitemtow">
陕西省西安市五路口A口600m
</view>
</view>
<view class="contentitem">
<view class="contentitemone flex-between">
<view class="contentitem_o">
西安国强有限公司
</view>
<u-icon name="arrow-right" color="#999999" size="14"></u-icon>
</view>
<view class="contentitemtow">
陕西省西安市五路口A口600m
</view>
</view>
</view>
</template>
<script>
export default {
components: {},
data() {
return {
};
},
onLoad(e) {},
onShow() {},
methods: {}
};
</script>
<style lang="scss">
page {
background: #F9F9F9;
}
.content {
padding: 32rpx 28rpx;
.contentitem{
background: #FFFFFF;
padding: 32rpx 24rpx 0rpx 24rpx;
border-radius: 18rpx 18rpx 0 0;
width: 100%;
.contentitemone{
.contentitem_o{
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
font-size: 32rpx;
color: #333333;
}
}
.contentitemtow{
padding-bottom: 32rpx;
margin-top: 16rpx;
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
font-size: 24rpx;
color: #999999;
border-bottom: 2rpx solid #E5E5E5;
}
}
}
</style>