jiangchengfeiyi-xiaochengxu/pages/subPack/book/component/customerService.vue

40 lines
758 B
Vue
Raw Normal View History

2025-03-23 10:31:11 +00:00
<template>
<view class="flex-row items-center">
<image
class="shrink-0 image_2"
:src="bookUrl + '/component/lxkf.png'"
/>
<text class="font_2 text_3">在线咨询</text>
<image
class="shrink-0 image_3"
:src="bookUrl + '/component/yjt.png'"
/>
</view>
</template>
<script setup>
2025-04-05 08:12:09 +00:00
import { bookUrl } from '@/common/globalImagesUrl';
2025-03-23 10:31:11 +00:00
</script>
<style scoped lang="scss">
.image_2 {
width: 45rpx;
height: 45rpx;
}
.font_2 {
font-size: 30rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 28.84rpx;
}
.text_3 {
color: #323232;
line-height: 28.13rpx;
}
.image_3 {
margin-left: 3.75rpx;
width: 31.88rpx;
height: 31.88rpx;
}
2025-04-05 08:12:09 +00:00
@import url(../../../../common/css/global.css);
2025-03-23 10:31:11 +00:00
</style>