fix
Helius
2021-02-20 45fb4b11ad51bb38306765b11a6747402e382cee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<template>
    <!-- 我的 -->
    <view class="container">
        <!-- #ifndef H5 -->
        <view class="status_bar"></view>
        <!-- #endif -->
        <view class="header">
            <view class="right">
                <text class=" white iconfont iconshezhi  icon" @click="toSetting"></text>
            </view>
            <view class="flex align-center">
                <image class="header-img ml-10" :src="userInfo.photo?userInfo.photo:'../../static/images/default-avatar.png'"></image>
                <view class="flex flex-v ml-15">
                    <navigator url="./myInfo" hover-class="none">
                        <text class="font-18 white mr-5">{{userInfo.name}}</text>
                        <text class="white font-16 iconfont iconxiugai"></text>
                    </navigator>
                    <view class="flex mt-10">
                        <view class="mr-20 ellipsis ellipsis-rolename">
                            <text class="white mr-5 font-14">职位:</text>
                            <text class="white font-14">{{userInfo.roleName}}</text>
                        </view>
                        <view class="ellipsis ellipsis-shopname">
                            <text class="white mr-5 font-14">门店:</text>
                            <text class="white font-14">{{userInfo.shopName}}</text>
                        </view>
                    </view>
                </view>
            </view>
        </view>
        
        <view class="content">
            <view class="tab-box">
                <h-tabs 
                    class="tab"
                    :activeIndex="type-1"
                    :tabData="tabs" 
                    @tabClick="tabChange"
                    :config="{
                        color: '#abb1cc',
                        activeColor: '#518EFF',
                        underLineColor: '#518EFF',
                        underLineHeight: 4,
                        fontSize: 26,
                        itemWidth: 70,
                        underLineWidth: 60,
                    }"
                />
                <view  class="look-more" @click="lookMore">
                    更多<text class="iconfont iconarrow-backimg light-gray"></text>
                </view>
                <view class="performance-content">
                    <view class="flex justify-around">
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 green">{{userAchieve.orderCash | formatNum}}</text>
                            <text class="mt-5">现金业绩</text>
                        </view>
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 purple">{{userAchieve.cash | formatNum}}</text>
                            <text class="mt-5">划扣业绩</text>
                        </view>
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 red">{{userAchieve.cardUse | formatNum}}</text>
                            <text class="mt-5">业绩提成</text>
                        </view>
                    </view>
                    <view class="flex justify-around mt-15">
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 blueness">{{userAchieve.hisConsume | formatNum}}</text>
                            <text class="mt-5">本金消耗</text>
                        </view>
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 orange">{{userAchieve.freeConsume | formatNum}}</text>
                            <text class="mt-5">赠送消耗</text>
                        </view>
                        <view class="flex flex-v align-center performance-item">
                            <text class="font-16 yellow">{{userAchieve.projCommission | formatNum}}</text>
                            <text class="mt-5">服务提成</text>
                        </view>
                    </view>
                </view>
            </view>
            <navigator url="./knowledge" class="flex align-center justify-between repository mt-10" v-if="$utils.hasPermission('zhishiku')">
                <view class="flex align-center">
                    <image class="title-img mr-10" src="../../static/images/mine2.png"></image>
                    <text>知识库</text>
                </view>
                <text class="icon iconfont iconarrow-backimg gray"></text>
            </navigator>
        </view>
    </view>
</template>
 
<script>
    import HTabs from "@/components/liuyuno-tabs/liuyuno-tabs.vue";
    export default {
        components: {
            HTabs
        },
        data() {
          return {
                type: 1, //1-今日 2-昨天 3-本月 4-上月
                tabs:[
                    {
                        state: 1,
                        name: '今日'
                    },
                    {
                        state: 2,
                        name: '昨日'
                    },
                    {
                        state: 3,
                        name: '本月'
                    },
                    {
                        state: 4,
                        name: '上月'
                    },
                ],
                userAchieve: {},
                userInfo: {}
          }  
        },
        onShow() {
            this.getUserAchieve();
            this.getUserInfo();
        },
        methods: {
            getUserInfo(){
                let roleInfo = this.$httpUtils.getRoleInfo();
                this.userInfo = roleInfo || {};
            },
            getUserAchieve(){
                this.$httpUtils.request('/api/user/findUserAchieve/'+this.type).then((res) => {
                    if(res.status == 200){
                        let {achieve} = res.mapInfo;
                        this.userAchieve = achieve || {};
                    }else{
                        this.userAchieve = {};
                    }
                })
            },
            tabChange(e){
                this.type = e + 1;
                this.getUserAchieve()
            },
            toSetting(){
                let isLogin = (JSON.stringify(this.userInfo) !== '{}')?1:0;
                uni.navigateTo({
                    url: './setting?isLogin='+isLogin
                })
            },
            lookMore(){
                uni.navigateTo({
                    url: '../manager/employeeReport'
                })
            }
        }
    }
</script>
 
<style>
    page{
        background: #F6F6F8;
    }
    .status_bar{
        background: #518EFF;
        color: #FFFFFF;
    }
    .header{
        background: #518EFF;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 15px 10px;
    }
    .icon {
        font-size: 18px;
        font-family: texticons;
    }
    .header-img{
        width: 64px;
        height: 64px;
        border-radius: 50%;
        flex: 0 0 64px;
    }
    .content{
        padding: 0 10px;
    }
    .performance{
        padding: 0 3px;
        margin: 15px 0px 10px;
    }
    .title-img{
        width: 16px;
        height: 16px;
    }
    .tab-box{
        background: #FFFFFF;
        border-radius: 4px;
        margin-top: 10px;
        position: relative;
    }
    .tab{
        border-bottom: 1px solid #EDEAF4;
    }
    .look-more{
        position: absolute;
        z-index: 99;
        top: 22rpx;
        right: 10px;
        color: rgb(171, 177, 204);
        font-size: 26rpx;
    }
    .performance-content{
        padding: 20px 0;
    }
    .performance-item{
        width: 33.3%;
        font-size: 13px;
    }
    .repository{
        border-radius: 4px;
        padding: 12px 10px;
        background: #FFFFFF;
        font-size: 15px;
    }
    .ellipsis{
        color: #FFFFFF;
        overflow: hidden;
        text-overflow:ellipsis;
        white-space: nowrap;
    }
    .ellipsis-rolename{
        max-width: 125px;
    }
    .ellipsis-shopname{
        max-width: 90px;
    }
</style>