@@ -426,10 +426,15 @@
color:#333;
margin-left:10rpx;
overflow-x: scroll;
+ white-space: nowrap;
+ width:65vw;
+ font-weight:600;
+ letter-spacing:3rpx;
}
.description{
color:#666;
margin-top:10rpx;
+ width:67vw;
.address{
margin-top:20rpx;
@@ -484,7 +484,15 @@
border-radius: 20rpx;
padding: 20rpx;
font-size: 32rpx;
-
+ .detailedAddress {
+ width: 70vw;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ color:#999 ;
+ text-align:left;
+ line-height: 40rpx;
+ }
.row2 {
margin: 20rpx 0;
@@ -617,14 +625,6 @@
transform: translateX(-50%);
- .detailedAddress {
- width: 70vw;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color:#999 ;
- line-height: 40rpx;
- }
.tag-type {
background: #fff;
@@ -51,11 +51,16 @@
</u-cell-group>
</view>
+ <login-pop-up ref='loginpopup' :content='"手机登录后才能查看我的哦~"'></login-pop-up>
</template>
<script>
+ import loginPopUp from "@/components/loginPopUp/index.vue"
export default {
+ components: {
+ loginPopUp
+ },
data() {
return {
title: 'Hello'
@@ -63,6 +68,12 @@
},
onLoad() {
+ onShow(){
+ if(!uni.getStorageSync("userInfo").phone){
+ this.$refs.loginpopup.open()
+ }else{
methods: {