| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <view class="total-page page-env-160 page-box">
- <Nav :title="'工作台导航'" :back="false" :is_fixed="true" :opacity="scrollTop" :justify="'left'" :color="'#fff'">
- <view class="p-20">
- <IndexPersonal @setMemberData="setMemberData"></IndexPersonal>
- <IndexColumn :memberData="memberData"></IndexColumn>
- </view>
- </Nav>
- <view class="p-lr20 m-tb30">
- <view class="personal m-lr10 row-justify-sb center">
- <text class="sys-weight-600">我的待办</text>
- <view class="row-justify-sb center">
- <view class="personal_text">
- <uni-datetime-picker type="date" v-model="modelTime" @change="onChangeTime"
- @touchmove.stop.prevent="moveHandle">
- <view class="personal sys-background-fff size-24 sys-weight-600 p-lr30 r-40">{{indexTime}}
- </view>
- </uni-datetime-picker>
- </view>
- </view>
- </view>
- </view>
- <view class="page-box-bg-fff m-t30 m-lr20 m-b20 r-30 row-justify-sb flex p-b30">
- <view class="">
- <view class="row-c">
- <view class="pie_chart column-c">
- <PieChart></PieChart>
- <text class="size-24 text-color-12">任务完成情况</text>
- </view>
- <view class="m-b30">
- <view class="row-c p-tb10" v-for="(item,index) in chartList" :key="index">
- <view class="row-c">
- <view class="row-c" style="line-height: 30rpx;">
- <view class="chart_dot" :style="{backgroundColor:item.color}"></view>
- <text class="m-l16 text-color-787">{{item.name}}</text>
- </view>
- </view>
- <text class="text-color-12 sys-weight-600 m-l40">{{item.value}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="circle_chart column-sb-c m-t10">
- <CircleChart :width="'180rpx'" :height="'180rpx'" :bgColor="'#0FB160'"></CircleChart>
- <text class="size-24 text-color-12">任务进度</text>
- </view>
- </view>
- <TaskItem :type="4" :taskList="backlogList"></TaskItem>
- <Tab class="tabs_height" :tab-index="0"></Tab>
- </view>
- </template>
- <script>
- import TaskItem from "@/common/task/task-item.vue"
- import PieChart from "@/common/chart/pie_chart.vue"
- import CircleChart from "@/common/chart/circle_chart.vue"
- // 个人信息
- import IndexColumn from "./module/index_column.vue"
- // 顶部栏目
- import IndexPersonal from "./module/index_personal.vue"
- import {getDayBacklogList} from "@/api/task";
- export default {
- components: {
- TaskItem,
- PieChart,
- CircleChart,
- IndexColumn,
- IndexPersonal
- },
- data() {
- return {
- modelTime: this.$tools.getDate('-'),
- indexTime: this.$tools.getDate(),
- is_admin: false,
- scrollTop: 0,
- topNavHeight: 0,
- chartList: [{
- name: "超期",
- color: '#DE5847',
- value: "100%"
- }, {
- name: "滞后",
- color: '#EF8F27',
- value: "100%"
- }, {
- name: "正常",
- color: '#3ABF7D',
- value: "100%"
- }, ],
- memberData:{},
- backlogList: [],
- weekData: [],
- weekNum: 1,
- dayNum: 0,
- day: '',
- month: '',
- page: 1,
- isAjax: false,
- total: null
- }
- },
- onLoad() {
- uni.hideTabBar()
- uni.$on('newReceiving', () => {
- })
- this.startList()
- },
- onPageScroll(res) {
- this.scrollTop = res.scrollTop / 120
- },
- onReachBottom() {
- console.log('到底部了');
- this.getDayBacklogList()
- },
- methods: {
- startList(){
- this.backlogList=[];
- this.page=1;
- this.total=null;
- this.getDayBacklogList();
- },
- getDayBacklogList() {
- if(this.total!==null && this.total<=this.backlogList.length){
- return
- }
- getDayBacklogList({'dateNum': this.indexTime,'page':this.page}).then((res) => {
- if (res.code === 1) {
- this.backlogList.push(...res.data.items)
- this.total = res.data.total
- ++ this.page
- }
- })
- },
- setMemberData(memberData){
- this.memberData=memberData
- },
- onChangeTime(e) {
- this.indexTime = e
- },
- moveHandle() {
- return false
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .personal {
- height: 55rpx;
- line-height: 55rpx;
- }
- .pie_chart {
- width: 135px
- }
- .circle_chart {
- width: 135px;
- padding-top: 20rpx;
- }
- .chart_dot {
- width: 16rpx;
- height: 16rpx;
- border-radius: 50%;
- }
- </style>
|