123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <view class="box">
- <view class="box_top">
- <!-- <view class="tip">
- {{ userinfo.level | userLevel }}
- </view> -->
- <view class="image">
- <image :src="crown.headimgurl" mode="widthFix" style="width: 120rpx;"></image>
- </view>
- <view class="name">
- {{ crown.remark_name | getNickname }}
- </view>
- <!-- <view class="phone">
- {{ userinfo.mobile | getPhone }}
- </view> -->
- </view>
- <view class="box_bottom">
- <view class="li">
- <view class="li_item one">
- <text class="bold">{{ data.week | getNum }}</text>
- <text>近7日新增</text>
- </view>
- <view class="li_item two">
- <text class="bold">{{ data.month | getNum }}</text>
- <text>近30日新增</text>
- </view>
- <view class="li_item three">
- <text class="bold">{{ data.year | getNum }}</text>
- <text>{{ year }}累计新增</text>
- </view>
- </view>
- <view class="nav">
- <!-- <text style="margin-left: ;">2222</text> -->
- <view class="item">
- <view class="item_top" style="margin-bottom: 20rpx;align-items: center;">
- <image src="../../static/img/yuan.png" mode="widthFix" style="width: 33rpx;"></image>
- <text style="font-size: 30rpx;">时间:{{ userinfo.auth_startime | Date }}</text>
- </view>
- </view>
- <view class="item">
- <view class="item_top">
- <image src="../../static/img/yuan.png" mode="widthFix" style="width: 33rpx;"></image>
- <text>新增代理</text>
- </view>
- <view class="item_bottom">
- <view class="iamge">
- <image :src="userinfo.headimgurl ? userinfo.headimgurl : headimg" mode="widthFix" style="width: 100rpx;"></image>
- </view>
- <view class="right">
- <view class="nickname">
- 昵称:{{ userinfo.nickname | getNickname }}
- </view>
- <text>
- 级别:<text style="color: #FB231F;">{{ userinfo.level | userLevel }}</text>
- </text>
- <text>
- 手机号:{{ userinfo.mobile | getPhone }}
- </text>
- </view>
- </view>
- </view>
- <view class="item">
- <view class="item_top">
- <image src="../../static/img/yuan.png" mode="widthFix" style="width: 33rpx;"></image>
- <text>邀请人</text>
- </view>
- <view class="item_bottom">
- <view class="iamge">
- <image :src="userinfo.recom && userinfo.recom.headimgurl ? userinfo.recom.headimgurl : headimg" mode="widthFix" style="width: 100rpx;"></image>
- </view>
- <view class="right">
- <view class="nickname">
- 昵称:{{ userinfo.recom && userinfo.recom.nickname | getNickname }}
- </view>
- <text>
- 级别:<text style="color: #FB231F;">{{ userinfo.recom && userinfo.recom.level | userLevel }}</text>
- </text>
- <text>
- 手机号:{{ userinfo.recom && userinfo.recom.mobile | getPhone }}
- </text>
- </view>
- </view>
- </view>
- <view class="item">
- <view class="item_top">
- <image src="../../static/img/yuan.png" mode="widthFix" style="width: 33rpx;"></image>
- <text>上级代理</text>
- </view>
- <view class="item_bottom">
- <view class="iamge">
- <image :src="userinfo.agent && userinfo.agent.headimgurl ? userinfo.agent.headimgurl : headimg" mode="widthFix" style="width: 100rpx;"></image>
- </view>
- <view class="right">
- <view class="nickname">
- 昵称:{{ userinfo.agent && userinfo.agent.nickname | getNickname }}
- </view>
- <text>
- 级别:<text style="color: #FB231F;">{{ userinfo.agent && userinfo.agent.level | userLevel }}</text>
- </text>
- <text>
- 手机号:{{ userinfo.agent && userinfo.agent.mobile | getPhone }}
- </text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { GetUserCertInfo, GetCrownTeam } from '../../api/index.js';
- // http://192.168.2.129:8080/#/?id=39517&crown_id=277&time=2021%2F09%2F08%2000%3A00%3A00
- export default {
- data() {
- return {
- headimg: 'https://api.app.cliu.cc/logo.jpg',
- id: '',
- crown_id: '',
- time: '',
- year: '',
- crown: {},
- data: {},
- userinfo: {}
- }
- },
- onLoad() {
- var date = new Date();
- this.year = date.getFullYear(); //获取完整的年份(4位)
- this.id = this.$route.query.id
- this.crown_id = this.$route.query.crown_id
- this.time = this.$route.query.time
- this.getUserInfo()
- },
- methods: {
- getUserInfo() {
- // id=39517&crown_id=277&time=
- GetCrownTeam({ crown_id: this.crown_id, time: this.time }).then(res => {
- if (res.code === 200) {
- this.data = res.data
- } else {
- uni.showToast({
- title: res.message || '获取失败',
- icon: 'none'
- })
- }
- }).catch(err => {})
- // ?id=39517&crown_id=277
- GetUserCertInfo({ id: this.id, crown_id: this.crown_id, time: this.time }).then(res => {
- if (res.code === 200) {
- this.crown = res.data.crown
- this.userinfo = res.data.users
- } else {
- uni.showToast({
- title: res.message || '获取失败',
- icon: 'none'
- })
- }
- }).catch(err => {})
- }
- },
- filters: {
- userLevel(level) {
- if (!level) return '公司'
- let out = ''
- switch (+level) {
- case 1:
- out = '销售主管'
- break;
- case 2:
- out = '销售经理'
- break;
- case 3:
- out = '代理公司'
- break;
- default:
- out = '待定'
- }
- return out;
- },
- getPhone(value) {
- if (value) {
- // var reg = getRegExp('^(\d{3})\d{4}(\d{4})$')
- return value.substr(0, 3) + '****' + value.substr(7)
- }
- },
- Date(value) {
- if(value) {
- var newDate=/\d{4}-\d{1,2}-\d{1,2}/g.exec(value)
- return newDate[0]
- }
- },
- getNum(value) {
- if (value) {
- // var reg = getRegExp('^(\d{3})\d{4}(\d{4})$')
- return value
- } else {
- return 0
- }
- },
- getNickname(value) {
- if (value) {
- return value.length > 10 ? value.slice(0, 10) + '...' : value;
- }
- },
- parseMoney(money) {
- const reg = /(^[1-9][0-9]{0,12}([.][0-9]{0,2})?$)|(^0?(\.[0-9]{0,2})?$)/
- if (!money || !reg.test(money)) return '0.00'
- money = String(money)
- money = money.replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,')
- return money
- }
- },
- }
- </script>
- <style lang="scss">
- .box {
- &_top {
- width: 100%;
- height: 280rpx;
- // position: relative;
- background:url('../../static/img/bg.png');
- background-size:cover;
- background-repeat:no-repeat;
- color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- .image {
- width: 122rpx;
- height: 122rpx;
- border-radius: 50%;
- overflow: hidden;
- border: 2rpx solid #FFFFFF;
- }
- .name {
- font-size: 36rpx;
- margin-top: 15rpx;
- font-weight: bold;
- margin-bottom: 65rpx;
- }
- .phone {
- font-size: 30rpx;
- margin-top: 20rpx;
- font-weight: bold;
- }
- .tip {
- position: absolute;
- top: 112rpx;
- right: 0;
- width: 138rpx;
- height: 56rpx;
- font-size: 28rpx;
- color: #F50F04;
- text-align: center;
- line-height: 56rpx;
- padding-left: 10rpx;
- background: #FFCC00;
- border-radius: 42rpx 0rpx 0rpx 42rpx;
- }
- }
- &_bottom {
- width: 100%;
- background: #FFFFFF;
- border-radius: 32rpx 32rpx 0rpx 0px;
- margin-top: -40rpx;
- padding: 24rpx 0 0 0;
- // padding: 54rpx 0 0 30rpx;
- .li {
- margin: 0 24rpx;
- display: flex;
- justify-content: space-between;
- margin-bottom: 25rpx;
- &_item {
- width: 218rpx;
- height: 126rpx;
- border-radius: 8px;
- // padding: 14rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- color: #fff;
- font-size: 28rpx;
- font-weight: 400;
- .bold {
- font-size: 40rpx;
- // font-weight: bold;
- font-weight: 500;
- margin-bottom: 8rpx;
- }
- }
- .one {
- background: linear-gradient(90deg, #5B50FF 0%, #8D3EFF 100%);
- }
- .two {
- background: linear-gradient(93deg, #FF4646 0%, #FF893A 100%);
- }
- .three {
- background: linear-gradient(90deg, #00D59F 0%, #009AD1 100%);
- }
- }
- .nav {
- border-left: 2rpx solid #EEEEEE;
- margin-left: 30rpx;
- // height: 1100rpx;
- padding-bottom: 10rpx;
- .item {
- &_top {
- display: flex;
- align-items: flex-start;
- margin-left: -16rpx;
- text {
- color: #333;
- font-size: 32rpx;
- font-weight: bold;
- margin-left: 16rpx;
- margin-top: -7rpx;
- }
- }
- &_bottom {
- height: 162rpx;
- padding: 24rpx;
- background: #F5F5F5;
- border-radius: 16rpx;
- margin: 15rpx 24rpx 20rpx 24rpx;
- display: flex;
- align-items: flex-start;
- .image {
- width: 100rpx;
- height: 100rpx;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .right {
- margin-left: 48rpx;
- height: 162rpx;
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- color: #333333;
- .nickname {
- font-size: 34rpx;
- font-weight: bold;
- }
- text {
- font-size: 32rpx;
- }
- }
- }
- }
- }
- }
- }
- </style>
|