123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="other-fast-box">
- <view class="other-fast-login">
- <view class="other-fast-wire"></view>
- <view class="other-fast-text sys-color-gray-9">其他登录方式</view>
- <view class="other-fast-wire"></view>
- </view>
- <view class="login-icon">
- <image class="login-icon-img" src="/static/img/login/weixin.png" mode="aspectFill"></image>
- <image class="login-icon-img" src="/static/img/login/apple.png" mode="aspectFill"></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "otherLogin",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .other-fast-box{
- .other-fast-login{
- width:calc(100vw - 160rpx);
- display: flex;
- justify-content: space-between;
- .other-fast-text{
- font-size: 24rpx;
- margin: 0 14rpx;
- height: 45rpx;
- line-height: 45rpx;
- }
- .other-fast-wire{
- margin-top: 22rpx;
- width:calc((100vw - 348rpx) / 2);
- height: 1rpx;
- background-color: #E0E0E0;
- }
- }
- .login-icon {
- padding: 40rpx 156rpx 80rpx 156rpx;
- display: flex;
- justify-content: space-between;
- .login-icon-img {
- width: 88rpx;
- height: 88rpx;
- border-radius: 50%;
- }
- }
- }
- </style>
|