50 lines
830 B
Vue
50 lines
830 B
Vue
<template>
|
|
<view>
|
|
<view class="progress">
|
|
<image src="@/static/image/procress.svg" mode=""></image>
|
|
</view>
|
|
<view class="telphone">
|
|
<text class="iconfont icon-Vector-1"></text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"bottoms",
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.progress{
|
|
margin-top: 89rpx;
|
|
padding-right: 30rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
image{
|
|
width: 575rpx;
|
|
height: 93rpx;
|
|
}
|
|
}
|
|
.telphone{
|
|
position: fixed;
|
|
right: 30rpx;
|
|
bottom: 95rpx;
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
border-radius: 50%;
|
|
background-color: #3887FD;
|
|
text-align: center;
|
|
line-height: 130rpx;
|
|
box-shadow: 0 6rpx 26rpx 10rpx #0a2a9b1f;
|
|
.icon-Vector-1{
|
|
color: #fff;
|
|
font-size: 50rpx;
|
|
}
|
|
}
|
|
</style> |