|
|
|
@ -27,7 +27,7 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="logout" @click="logout"> |
|
|
|
<view v-if="hasLogin" class="logout" @click="logout"> |
|
|
|
<text class="text">退出登录</text> |
|
|
|
<image class="icon" src="/static/imgs/mine/logout-icon.png"></image> |
|
|
|
</view> |
|
|
|
@ -96,7 +96,7 @@ |
|
|
|
<text style="font-size: 30rpx; color: rgba(0, 0, 0, 0.85); font-weight: 600">其他工具</text> |
|
|
|
</view> |
|
|
|
<view class="icon-area"> |
|
|
|
<view class="icon-item" style="margin-right: 64rpx" @click="go2('account-management')"> |
|
|
|
<view class="icon-item" style="margin-right: 64rpx" @click="loginGo2('account-management')"> |
|
|
|
<image class="icon" src="/static/imgs/mine/account-icon.png"></image> |
|
|
|
<text class="label">账号管理</text> |
|
|
|
</view> |
|
|
|
@ -105,13 +105,11 @@ |
|
|
|
<text class="label">我的询价</text> |
|
|
|
</view> |
|
|
|
<view class="icon-item" style="margin-right: 64rpx" @click="loginGo2('address-manage')"> |
|
|
|
<image class="icon" src="/static/imgs/mine/address-icon.png" @click="go2('address-manage')"></image> |
|
|
|
<image class="icon" src="/static/imgs/mine/address-icon.png"></image> |
|
|
|
<text class="label">收货地址</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view @click="loginGo2('test')">test</view> |
|
|
|
<view @click="loginGo2('order-detail')">order-detail</view> |
|
|
|
<view @click="loginGo2('enterprise-info')">enterprise-info</view> |
|
|
|
</view> |
|
|
|
</template> |
|
|
|
@ -217,6 +215,7 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
this.hasLogin && getBaseInfo({}, true) |
|
|
|
!this.hasLogin && (this.fsInfo.status = -1) |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
|