123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- <template>
- <view class="content">
- <view class="swiper-item" style="padding: 0 15px;">
- <view class="chart-box">
- <view class="navbar-list">
- <u-image :width="imgWidth" :height="imgHeight" v-for="(item,index) in navbarList" :key="index" :src="item.imgPath" :fade="false" @click="handleJumpPathClick(item)"></u-image>
- </view>
- <!-- 简报 -->
- <view class="bulletin-list">
- <u-tabs :list="bulletinList" :is-scroll="false" bg-color="#f5f6f8" :current="bulletinCurrent" :active-item-style="{'fontSize': '44rpx', 'color':'#000','width':'280rpx'}" font-size="36" @change="handlebulletinClick"></u-tabs>
- <!-- <u-cell-item title="本周" :arrow="true" arrow-direction="down"></u-cell-item> -->
- <u-cell-item title="本周" :arrow="false"></u-cell-item>
- </view>
-
- <!-- 简报信息 -->
- <u-card :show-head="false" :show-foot="false" :border="false" margin="20rpx 0">
- <view slot="body" class="bulletin-info">
- <view v-for="(item,index) in bulletinInfo" :key="index" class="bulletin-item">
- <view>{{ item.name }}</view>
- <view class="bulletin-num">{{ item.num }}</view>
- </view>
- </view>
- </u-card>
-
- <!-- 线索状态 -->
- <u-card :show-foot="false" :border="false" margin="0px">
- <view slot="head">
- <text style="font-size: 44rpx;font-weight: bold;">线索状态</text>
- </view>
- <view slot="body">
- <canvas canvas-id="chartBox" id="chartBox" class="chart-canvas" force-use-old-canvas="true"></canvas>
- </view>
- </u-card>
-
- <!-- 场馆推荐-->
- <u-card :show-foot="false" :border="false" margin="20rpx 0">
- <view slot="head">
- <u-section title="场馆推荐" sub-title="查看更多" font-size="44" :show-line="false" @click="goToVenueList()"></u-section>
- </view>
- <view class="class-show-box" slot="body">
- <view v-for="(item, index) in videoList" :key="index" class="class-show-card" @click="goToVenueDetail(item)">
- <u-image :src="item.url" mode="aspectFill" height="30vw" border-radius="10px"></u-image>
- <view class="class-show-name">{{item.name}}</view>
- </view>
- </view>
- </u-card>
- </view>
- </view>
- <u-top-tips ref="uTips"></u-top-tips>
- <!-- <u-tabbar v-model="current" :list="tabbarList" :mid-button="true" :active-color="mainColor" inactive-color="#cccccc"
- icon-size="60"></u-tabbar> -->
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- import uCharts from '@/js_sdk/u-charts/u-charts/u-charts.min.js';
- import client from '@/static/images/client.png'
- import thread from '@/static//images/thread.png'
- import business from '@/static/images/business.png'
- import empty from '@/static/images/empty.png'
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- var _self;
- var uChartsInstance = {};
- export default {
- computed: {
- ...mapGetters([
- 'mainColor',
- 'customStyle',
- ])
- },
- data() {
- return {
- imgWidth:'220rpx',
- imgHeight:'80rpx',
- cWidth: '',
- cHeight: '',
- longitude: '',
- latitude: '',
- sectionIcon: API.getServerImg + 'biaoti.png',
- enrolledIcon: API.getServerImg + 'yibaoming.png ',
- intentionIcon: API.getServerImg + 'yixiangkehu.png',
- videoList: [],
- tabbarList: [{
- iconPath: "../../../static/images/icon-index.png",
- selectedIconPath: "../../../static/images/icon-index-active.png",
- text: '首页',
- customIcon: false,
- },
- {
- iconPath: "plus-circle-fill",
- selectedIconPath: "close-circle-fill",
- text: '新增',
- midButton: true,
- customIcon: false,
- },
- {
- iconPath: "../../../static/images/icon-mine.png",
- selectedIconPath: "../../../static/images/icon-mine-active.png",
- text: '我的',
- customIcon: false,
- },
- ],
- userData: {
- headImage: '',
- userId: '',
- nickName: '',
- userName: '',
- phone: '',
- flag: ''
- },
- navbarList: [
- {
- 'title': '客户',
- 'imgPath': client,
- 'path': '/pagesMain/customerList'
- },
- {
- 'title': '线索',
- 'imgPath': thread,
- 'path': '/pagesMain/threadList'
- }
- ],
- // 公海
- business: {
- 'title': '公海',
- 'imgPath': business,
- 'path': '/pagesMain/businessList'
- },
- empty: {
- 'title': '占位',
- 'imgPath': empty
- },
- // 简报
- bulletinList: [{
- name: '团队简报'
- }, {
- name: '个人简报'
- }],
- bulletinCurrent: 0,
- // 简报信息
- bulletinInfo: [
- {
- name: '新增客户',
- num: 0
- }, {
- name: '新增线索',
- num: 0
- }, {
- name: '新增商机',
- num: 0
- }
- ],
- flag: true,
- // 线索状态
- threadList: [],
- threadNum: 0
- }
- },
- onLoad() {
- // _self = this; // 浏览器调试时需要打开,微信调试时需关闭
- if (!uni.getStorageSync('token')) {
- uni.navigateTo({
- url: '/pages/login/index'
- });
- }
- },
- onReady() {
- //这里的 750 对应 css .charts 的 width
- this.cWidth = uni.upx2px(520);
- //这里的 500 对应 css .charts 的 height
- this.cHeight = uni.upx2px(500);
- },
- onShow() {
- this.navbarList = Object.assign([],this.$options.data().navbarList)
- if (uni.getStorageSync('userData')) {
- this.userData = uni.getStorageSync('userData')
- if(uni.getStorageSync('userData').flag) {
- this.navbarList.push(this.business)
- } else {
- this.imgWidth='300rpx'
- this.imgHeight='120rpx'
- //this.navbarList.push(this.empty)
- }
- }
- uni.getLocation({
- type: 'wgs84',
- geocode: true,
- success: (res) => {
- uni.setStorage({
- key: 'locationData',
- data: {
- longitude: res.longitude,
- latitude: res.latitude,
- }
- })
- this.initialize()
- }
- });
- },
- onPullDownRefresh() {
- this.initialize()
- setTimeout(() => {
- uni.stopPullDownRefresh();
- }, 500)
- },
- methods: {
- // 跳页
- handleJumpPathClick(item) {
- uni.navigateTo({
- url: item.path
- })
- },
- drawCharts(id,data){
- const ctx = uni.createCanvasContext(id, this);
- uChartsInstance[id] = new uCharts({
- type: "ring",
- context: ctx,
- width: this.cWidth,
- height: this.cHeight,
- series: data.series,
- animation: true,
- rotate: false,
- rotateLock: false,
- background: "#FFFFFF",
- color: ["#8A2BE8","#91CB74","#FAC858","#EE6666","#1890FF"],
- padding: [0,0,0,0],
- dataLabel: false,
- legend: {
- show: true,
- position: "right",
- lineHeight: 25
- },
- title: {
- name: this.threadNum,
- fontSize: 24,
- color: "#000"
- },
- subtitle: {
- name: "线索量",
- fontSize: 18,
- color: "#000"
- },
- extra: {
- ring: {
- ringWidth: 25,
- offsetAngle: 0,
- labelWidth: 15,
- border: false,
- }
- }
- })
- },
- // 获取初始化数据
- initialize() {
- this.getTeamPaper()
- this.getClueRait()
- // this.getRing()
- NET.request(API.getNearVenueList, uni.getStorageSync('locationData'), 'POST').then(res => {
- const venueData = res.data
- this.videoList = venueData.length <= 4 ? venueData : venueData.slice(0,4)
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 获取团队简报
- async getTeamPaper() {
- let res = await NET.request(API.teamStatistics, { flag: this.flag }, 'POST')
- if(res.status == 10000) {
- const result = res.data
- this.bulletinInfo[0].num = result.nearCreateCustomer
- this.bulletinInfo[1].num = result.nearCreateClue
- this.bulletinInfo[2].num = result.nearCreateChance
- } else {
- this.$refs.uTips.show({
- title: res.message,
- type: 'warning',
- })
- }
- },
- // 获取线索状态
- async getClueRait() {
- let res = await NET.request(API.clueRait, { flag: this.flag }, 'POST')
- if(res.status == 10000) {
- // 线索
- this.threadList = res.data.map(item => {
- return {
- 'name': `${item.name}(${item.value})` ,
- 'value': item.value
- }
- })
- // 线索量
- this.threadNum = res.data.reduce((sum,item) => sum += item.value, 0 )
- } else {
- this.$refs.uTips.show({
- title: res.message,
- type: 'warning',
- })
- }
- let aaa = {
- series: [
- {
- data: this.threadList
- }
- ]
- };
- this.drawCharts('chartBox', aaa);
- },
- // 切换简报
- handlebulletinClick(index) {
- this.bulletinCurrent = index
- if(!index) {
- this.flag = true
- } else {
- this.flag = false
- }
- this.getTeamPaper()
- this.getClueRait()
- },
- // 跳转今日新增
- goToTodayEnroll() {
- uni.navigateTo({
- url: '/pagesEnroll/todayEnroll'
- });
- },
- // 跳转所有场馆
- goToVenueList() {
- uni.navigateTo({
- url: '/pagesEnroll/venueList'
- });
- },
- // 跳转场馆详情
- goToVenueDetail(item) {
- uni.navigateTo({
- url: '/pagesEnroll/venueDetail?id=' + item.id
- });
- },
- // 跳转添加信息
- goToAddForm(path) {
- uni.removeStorageSync('defaultClass');
- uni.navigateTo({
- url: '/pagesEnroll/' + path
- });
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- @import "@/static/css/themes.scss";
- .content {
- width: 100%;
- float: left;
- background-color: #f5f6f8;
-
- .swiper-item {
- width: 100%;
- height: calc(100vh - 50px);
- position: relative;
- }
- .chart-box {
- width: 100%;
- // height: 240px;
- float: left;
- padding: 10px 0;
-
- .navbar-list {
- display: flex;
- justify-content: space-between;
- width:100%;
- }
-
- .bulletin-list {
- display:flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 20rpx;
- }
-
- .bulletin-info {
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- .bulletin-item {
- flex:1;display: flex;
- flex-direction:column;
- justify-content: center;
- align-items: center;
-
- .bulletin-num {
- font-size: 18px;
- font-weight: bold;
- margin-top: 10rpx;
- }
- }
- }
- .chart-canvas {
- width: 100%;
- height: 500rpx;
- }
- }
- .section-title {
- width: 100%;
- // height: 28px;
- display: flex;
- align-items: center;
- u-section {
- margin-left: 10px;
- flex: 1;
- }
- }
- .class-show-box {
- width: calc(100% + 32px);
- margin: 0 -16px;
- float: left;
- // padding-bottom: 50px;
- .class-show-card {
- width: calc(50% - 16px);
- margin: 0 8px 16px 8px;
- float: left;
- .class-show-name {
- width: 100%;
- text-align: center;
- line-height: 18px;
- font-size: 12px;
- margin-top: 5px;
- }
- }
- }
- .enroll-fix-box {
- width: 100%;
- height: 90px;
- position: absolute;
- bottom: 40px;
- left: 0;
- display: flex;
- justify-content: space-around;
- .enroll-button {
- width: 60px;
- height: 90px;
- .enroll-img {
- width: 60px;
- height: 60px;
- padding-left: 5px;
- border-radius: 50%;
- background-color: #ffffff;
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .enroll-text {
- width: 60px;
- height: 20px;
- margin-top: 10px;
- line-height: 20px;
- font-size: 14px;
- text-align: center;
- white-space: nowrap;
- }
- }
- }
- .user-info {
- width: 100%;
- height: 110px;
- margin-bottom: 20px;
- float: left;
- background-color: $mainColor;
- .user-data {
- width: calc(100% - 110px);
- height: 110px;
- padding: 15px 0 15px 15px;
- float: left;
- .user-name {
- width: 100%;
- float: left;
- font-size: 24px;
- color: #FFFFFF;
- line-height: 30px;
- margin: 10px 0;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .user-phone {
- width: 100%;
- color: #FFFFFF;
- line-height: 20px;
- float: left;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .user-img {
- width: 110px;
- height: 110px;
- padding: 15px;
- float: left;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .user-handle {
- width: 100vw;
- height: 40px;
- float: left;
- padding: 0 15px;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- .handle-icon {
- width: 40px;
- height: 40px;
- text-align: center;
- line-height: 40px;
- display: flex;
- align-items: center;
- }
- .handle-label {
- height: 40px;
- flex: 1;
- margin-left: 10px;
- line-height: 40px;
- font-size: 15px;
- }
- .handle-arrow {
- line-height: 40px;
- }
- }
- }
- </style>
|