修改价格登录后可见地方很多(因为不同样式模板不一样),按照以下逻辑修改自己想修改的地方即可
//模板判断
<template>
<view v-if="isLogin">
<view class="app-price t-omit" :class="sign !== 'gift' ? '' : theme+'-color ' + theme" :style="{'color': sign !== 'gift' && theme ? theme.color : ''}" v-if="actual.price != -1">
{{sign === 'integral_mall' && actual.price !== '' ? '+' : ''}}<text :class="actual.type">{{actual.price}}</text>
</view>
</view>
<view v-else>
<view>登陆查看价格</view>
</view>
</template>
// script.computed里添加
isLogin() {
return this.$user.isLogin();
},