|
@@ -23,6 +23,7 @@
|
|
|
class="path" hover-class="navigator-hover">用户服务协议和隐私政策</navigator>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <login-pop-up ref='loginpopup' :content='"手机登录后才能查看我的哦~"'></login-pop-up>
|
|
|
<u-modal :show="showAuthorizeUser" :showConfirmButton="false">
|
|
|
<view class="slot-content">
|
|
|
<view class="auth-card">
|
|
@@ -63,11 +64,15 @@
|
|
|
|
|
|
<script>
|
|
|
var that
|
|
|
+ import loginPopUp from "@/components/loginPopUp/index.vue"
|
|
|
import {
|
|
|
pathToBase64,
|
|
|
base64ToPath
|
|
|
} from 'image-tools'
|
|
|
export default {
|
|
|
+ components: {
|
|
|
+ loginPopUp
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
userInfo: {
|
|
@@ -129,7 +134,8 @@
|
|
|
console.log(that.userInfo,1111)
|
|
|
that.userInfo.phone = await this.$request.getPhone(e, that.userInfo)
|
|
|
console.log(that.userInfo,2222)
|
|
|
- this.showAuthorizeUser = true
|
|
|
+ this.$refs.loginpopup.useropen(that.userInfo)
|
|
|
+ // this.showAuthorizeUser = true
|
|
|
},
|
|
|
custom(){
|
|
|
uni.showToast({
|
|
@@ -182,57 +188,6 @@
|
|
|
/deep/.u-radio-group{
|
|
|
flex: 0.7 !important;
|
|
|
}
|
|
|
- .auth-btncard {
|
|
|
- display: flex !important;
|
|
|
- justify-content: space-between !important;
|
|
|
-
|
|
|
- .btn-unok {
|
|
|
- width: 40%;
|
|
|
- }
|
|
|
-
|
|
|
- .btn-ok {
|
|
|
- width: 40%;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .auth-card {
|
|
|
- text-align: center;
|
|
|
-
|
|
|
- .avatar-img {
|
|
|
- width: 200rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: 20rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .content {
|
|
|
- font-size: 32rpx;
|
|
|
- font-weight: bold;
|
|
|
- color: #1A1A1A;
|
|
|
- margin-bottom: 30rpx;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .avatar-wrapper {
|
|
|
- color: #333 !important;
|
|
|
- border: none !important;
|
|
|
- border-radius: 0 !important;
|
|
|
- background-color: transparent !important;
|
|
|
- padding: 0;
|
|
|
- }
|
|
|
-
|
|
|
- .avatar-wrapper::after {
|
|
|
- border: none !important;
|
|
|
- }
|
|
|
-
|
|
|
- .avatar {
|
|
|
- width: 80rpx;
|
|
|
- height: 80rpx;
|
|
|
- overflow: hidden;
|
|
|
- border-radius: 100%;
|
|
|
- }
|
|
|
-
|
|
|
/deep/.u-popup__content {
|
|
|
border-radius: 20rpx !important;
|
|
|
}
|
|
@@ -242,4 +197,7 @@
|
|
|
/deep/.u-input{
|
|
|
padding:0 !important;
|
|
|
}
|
|
|
+ /deep/.u-form-item__body__right.rightclass{
|
|
|
+ flex:0.7 !important;
|
|
|
+ }
|
|
|
</style>
|