123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746 |
- <template>
- <div class="w-main todo">
- <v-title>{{$L('待办')}}</v-title>
- <div class="w-nav">
- <div class="nav-row">
- <div class="w-nav-left">
- <div class="page-nav-left">
- <span><i class="ft icon"></i> {{$L('我的待办')}}</span>
- <div v-if="loadIng > 0" class="page-nav-loading"><w-loading></w-loading></div>
- <div v-else class="page-nav-refresh"><em @click="refreshTask">{{$L('刷新')}}</em></div>
- </div>
- </div>
- <div class="w-nav-flex"></div>
- <div class="w-nav-right m768-show">
- <Dropdown @on-click="handleTodo" trigger="click" transfer>
- <Icon type="md-menu" size="18"/>
- <DropdownMenu slot="list">
- <DropdownItem name="calendar">{{$L('待办日程')}}</DropdownItem>
- <DropdownItem name="complete">{{$L('已完成的任务')}}</DropdownItem>
- <DropdownItem name="attention">{{$L('我关注的任务')}}</DropdownItem>
- <DropdownItem name="report">{{$L('周报/日报')}}</DropdownItem>
- </DropdownMenu>
- </Dropdown>
- </div>
- <div class="w-nav-right m768-hide">
- <span class="ft hover" @click="handleTodo('calendar')"><i class="ft icon"></i> {{$L('待办日程')}}</span>
- <span class="ft hover" @click="handleTodo('complete')"><i class="ft icon"></i> {{$L('已完成的任务')}}</span>
- <span class="ft hover" @click="handleTodo('attention')"><i class="ft icon"></i> {{$L('我关注的任务')}}</span>
- <span class="ft hover" @click="handleTodo('report')"><i class="ft icon"></i> {{$L('周报/日报')}}</span>
- </div>
- </div>
- </div>
- <w-content>
- <div class="todo-main">
- <div v-for="subs in [['1', '2'], ['3', '4']]" class="todo-ul">
- <div v-for="index in subs" class="todo-li">
- <div class="todo-card">
- <div class="todo-card-head" :class="['p' + index]">
- <i class="ft icon flag"></i>
- <div class="todo-card-title">{{pTitle(index)}}</div>
- <label class="todo-input-box" :class="{active: !!taskDatas[index].focus}" @click="()=>{$set(taskDatas[index],'focus',true)}">
- <div class="todo-input-ibox" @click.stop="">
- <Input v-model="taskDatas[index].title" class="todo-input-enter" :placeholder="$L('在这里输入事项,回车即可保存')" @on-enter="addTask(index)"></Input>
- <div class="todo-input-close" @click="()=>{$set(taskDatas[index],'focus',false)}"><i class="ft icon"></i></div>
- </div>
- <div class="todo-input-pbox">
- <div class="todo-input-placeholder">{{$L('点击可快速添加需要处理的事项')}}</div>
- <div class="todo-input-close"><i class="ft icon"></i></div>
- </div>
- </label>
- </div>
- <div class="todo-card-content">
- <draggable
- v-model="taskDatas[index].lists"
- class="content-ul"
- group="task"
- draggable=".task-draggable"
- :animation="150"
- :disabled="taskSortDisabled || windowMax768"
- @sort="taskSortUpdate"
- @remove="taskSortUpdate">
- <div v-for="task in taskDatas[index].lists" class="content-li task-draggable" :key="task.id" :class="{complete:task.complete}" @click="openTaskModal(task)">
- <div class="subtask-progress"><em :style="{width: subtaskProgress(task) + '%'}"></em></div>
- <Icon v-if="task.complete" class="task-check" type="md-checkbox-outline" @click.stop="taskComplete(task, false)"/>
- <Icon v-else class="task-check" type="md-square-outline" @click.stop="taskComplete(task, true)"/>
- <div v-if="!!task.loadIng" class="task-loading"><w-loading></w-loading></div>
- <div v-if="task.overdue" class="task-overdue">[{{$L('超期')}}]</div>
- <div class="task-title">{{task.title}}<Icon v-if="task.desc" type="ios-list-box-outline" /></div>
- </div>
- <div v-if="taskDatas[index].hasMorePages === true" class="content-li more" @click="getTaskLists(index, true)">{{$L('加载更多')}}</div>
- </draggable>
- <div v-if="taskDatas[index].lists.length === 0 && taskDatas[index].loadIng == 0" class="content-empty">{{$L('恭喜你!已完成了所有待办')}}</div>
- <div v-if="taskDatas[index].loadIng > 0" class="content-loading"><w-loading></w-loading></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </w-content>
- <WDrawer v-model="todoDrawerShow" maxWidth="1000">
- <Tabs v-if="todoDrawerShow" v-model="todoDrawerTab">
- <TabPane :label="$L('待办日程')" name="calendar">
- <todo-calendar :canload="todoDrawerShow && todoDrawerTab == 'calendar'"></todo-calendar>
- </TabPane>
- <TabPane :label="$L('已完成的任务')" name="complete">
- <todo-complete :canload="todoDrawerShow && todoDrawerTab == 'complete'"></todo-complete>
- </TabPane>
- <TabPane :label="$L('我关注的任务')" name="attention">
- <todo-attention :canload="todoDrawerShow && todoDrawerTab == 'attention'"></todo-attention>
- </TabPane>
- </Tabs>
- </WDrawer>
- <WDrawer v-model="todoReportDrawerShow" maxWidth="1000">
- <Tabs v-if="todoReportDrawerShow" v-model="todoReportDrawerTab">
- <TabPane :label="$L('我的汇报')" name="my">
- <report-my :canload="todoReportDrawerShow && todoReportDrawerTab == 'my'"></report-my>
- </TabPane>
- <TabPane :label="$L('收到的汇报')" name="receive">
- <report-receive :canload="todoReportDrawerShow && todoReportDrawerTab == 'receive'"></report-receive>
- </TabPane>
- </Tabs>
- </WDrawer>
- </div>
- </template>
- <style lang="scss">
- .todo-input-enter {
- .ivu-input {
- border: 0;
- background-color: rgba(255, 255, 255, 0.9);
- }
- }
- </style>
- <style lang="scss" scoped>
- .todo {
- .todo-main {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- min-height: 500px;
- padding: 5px;
- .todo-ul {
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- width: 100%;
- .todo-li {
- flex: 1;
- height: 100%;
- position: relative;
- .todo-card {
- position: absolute;
- top: 10px;
- left: 10px;
- right: 10px;
- bottom: 10px;
- display: flex;
- flex-direction: column;
- .todo-card-head {
- flex-grow:0;
- flex-shrink:0;
- display: flex;
- align-items: center;
- padding: 0 10px;
- height: 38px;
- border-radius: 4px 4px 0 0;
- color: #ffffff;
- .ft.icon {
- transform: scale(1);
- }
- .flag {
- font-weight: bold;
- font-size: 14px;
- margin-right: 5px;
- min-width: 16px;
- }
- .todo-card-title {
- font-weight: bold;
- }
- .todo-input-box {
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- height: 100%;
- cursor: pointer;
- &:hover {
- .todo-input-placeholder {
- opacity: 1;
- }
- }
- &.active {
- .todo-input-pbox {
- display: none;
- }
- .todo-input-ibox {
- display: flex;
- }
- }
- .todo-input-placeholder {
- color: rgba(255, 255, 255, 0.6);
- padding-right: 6px;
- transition: all 0.2s;
- opacity: 0;
- }
- .todo-input-pbox,
- .todo-input-ibox {
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- padding-left: 14px;
- height: 100%;
- }
- .todo-input-ibox {
- display: none;
- }
- .todo-input-close {
- height: 100%;
- display: flex;
- align-items: center;
- padding-left: 8px;
- i {
- font-size: 18px;
- font-weight: normal;
- }
- }
- }
- &.p1 {
- background: rgba(248, 14, 21, 0.6);
- }
- &.p2 {
- background: rgba(236, 196, 2, 0.5);
- }
- &.p3 {
- background: rgba(0, 159, 227, 0.7);
- }
- &.p4 {
- background: rgba(121, 170, 28, 0.7);
- }
- }
- .todo-card-content {
- flex: 1;
- background-color: #f5f6f7;
- border-radius: 0 0 4px 4px;
- overflow: auto;
- transform: translateZ(0);
- .content-ul {
- display: flex;
- flex-direction: column;
- min-height: 20px;
- .content-li {
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- width: 100%;
- padding: 8px;
- color: #444444;
- border-bottom: dotted 1px rgba(153, 153, 153, 0.25);
- position: relative;
- cursor: pointer;
- &.complete {
- color: #999999;
- .task-title {
- text-decoration: line-through;
- }
- }
- &.more {
- color: #666;
- justify-content: center;
- }
- .task-check {
- font-size: 16px;
- padding-right: 6px;
- padding-top: 3px;
- }
- .task-loading {
- width: 15px;
- height: 15px;
- margin-right: 6px;
- margin-top: 3px;
- }
- .task-overdue {
- color: #ff0000;
- padding-right: 2px;
- }
- .task-title {
- flex: 1;
- word-break: break-all;
- &:hover {
- color: #000000;
- }
- .ivu-icon {
- font-size: 16px;
- color: #afafaf;
- vertical-align: top;
- padding: 2px 6px;
- transform: scale(0.98);
- }
- }
- .subtask-progress {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
- overflow: hidden;
- pointer-events: none;
- em {
- display: block;
- height: 100%;
- background-color: rgba(3, 150, 242, 0.07);
- }
- }
- }
- }
- .content-loading {
- width: 100%;
- height: 22px;
- text-align: center;
- margin-top: 8px;
- margin-bottom: 8px;
- }
- .content-empty {
- margin: 6px auto;
- text-align: center;
- color: #666;
- }
- }
- }
- }
- }
- }
- @media (max-width: 768px) {
- .todo-main {
- height: auto;
- .todo-ul {
- flex-direction: column;
- .todo-li {
- width: 100%;
- .todo-card {
- position: static;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- margin: 6px;
- display: flex;
- flex-direction: column;
- min-height: 320px;
- max-height: 520px;
- }
- }
- }
- }
- }
- }
- </style>
- <script>
- import draggable from 'vuedraggable'
- import WContent from "../components/WContent";
- import TodoCalendar from "../components/project/todo/calendar";
- import TodoComplete from "../components/project/todo/complete";
- import TodoAttention from "../components/project/todo/attention";
- import Task from "../mixins/task";
- import ReportMy from "../components/report/my";
- import ReportReceive from "../components/report/receive";
- import WDrawer from "../components/iview/WDrawer";
- export default {
- components: {
- WDrawer,
- ReportReceive,
- ReportMy, draggable, TodoAttention, TodoComplete, TodoCalendar, WContent},
- mixins: [
- Task
- ],
- data () {
- return {
- loadIng: 0,
- taskDatas: {
- "1": {lists: [], hasMorePages: false},
- "2": {lists: [], hasMorePages: false},
- "3": {lists: [], hasMorePages: false},
- "4": {lists: [], hasMorePages: false},
- },
- taskSortData: '',
- taskSortDisabled: false,
- todoDrawerShow: false,
- todoDrawerTab: 'calendar',
- todoReportDrawerShow: false,
- todoReportDrawerTab: 'my',
- }
- },
- mounted() {
- if ($A.getToken() === false) {
- window.location.replace($A.webUrl());
- return;
- }
- this.refreshTask();
- //
- $A.setOnTaskInfoListener('pages/todo',(act, detail) => {
- if (detail.username != this.usrName) {
- for (let level in this.taskDatas) {
- this.taskDatas[level].lists.some((task, i) => {
- if (task.id == detail.id) {
- this.taskDatas[level].lists.splice(i, 1);
- this.taskSortData = this.getTaskSort();
- return true;
- }
- });
- }
- return;
- }
- //特殊事件(非操作任务的)
- switch (act) {
- case 'deleteproject': // 删除项目
- case 'deletelabel': // 删除分类
- this.refreshTask();
- return;
- case 'addlabel': // 添加分类
- case "labelsort": // 调整分类排序
- case "tasksort": // 调整任务排序
- return;
- }
- //
- for (let level in this.taskDatas) {
- this.taskDatas[level].lists.some((task, i) => {
- if (task.id == detail.id) {
- this.taskDatas[level].lists.splice(i, 1, detail);
- return true;
- }
- });
- }
- //
- let addOrDelete = (isAdd) => {
- if (isAdd) {
- for (let level in this.taskDatas) {
- if (level == detail.level) {
- let index = this.taskDatas[level].lists.length;
- this.taskDatas[level].lists.some((task, i) => {
- if (detail.userorder > task.userorder || (detail.userorder == task.userorder && detail.id > task.id)) {
- index = i;
- return true;
- }
- });
- this.taskDatas[level].lists.splice(index, 0, detail);
- }
- }
- } else {
- for (let level in this.taskDatas) {
- this.taskDatas[level].lists.some((task, i) => {
- if (task.id == detail.id) {
- this.taskDatas[level].lists.splice(i, 1);
- return true;
- }
- });
- }
- }
- this.taskSortData = this.getTaskSort();
- };
- //
- switch (act) {
- case "title": // 标题
- case "desc": // 描述
- case "plannedtime": // 设置计划时间
- case "unplannedtime": // 取消计划时间
- case "complete": // 标记完成
- case "unfinished": // 标记未完成
- case "comment": // 评论
- // 这些都不用处理
- break;
- case "level": // 优先级
- for (let level in this.taskDatas) {
- this.taskDatas[level].lists.some((task, i) => {
- if (task.id == detail.id) {
- this.taskDatas[level].lists.splice(i, 1);
- return true;
- }
- });
- if (level == detail.level) {
- let index = this.taskDatas[level].lists.length;
- this.taskDatas[level].lists.some((task, i) => {
- if (detail.userorder > task.userorder || (detail.userorder == task.userorder && detail.id > task.id)) {
- index = i;
- return true;
- }
- });
- this.taskDatas[level].lists.splice(index, 0, detail);
- }
- }
- this.taskSortData = this.getTaskSort();
- break;
- case "create": // 创建任务
- case "username": // 负责人
- addOrDelete(detail.username == this.usrName);
- break;
- case "delete": // 删除任务
- case "archived": // 归档
- addOrDelete(false);
- break;
- case "unarchived": // 取消归档
- addOrDelete(true);
- break;
- }
- }, true);
- },
- deactivated() {
- this.todoDrawerShow = false;
- this.todoReportDrawerShow = false;
- },
- computed: {
- },
- watch: {
- usrName() {
- this.usrLogin && this.refreshTask();
- }
- },
- methods: {
- pTitle(p) {
- switch (p) {
- case "1":
- return this.$L("重要且紧急");
- case "2":
- return this.$L("重要不紧急");
- case "3":
- return this.$L("紧急不重要");
- case "4":
- return this.$L("不重要不紧急");
- }
- },
- refreshTask() {
- this.taskDatas = {
- "1": {lists: [], hasMorePages: false},
- "2": {lists: [], hasMorePages: false},
- "3": {lists: [], hasMorePages: false},
- "4": {lists: [], hasMorePages: false},
- };
- for (let i = 1; i <= 4; i++) {
- this.getTaskLists(i.toString());
- }
- },
- getTaskLists(index, isNext, withNextNum = 0) {
- let taskData = this.taskDatas[index];
- let currentPage = 1;
- let pagesize = 20;
- let withNextPage = false;
- //
- if (isNext === true) {
- if (taskData.hasMorePages !== true) {
- return;
- }
- currentPage = Math.max(1, $A.runNum(taskData['currentPage']));
- let tempLists = this.taskDatas[index].lists;
- if (tempLists.length >= currentPage * pagesize) {
- currentPage++;
- } else {
- withNextPage = true;
- }
- withNextNum = $A.runNum(withNextNum);
- }
- this.$set(taskData, 'hasMorePages', false);
- this.$set(taskData, 'loadIng', $A.runNum(taskData.loadIng) + 1);
- this.taskSortDisabled = true;
- this.loadIng++;
- $A.apiAjax({
- url: 'project/task/lists',
- data: {
- level: index,
- sorts: {key:'userorder', order:'desc'},
- page: currentPage,
- pagesize: pagesize,
- },
- complete: () => {
- this.loadIng--;
- this.taskSortDisabled = false;
- this.$set(taskData, 'loadIng', $A.runNum(taskData.loadIng) - 1);
- },
- success: (res) => {
- if (res.ret === 1) {
- let inLists;
- res.data.lists.forEach((data) => {
- inLists = false;
- taskData.lists.some((item, i) => {
- if (item.id == data.id) {
- taskData.lists.splice(i, 1, data);
- return inLists = true;
- }
- });
- if (!inLists) {
- taskData.lists.push(data);
- }
- });
- this.taskSortData = this.getTaskSort();
- this.$set(taskData, 'currentPage', res.data.currentPage);
- this.$set(taskData, 'hasMorePages', res.data.hasMorePages);
- if (res.data.currentPage && withNextPage && withNextNum < 5) {
- this.getTaskLists(index, true, withNextNum + 1);
- }
- } else {
- this.$set(taskData, 'lists', []);
- this.$set(taskData, 'hasMorePages', false);
- }
- }
- });
- },
- addTask(index) {
- let taskData = this.taskDatas[index];
- let title = $A.trim(taskData.title);
- if ($A.count(title) == 0) {
- return;
- }
- this.$set(taskData, 'focus', false);
- this.$set(taskData, 'title', '');
- //
- let tempId = $A.randomString(16);
- taskData.lists.unshift({
- id: tempId,
- title: title,
- loadIng: true,
- });
- this.taskSortDisabled = true;
- $A.apiAjax({
- url: 'project/task/add',
- data: {
- title: title,
- level: index,
- },
- complete: () => {
- this.taskSortDisabled = false;
- },
- error: () => {
- taskData.lists.some((item, i) => {
- if (item.id == tempId) {
- taskData.lists.splice(i, 1);
- return true;
- }
- });
- alert(this.$L('网络繁忙,请稍后再试!'));
- },
- success: (res) => {
- if (res.ret === 1) {
- this.$Message.success(res.msg);
- } else {
- this.$Modal.error({title: this.$L('温馨提示'), content: res.msg});
- }
- taskData.lists.some((item, i) => {
- if (item.id == tempId) {
- if (res.ret === 1) {
- taskData.lists.splice(i, 1, res.data);
- } else {
- taskData.lists.splice(i, 1);
- }
- return true;
- }
- });
- this.taskSortData = this.getTaskSort();
- }
- });
- },
- getTaskSort() {
- let sortData = "",
- taskData = "";
- for (let level in this.taskDatas) {
- taskData = "";
- this.taskDatas[level].lists.forEach((task) => {
- if (taskData) taskData += "-";
- taskData += task.id;
- });
- if (sortData) sortData += ";";
- sortData += level + ":" + taskData;
- }
- return sortData;
- },
- handleTodo(event) {
- switch (event) {
- case 'calendar':
- case 'complete':
- case 'attention': {
- this.todoDrawerShow = true;
- this.todoDrawerTab = event;
- break;
- }
- case 'report': {
- this.todoReportDrawerShow = true;
- break;
- }
- }
- },
- taskSortUpdate() {
- let oldSort = this.taskSortData;
- let newSort = this.getTaskSort();
- if (oldSort == newSort) {
- return;
- }
- this.taskSortData = newSort;
- this.taskSortDisabled = true;
- $A.apiAjax({
- url: 'project/sort/todo',
- data: {
- oldsort: oldSort,
- newsort: newSort,
- },
- complete: () => {
- this.taskSortDisabled = false;
- },
- error: () => {
- this.refreshTask();
- alert(this.$L('网络繁忙,请稍后再试!'));
- },
- success: (res) => {
- if (res.ret === 1) {
- this.$Message.success(res.msg);
- } else {
- this.refreshTask();
- this.$Modal.error({title: this.$L('温馨提示'), content: res.msg});
- }
- }
- });
- },
- subtaskProgress(task) {
- const {subtask, complete} = task;
- if (!subtask || subtask.length === 0) {
- return complete ? 100 : 0;
- }
- const completeLists = subtask.filter((item) => { return item.status == 'complete'});
- return parseFloat(((completeLists.length / subtask.length) * 100).toFixed(2));
- },
- openTaskModal(taskDetail) {
- this.taskDetail(taskDetail);
- },
- },
- }
- </script>
|