123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="call-box">
- <view class="call-icon">
- <image class="call-img" src="/static/img/circle/Group-100243@2x.png" mode="aspectFill"></image>
- </view>
- <view class="call-text sys-weight-600 sys-color-black">打招呼</view>
- </view>
- </template>
- <script>
- export default {
- name: "call",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .call-box{
- height: 40rpx;
- border-radius: 200rpx;
- border: 2rpx solid #141414;
- padding: 4rpx 16rpx;
- display: flex;
- justify-content: space-between;
- .call-img{
- width: 40rpx;
- height: 40rpx;
- margin-right: 8rpx;
- }
- .call-text{
- font-size: 28rpx;
- line-height: 40rpx;
- }
- }
- </style>
|