123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <template>
- <view>
- <u-notify ref="uNotify" message="Hi uView"></u-notify>
- <!--头部-->
- <view class="my_top">
- <image src="../../static/images/top-bg.png" class="bg"></image>
- </view>
- <view class="list animated fadeInDown">
- <!--用户信息-->
- <view class="user">
- <image src="../../static/icon/user.png" mode="widthFix" class="head"></image>
- <view class="con">
- <view class="nickName omit">{{ user.phone }}</view>
- <view class="tag" v-if="user.userType == 1">普通边民</view>
- <view class="tag" v-if="user.userType == 2">互市组长</view>
- <view class="tag" v-if="user.userType == 3">外籍商户</view>
- <view class="tag" v-if="user.userType == 4">司机</view>
- <view class="tag" v-if="user.userType == 5">收购商</view>
- </view>
- <text class="icon edit"></text>
- <view class="clear"></view>
- </view>
- <!--组长菜单-->
- <view class="menu" v-if="user.userType == 2">
- <view class="msn" @click="go('/pages/market/one/leader/cart')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41"></view>
- <view class="tit">购物车</view>
- </view>
- </view>
- </view>
- <view class="msn" @click="go('/pages/market/one/leader/order')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8"></view>
- <view class="tit">一级订单</view>
- </view>
- </view>
- </view>
- <view class="msn" @click="go('/pages/market/two/leader/order')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8"></view>
- <view class="tit">二级订单</view>
- </view>
- </view>
- </view>
- </view>
- <!--外籍商户-->
- <view class="menu" v-if="user.userType == 3">
- <view class="msn" @click="go('/pages/market/one/merchant/goods/list')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #e1f6e9; color: #47cf74"></view>
- <view class="tit">商品管理</view>
- </view>
- </view>
- </view>
- <view class="msn" @click="go('/pages/market/one/merchant/order/list')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8"></view>
- <view class="tit">我的订单</view>
- </view>
- </view>
- </view>
- </view>
- <!--收购商-->
- <view class="menu" v-if="user.userType == 5">
- <view class="msn" @click="go('/pages/market/two/purchaser/buy/list')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #e1f6e9; color: #47cf74"></view>
- <view class="tit">收购管理</view>
- </view>
- </view>
- </view>
- <view class="msn" @click="go('/pages/market/two/purchaser/address/list')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41"></view>
- <view class="tit">地址管理</view>
- </view>
- </view>
- </view>
- <view class="msn" @click="go('/pages/market/two/purchaser/order/list')">
- <view class="out">
- <view class="int">
- <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8"></view>
- <view class="tit">我的订单</view>
- </view>
- </view>
- </view>
- </view>
- <view class="cmd">
- <view class="s_item" @click="show = true">
- <text class="icon ic"></text>
- <text class="title">常见问题</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="show = true">
- <text class="icon ic"></text>
- <text class="title">联系我们</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="show = true">
- <text class="icon ic"></text>
- <text class="title">用户协议</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="show = true">
- <text class="icon ic"></text>
- <text class="title">隐私协议</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="show = true">
- <text class="icon ic"></text>
- <text class="title">设置</text>
- <text class="icon arrow"></text>
- </view>
- </view>
- <button class="btn exit" @click="exitLogin()">退出登录</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- user: {}
- };
- },
- onShow() {
- if (this.hasLogin()) {
- this.user = this.getUser();
- } else {
- uni.redirectTo({ url: '/pages/login/login' });
- }
- },
- methods: {
- order() {
- //组长
- if (this.user.userType == 2) {
- uni.navigateTo({ url: 'user' });
- }
- //外籍商户
- if (this.user.userType == 3) {
- uni.navigateTo({ url: '/pages/market/one/merchant/order/list' });
- }
- //收购商
- if (this.user.userType == 5) {
- uni.navigateTo({ url: '/pages/market/two/purchaser/order/list' });
- }
- },
- go(url) {
- uni.navigateTo({ url: url });
- },
- exitLogin() {
- uni.removeStorageSync('token');
- uni.removeStorageSync('info');
- uni.removeStorageSync('menu');
- this.$common.to('/pages/login/login');
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: #f5f5f5;
- }
- .my_top {
- position: relative;
- overflow: hidden;
- image {
- width: 100%;
- }
- }
- .list {
- position: relative;
- padding: 0px 20px 10px 20px;
- margin-top: -196px;
- .user {
- background-color: white;
- padding: 20px;
- border-radius: 8px;
- color: $font-c;
- .head {
- float: left;
- width: 55px;
- height: 55px;
- }
- .con {
- float: left;
- padding-left: 15px;
- width: 60%;
- .nickName {
- font-size: 17px;
- font-weight: bold;
- }
- .tag {
- background-color: #6799ad;
- color: white;
- float: left;
- font-size: 13px;
- padding: 2px 6px;
- border-radius: 5px;
- margin-top: 6px;
- }
- }
- .edit {
- float: right;
- font-size: 20px;
- margin-top: 17px;
- }
- }
- }
- .exit {
- margin-top: 20px;
- background-color: white;
- color: $main-color;
- }
- </style>
|