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.
40 lines
843 B
40 lines
843 B
![]()
2 years ago
|
<template>
|
||
|
<view class="p15 bc-f5">
|
||
|
<view class="br8 bc-fff p15lr">
|
||
|
<view class="flex ai-c bb1" style="height: 110rpx;">
|
||
|
<view class="title">联系电话</view>
|
||
|
<view class="m30lr fs14 cor-333 fl1">15122305568</view>
|
||
|
<u-icon name="arrow-right" color="#999" />
|
||
|
</view>
|
||
|
<view class="flex ai-c" style="height: 110rpx;">
|
||
|
<view class="title">地址</view>
|
||
|
<view class="m30lr fs14 cor-333 fl1">安徽省合肥市包河区</view>
|
||
|
<u-icon name="arrow-right" color="#999" />
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.title {
|
||
|
width: 120rpx;
|
||
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
}
|
||
|
.bb1 {
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
</style>
|