123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <template>
- <view class="content">
- <view class="top hflex acenter jbetween">
- <view class="hflex acenter" @click="toLogin">
- <u-avatar :src="user.headimg"></u-avatar>
- <view class="user_name">{{user.nickname?user.nickname:'请先登录'}}</view>
- </view>
- <view class="message hflex acenter jcenter" @click="toMessage">
- <image src="/static/images/mine/message.png" style="width: 48rpx;height: 48rpx;"></image>
- <u-badge max="99" :absolute="true" :offset="[1,1]" :value="user.message_num" v-if="user.message_num>0"></u-badge>
- </view>
- </view>
- <view class="box">
- <view class="amount hflex acenter jbetween" @click="toMoney">
- <view class="amount_left">我的余额</view>
- <view class="amount_right">¥{{user.money}}</view>
- </view>
- <view class="order">
- <view class="order_top hflex acenter jbetween">
- <view class="order_title">商城订单</view>
- <view class="order_right" @click="toOrder(1)">查看全部</view>
- </view>
- <view class="order_list hflex acenter jcenter">
- <block v-for="(item,index) in orderList" :key="index">
- <view class="order_item vflex acenter jcenter" @click="toOrder(item.id)">
- <image :src="item.img" style="width: 52rpx;height: 52rpx;"></image>
- <u-badge :absolute="true" :offset="[1,20]" max="99" :value="item.number" v-if="item.number>0"></u-badge>
- <view class="order_text">{{item.name}}</view>
- </view>
- </block>
- </view>
- </view>
- <view class="cell">
- <view class="cell_item hflex acenter jbetween" @click="toService(1)">
- <view class="hflex acenter">
- <image src="/static/images/mine/cell1.png" style="width: 40rpx;height: 40rpx;"></image>
- <view class="cell_text">采购订单</view>
- </view>
- <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
- </view>
- <view class="cell_item hflex acenter jbetween" @click="toService(2)">
- <view class="hflex acenter">
- <image src="/static/images/mine/cell2.png" style="width: 40rpx;height: 40rpx;"></image>
- <view class="cell_text">商家详情</view>
- </view>
- <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
- </view>
- <view class="cell_item hflex acenter jbetween" @click="toService(3)">
- <view class="hflex acenter">
- <image src="/static/images/mine/cell3.png" style="width: 40rpx;height: 40rpx;"></image>
- <view class="cell_text">意见反馈</view>
- </view>
- <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
- </view>
- <view class="cell_item hflex acenter jbetween" @click="toService(4)">
- <view class="hflex acenter">
- <image src="/static/images/mine/cell4.png" style="width: 40rpx;height: 40rpx;"></image>
- <view class="cell_text">平台规则</view>
- </view>
- <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
- </view>
- <view class="cell_item hflex acenter jbetween" @click="toService(5)">
- <view class="hflex acenter">
- <image src="/static/images/mine/cell5.png" style="width: 40rpx;height: 40rpx;"></image>
- <view class="cell_text">设置</view>
- </view>
- <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
- </view>
- </view>
- </view>
- <custom-tab-bar :current="3" />
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- user: {
- message_num: 0
- },
- login: false,
- orderList: [
- {
- id: 2,
- img: '/static/images/mine/order1.png',
- name: '待付款',
- number: 0
- },
- {
- id: 3,
- img: '/static/images/mine/order2.png',
- name: '待发货',
- number: 0
- },
- {
- id: 4,
- img: '/static/images/mine/order3.png',
- name: '待收货',
- number: 0
- },
- {
- id: 5,
- img: '/static/images/mine/order4.png',
- name: '退款/售后',
- number: 0
- }
- ]
- }
- },
- onLoad() {
- that = this
- that.getNum()
- },
- onShow() {
- that.isLogin()
- that.getUser()
- },
- methods: {
- getUser() {
- $api.req({
- url: '/data/api.business.User/user_info'
- }, function(res) {
- if(res.code == 1) {
- that.user = res.data
- uni.setStorageSync('id',res.data.id)
- var options = {
- user: res.data.huanxinID,
- pwd: '12345678',
- appKey: uni.WebIM.config.appkey,
- success: function (res2) {
- wx.setStorageSync("myUsername",res.data.huanxinID)
-
- },
- error: function(error){
- console.log(error);
- }
- };
- uni.WebIM.conn.open(options);
- setTimeout(()=> {
- let option = {
- nickname: res.data.nickname,
- avatarurl: res.data.headimg,
- }
- uni.WebIM.conn.updateOwnUserInfo(option);
- },3000)
-
- } else {
- uni.removeStorageSync('token')
- that.login = false
- that.user = {}
- }
- })
- },
- getNum() {
- $api.req({
- url: '/data/api.business.Order/order_statistics'
- }, function(res) {
- if(res.code == 1) {
- for(var i=0;i<that.orderList.length;i++) {
- that.$set(that.orderList[i],'number',res.data[i])
- }
- }
- })
- },
- isLogin() {
- var token = uni.getStorageSync('token')
- if(token) {
- that.login = true
- } else {
- that.login = false
- }
- },
- toLogin() {
- if(!that.login) {
- $api.jump('/pages/login/login/login')
- }
- },
- toMessage() {
- if(that.login) {
- $api.jump('/pages/mine/message/index')
- } else {
- $api.info('请先登录')
- $api.jump('/pages/login/login/login')
- }
- },
- toMoney() {
- if(that.login) {
- $api.jump('/pages/mine/wallet/wallet')
- } else {
- $api.info('请先登录')
- $api.jump('/pages/login/login/login')
- }
- },
- toOrder(id) {
- if(!that.login) {
- $api.info('请先登录')
- $api.jump('/pages/login/login/login')
- return
- }
- if(id != 5) {
- $api.jump('/pages/order/list?status=' + id)
- } else {
- $api.jump('/pages/order/refund')
-
- }
-
- },
- toService(index) {
- var url = ''
- switch(index) {
- case 1 :
- url = '/pages/mine/service/purOrder/list';
- break;
- case 2 :
- url = '/pages/mine/service/detail';
- break;
- case 3 :
- url = '/pages/mine/service/feed/feed';
- break;
- case 4 :
- url = '/pages/mine/service/rule';
- break;
- case 5 :
- url = '/pages/mine/service/setting/setting';
- break;
- }
- if(that.login) {
- $api.jump(url)
- } else {
- $api.info('请先登录')
- $api.jump('/pages/login/login/login')
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background: url('/static/images/mine/bg.png') no-repeat;
- background-size: 100%;
- // padding: 0 30rpx;
- .top {
- width: 100%;
- padding: 188rpx 0 0 30rpx;
- .user_name {
- font-size: 36rpx;
- font-weight: 500;
- color: #222222;
- line-height: 50rpx;
- padding-left: 16rpx;
- }
- .message {
- width: 104rpx;
- height: 68rpx;
- background: rgba(255,255,255,0.6);
- border-radius: 28rpx 0px 0px 28rpx;
- position: relative;
- }
- }
- .box {
- width: 100%;
- box-sizing: border-box;
- padding: 0 30rpx;
- margin-bottom: 80rpx;
- .amount {
- width: 100%;
- height: 144rpx;
- box-sizing: border-box;
- padding: 0 24rpx;
- margin: 36rpx 0 20rpx;
- background: url('/static/images/mine/amount_bg.png') no-repeat;
- background-size: 100%;
- .amount_left {
- font-size: 30rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 42rpx;
- }
- .amount_right {
- font-size: 48rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 58rpx;
- }
- }
- .order {
- width: 100%;
- height: 240rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- .order_top {
- padding: 24rpx 30rpx 0;
- .order_title {
- font-size: 28rpx;
- font-weight: 500;
- color: #0A0A0A;
- line-height: 40rpx;
- }
- .order_right {
- font-size: 22rpx;
- font-weight: 400;
- color: #B4B4B4;
- line-height: 32rpx;
- }
- }
- .order_list {
- padding: 32rpx 0;
- .order_item {
- width: 25%;
- position: relative;
- .order_text {
- font-size: 24rpx;
- font-weight: 400;
- color: #0A0A0A;
- line-height: 34rpx;
- padding-top: 26rpx;
- }
- }
- }
- }
- .cell {
- margin: 20rpx 0 110rpx;
- width: 100%;
- height: 588rpx;
- background: #FFFFFF;
- border-radius: 20px;
- box-sizing: border-box;
- padding: 0 30rpx;
- .cell_item {
- height: 116rpx;
- padding: 34rpx 0;
- border-bottom: 1rpx solid #F4F4F4;
- .cell_text {
- padding-left: 20rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: #222222;
- line-height: 36rpx;
- }
- }
- .cell_item:nth-last-child(1) {
- border-bottom: none;
- }
- }
- }
- }
- </style>
|