diff --git a/app/common.php b/app/common.php index 8d45853..fb26c9f 100644 --- a/app/common.php +++ b/app/common.php @@ -1014,6 +1014,25 @@ function create_tree_list($pid, $arr, $group, &$tree = []) return $tree; } +function table_tree_list($before_task, $arr, $name='pid', &$tree = []) +{ + foreach ($arr as $key => $vo) { + if ($vo[$name] == $before_task) { + $child = table_tree_list($vo['id'], $arr, $name); + if ($child) { + $vo['isParent'] = true; + $vo['children'] = $child; + } + else{ + $vo['isParent'] = false; + $vo['children'] = []; + } + $tree[] = $vo; + } + } + return $tree; +} + //递归排序,用于分类选择 function set_recursion($result, $pid = 0, $level=-1) diff --git a/app/home/view/index/layout_project.html b/app/home/view/index/layout_project.html index 76f1239..9a2be27 100644 --- a/app/home/view/index/layout_project.html +++ b/app/home/view/index/layout_project.html @@ -20,8 +20,8 @@ function layoutProject(table){ return 'P' + d.id; } }, - {field: 'status', title: '状态', align: 'center', width: 80, templet: function (d) { - var html = '' + d.status_name + ''; + {field: 'status', title: '状态', align: 'center', width: 90, templet: function (d) { + var html = '『' + d.status_name + '』'; return html; } }, diff --git a/app/home/view/index/layout_task.html b/app/home/view/index/layout_task.html index bc8fca7..11240b6 100644 --- a/app/home/view/index/layout_task.html +++ b/app/home/view/index/layout_task.html @@ -20,8 +20,8 @@ function layoutTask(table){ return 'T' + d.id; } }, - {field: 'flow_status', title: '状态', align: 'center', width: 80, templet: function (d) { - var html = '' + d.flow_name + ''; + {field: 'flow_status', title: '状态', align: 'center', width: 90, templet: function (d) { + var html = '『' + d.flow_name + '』'; return html; } }, diff --git a/app/install/data/gouguoa.sql b/app/install/data/gouguoa.sql index efe2f97..b3d1dcc 100644 --- a/app/install/data/gouguoa.sql +++ b/app/install/data/gouguoa.sql @@ -381,6 +381,8 @@ INSERT INTO `oa_admin_rule` VALUES (199, 196, 'home/files/delete', '删除附件 INSERT INTO `oa_admin_rule` VALUES (200, 196, 'home/files/get_group', '附件分组','附件分组', 'home', '', 2, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (201, 196, 'home/files/add_group', '新建/编辑','附件分组', 'home', '', 2, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (202, 196, 'home/files/del_group', '删除附件分组','附件分组', 'home', '', 2, 1, 1, 0, 0); + +INSERT INTO `oa_admin_rule` VALUES (203, 76, 'user/personal/leave_check', '资料交接', '离职资料', 'user', '', 2, 1, 1, 0, 0); -- ---------------------------- -- Table structure for oa_admin_group -- ---------------------------- @@ -401,9 +403,9 @@ CREATE TABLE `oa_admin_group` ( -- ---------------------------- -- Records of oa_admin_group -- ---------------------------- -INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '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', '1,2,3,4,5,6,7,8,9,10,11,12','超级员工权限,拥有系统的最高权限,不可修改。', 0, 0); -INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '1,9,13,17,20,23,25,26,30,2,34,37,41,44,47,50,53,56,59,3,62,65,68,69,71,74,76,4,79,82,85,5,88,91,92,93,94,6,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,140,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','1,2,3,4,5,6,7,8,9,10,11,12', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0); -INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '5,88,91,92,93,6,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,140,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','1,2,3,4,5,6,7,8,9,10,11,12', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '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', '1,2,3,4,5,6,7,8,9,10,11,12','超级员工权限,拥有系统的最高权限,不可修改。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '1,9,13,17,20,23,25,26,30,2,34,37,41,44,47,50,53,56,59,3,62,65,68,69,71,74,76,4,79,82,85,5,88,91,92,93,94,6,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,140,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','1,2,3,4,5,6,7,8,9,10,11,12', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '5,88,91,92,93,6,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,140,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','1,2,3,4,5,6,7,8,9,10,11,12', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0); -- ---------------------------- -- Table structure for oa_data_auth @@ -527,7 +529,9 @@ CREATE TABLE `oa_personal_quit` ( `remark` varchar(1000) NULL DEFAULT '' COMMENT '备注', `admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', `lead_admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '部门负责人', - `connect_uids` varchar(100) NOT NULL DEFAULT '' COMMENT '交接人', + `connect_uids` varchar(100) NOT NULL DEFAULT '' COMMENT '参与交接人,多', + `connect_id` int(11) NOT NULL DEFAULT 0 COMMENT '资料交接人', + `connect_time` int(11) NOT NULL DEFAULT 0 COMMENT '资料交接时间', `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', `quit_time` int(11) NOT NULL DEFAULT 0 COMMENT '离职时间', `create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', @@ -1722,6 +1726,7 @@ DROP TABLE IF EXISTS `oa_project_task`; CREATE TABLE `oa_project_task` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '' COMMENT '主题', + `pid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '父任务id', `project_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '关联项目id', `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', `plan_hours` decimal(10, 1) NOT NULL DEFAULT 0.00 COMMENT '预估工时', @@ -1730,8 +1735,9 @@ CREATE TABLE `oa_project_task` ( `director_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '指派给(负责人)', `assist_admin_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '协助人员,如:1,2,3', `cate` tinyint(1) NOT NULL DEFAULT 1 COMMENT '所属工作类型', - `type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '任务类型:1需求,2设计,3研发,4缺陷', + `type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '任务类型(预留字段)', `priority` tinyint(1) NOT NULL DEFAULT 1 COMMENT '优先级:1低,2中,3高,4紧急', + `before_task` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '前置任务id', `flow_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '流转状态:1待办的,2进行中,3已完成,4已拒绝,5已关闭', `done_ratio` int(2) NOT NULL DEFAULT 0 COMMENT '完成进度:0,20,40,50,60,80,100', `content` text NULL COMMENT '任务描述', diff --git a/app/project/common.php b/app/project/common.php index 03220f7..cd990a4 100644 --- a/app/project/common.php +++ b/app/project/common.php @@ -106,4 +106,33 @@ function cross_count($arrData) } } return $documents; +} + +//读取后置任务的ids +function admin_after_task_son($task_id = 0, $list = []) +{ + $task_ids = Db::name('ProjectTask')->where([['before_task','in',$task_id]])->column('id'); + if(!empty($task_ids)){ + $new_list = array_merge($list, $task_ids); + $list = admin_after_task_son($task_ids, $new_list); + } + return $list; +} + +//读取父任务的ids +function admin_parent_task($task_id = 0, $list = []) +{ + $pids = Db::name('ProjectTask')->where([['pid','in',$task_id]])->column('id'); + if(!empty($pids)){ + $new_list = array_merge($list, $pids); + $list = admin_parent_task($pids, $new_list); + } + return $list; +} + +//获取后置任务 +function after_task($task_id) +{ + $list = Db::name('ProjectTask')->where('before_task',$task_id)->order('id desc')->select()->toArray(); + return $list; } \ No newline at end of file diff --git a/app/project/controller/Api.php b/app/project/controller/Api.php index 5a1a629..9853392 100644 --- a/app/project/controller/Api.php +++ b/app/project/controller/Api.php @@ -10,6 +10,7 @@ namespace app\project\controller; use app\api\BaseController; use app\oa\model\Schedule as ScheduleList; use app\project\model\Project as ProjectList; +use app\project\model\ProjectTask as TaskList; use app\project\model\ProjectLog; use app\project\model\ProjectComment; use think\facade\Db; @@ -542,6 +543,87 @@ class Api extends BaseController return table_assign(0, '', $list); } + //获取任务列表 + public function get_task(){ + $param = get_params(); + $param['uid'] = $this->uid; + $list = (new TaskList())->list($param); + return table_assign(0, '', $list); + } + + //获取树形任务列表 + public function get_project_task(){ + $param = get_params(); + $list = Db::name('ProjectTask')->withoutField('content,md_content')->where('project_id',$param['project_id'])->order('id desc')->select()->toArray(); + foreach ($list as $key => &$vo) { + $vo['director_name'] = '-'; + if ($vo['director_uid'] > 0) { + $vo['director_name'] = Db::name('Admin')->where(['id' => $vo['director_uid']])->value('name'); + } + $assist_admin_names = Db::name('Admin')->where([['id', 'in', $vo['assist_admin_ids']]])->column('name'); + if (empty($assist_admin_names)) { + $vo['assist_admin_names'] = '-'; + } else { + $vo['assist_admin_names'] = implode(',', $assist_admin_names); + } + $vo['cate_name'] = Db::name('WorkCate')->where(['id' => $vo['cate']])->value('title'); + $vo['after_num'] = Db::name('ProjectTask')->where(['before_task'=>$vo['id'],'delete_time' => 0])->count(); + if($vo['after_num']==1){ + $vo['after_id'] = Db::name('ProjectTask')->where(['before_task'=>$vo['id'],'delete_time' => 0])->value('id'); + } + $vo['delay'] = 0; + if ($vo['end_time'] > 0) { + $vo['end_time'] = date('Y-m-d', $vo['end_time']); + if ($vo['over_time'] > 0 && $vo['flow_status'] < 4) { + $vo['delay'] = countDays($vo['end_time'], date('Y-m-d', $vo['over_time'])); + } + if ($vo['over_time'] == 0 && $vo['flow_status'] < 4) { + $vo['delay'] = countDays($vo['end_time']); + } + } + else{ + $vo['end_time'] = '-'; + } + $vo['priority_name'] = TaskList::$Priority[(int) $vo['priority']]; + $vo['flow_name'] = TaskList::$FlowStatus[(int) $vo['flow_status']]; + $vo['type_name'] = TaskList::$Type[(int) $vo['type']]; + } + $res['total'] = count($list); + $res['data'] = table_tree_list(0, $list); + return table_assign(0, '', $res); + } + + //子任务新增 + public function task_add_son() + { + $param = get_params(); + $parent_task_array = admin_parent_task($param['id']); + if (in_array($param['pid'], $parent_task_array)) { + return to_assign(1, '子任务不能是该任务的父级以上的任务'); + } + $after_task_array = admin_after_task_son($param['id']); + if (in_array($param['pid'], $after_task_array)) { + return to_assign(1, '子任务不能是该任务本身或其前置任务'); + } + $res = Db::name('ProjectTask')->where(['id'=>$param['id']])->update(['pid'=>$param['pid']]); + if ($res) { + return to_assign(0, "操作成功"); + } else { + return to_assign(1, "操作失败"); + } + } + + //子任务删除 + public function task_del_son() + { + $param = get_params(); + $res = Db::name('ProjectTask')->where(['id'=>$param['id']])->update(['pid'=>0]); + if ($res) { + return to_assign(0, "操作成功"); + } else { + return to_assign(1, "操作失败"); + } + } //编辑阶段 public function reset_check() { diff --git a/app/project/controller/Task.php b/app/project/controller/Task.php index 9d80ac1..a60702c 100644 --- a/app/project/controller/Task.php +++ b/app/project/controller/Task.php @@ -40,12 +40,6 @@ class Task extends BaseController if (request()->isPost()) { if (isset($param['end_time'])) { $param['end_time'] = strtotime(urldecode($param['end_time'])); - }if (isset($param['flow_status'])) { - if ($param['flow_status'] == 3) { - $param['over_time'] = time(); - } else { - $param['over_time'] = 0; - } } if (!empty($param['id']) && $param['id'] > 0) { $task = (new TaskList())->detail($param['id']); @@ -55,8 +49,31 @@ class Task extends BaseController // 验证失败 输出错误信息 return to_assign(1, $e->getError()); } + if (isset($param['flow_status'])) { + if ($param['flow_status'] == 3) { + $param['over_time'] = time(); + $param['done_ratio'] = 100; + if($task['before_task']>0){ + $flow_status = Db::name('ProjectTask')->where(['id' => $task['before_task']])->value('flow_status'); + if($flow_status !=3){ + return to_assign(1, '前置任务未完成,不能设置已完成'); + } + } + } else { + $param['over_time'] = 0; + $param['done_ratio'] = 0; + } + } + if(isset($param['before_task'])){ + $after_task_array = admin_after_task_son($param['id']); + //包括自己在内 + $after_task_array[] = $param['id']; + if (in_array($param['before_task'], $after_task_array)) { + return to_assign(1, '前置任务不能是该任务本身或其后置任务'); + } + } $param['update_time'] = time(); - $res = TaskList::where('id', $param['id'])->strict(false)->field(true)->update($param); + $res = TaskList::where('id', $param['id'])->strict(false)->save($param); if ($res) { add_log('edit', $param['id'], $param); add_project_log($this->uid,'task',$param, $task); @@ -124,7 +141,13 @@ class Task extends BaseController ->order('mf.create_time desc') ->where(array('mf.topic_id' => $id, 'mf.module' => 'task')) ->select()->toArray(); + + $son_task = Db::name('ProjectTask')->where(['pid' => $detail['id']])->select()->toArray(); + foreach ($son_task as $key => &$vo) { + $vo['flow_name'] = TaskList::$FlowStatus[(int) $vo['flow_status']]; + } + View::assign('son_task', $son_task); View::assign('detail', $detail); View::assign('file_array', $file_array); View::assign('role_edit', $role_edit); diff --git a/app/project/model/ProjectLog.php b/app/project/model/ProjectLog.php index 5965138..a6845d4 100644 --- a/app/project/model/ProjectLog.php +++ b/app/project/model/ProjectLog.php @@ -47,6 +47,7 @@ class ProjectLog extends Model 'cate' => array('icon' => 'icon-wodedianping', 'title' => '任务类别'), 'done_ratio' => array('icon' => 'icon-wodedianping', 'title' => '完成进度'), 'project_id' => array('icon' => 'icon-wodedianping', 'title' => '关联项目'), + 'before_task' => array('icon' => 'icon-wodedianping', 'title' => '前置任务'), 'content' => array('icon' => 'icon-wodedianping', 'title' => '描述'), 'file' => array('icon' => 'icon-sucaiziyuan', 'title' => '文件'), 'new' => array('icon' => 'icon-zidingyishezhi', 'title' => '任务'), @@ -99,6 +100,10 @@ class ProjectLog extends Model if ($v['field'] == 'project_id') { $v['old_content'] = Db::name('Project')->where(['id' => $v['old_content']])->value('name'); $v['new_content'] = Db::name('Project')->where(['id' => $v['new_content']])->value('name'); + } + if ($v['field'] == 'before_task') { + $v['old_content'] = Db::name('ProjectTask')->where(['id' => $v['old_content']])->value('title'); + $v['new_content'] = Db::name('ProjectTask')->where(['id' => $v['new_content']])->value('title'); } if ($v['field'] == 'cate') { $v['old_content'] = Db::name('WorkCate')->where(['id' => $v['old_content']])->value('title'); diff --git a/app/project/model/ProjectTask.php b/app/project/model/ProjectTask.php index f719a89..5c502b0 100644 --- a/app/project/model/ProjectTask.php +++ b/app/project/model/ProjectTask.php @@ -75,8 +75,18 @@ class ProjectTask extends Model } if (!empty($param['keywords'])) { $where[] = ['title|content', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['task_id'])) { + $where[] = ['id', '<>', $param['task_id']]; + } + if (!empty($param['set_pid'])) { + $where[] = ['pid', '=', 0]; + $where[] = ['id', '<>', $param['set_pid']]; + $where[] = ['before_task', '<>', $param['set_pid']]; + } + if (!empty($param['before_task'])) { + $where[] = ['before_task', '=', $param['before_task']]; } - $where[] = ['delete_time', '=', 0]; $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; @@ -96,7 +106,6 @@ class ProjectTask extends Model $item['director_name'] = Db::name('Admin')->where(['id' => $item['director_uid']])->value('name'); } $assist_admin_names = Db::name('Admin')->where([['id', 'in', $item['assist_admin_ids']]])->column('name'); - $item['cate_name'] = Db::name('WorkCate')->where(['id' => $item['cate']])->value('title'); if (empty($assist_admin_names)) { $item['assist_admin_names'] = '-'; } else { @@ -105,9 +114,13 @@ class ProjectTask extends Model if ($item['project_id'] == 0) { $item['project_name'] = '-'; } else { - $item['project_name'] = Db::name('Project')->where(['id' => $item['project_id']])->value('name'); + $item['project_name'] = Db::name('Project')->where(['id' => $item['project_id'],'delete_time' => 0])->value('name'); } - + $item['cate_name'] = Db::name('WorkCate')->where(['id' => $item['cate']])->value('title'); + $item['after_num'] = Db::name('ProjectTask')->where(['before_task'=>$item['id'],'delete_time' => 0])->count(); + if($item['after_num']==1){ + $item['after_id'] = Db::name('ProjectTask')->where(['before_task'=>$item['id'],'delete_time' => 0])->value('id'); + } $item['delay'] = 0; if ($item['end_time'] > 0) { $item['end_time'] = date('Y-m-d', $item['end_time']); @@ -133,11 +146,19 @@ class ProjectTask extends Model { $detail = Db::name('ProjectTask')->where(['id' => $id])->find(); if (!empty($detail)) { - $detail['product_name'] = ''; + $detail['before_task_name'] = ''; $detail['project_name'] = ''; if ($detail['project_id'] > 0) { $detail['project_name'] = Db::name('Project')->where(['id' => $detail['project_id']])->value('name'); } + + if ($detail['before_task'] > 0) { + $before_task = Db::name('ProjectTask')->where(['id' => $detail['before_task']])->find(); + $detail['before_task_name'] = $before_task['title']; + $detail['before_task_flow_status'] = $before_task['flow_status']; + $detail['before_task_flow_name'] = self::$FlowStatus[(int) $before_task['flow_status']]; + } + $detail['admin_name'] = Db::name('Admin')->where(['id' => $detail['admin_id']])->value('name'); $detail['work_hours'] = Db::name('Schedule')->where(['delete_time' => 0, 'tid' => $detail['id']])->sum('labor_time'); $detail['cate_name'] = Db::name('WorkCate')->where(['id' => $detail['cate']])->value('title'); diff --git a/app/project/view/index/index.html b/app/project/view/index/index.html index 8ff7ad2..1836faf 100644 --- a/app/project/view/index/index.html +++ b/app/project/view/index/index.html @@ -59,8 +59,8 @@ } } , { - field: 'status', title: '状态', align: 'center', width: 70, rowspan: 2, templet: function (d) { - var html = '' + d.status_name + ''; + field: 'status', title: '状态', align: 'center', width: 90, rowspan: 2, templet: function (d) { + var html = '『' + d.status_name + '』'; return html; } } diff --git a/app/project/view/index/view_document.html b/app/project/view/index/view_document.html index 7fb2e15..a076469 100644 --- a/app/project/view/index/view_document.html +++ b/app/project/view/index/view_document.html @@ -14,7 +14,7 @@ function project_document(){ $('#projectTab').find('li').eq(3).data('load','true'); let tool = layui.tool, table = layui.table; //项目任务 - parent.layui.documentTable = table.render({ + layui.documentTable = table.render({ elem: '#document', title: '文档列表', toolbar: '#toolbardocument', @@ -57,7 +57,7 @@ function project_document(){ var checkStatus = table.checkStatus(obj.config.id); switch(obj.event){ case 'add': - parent.layui.tool.side('/project/document/add?project_id='+project_id); + tool.side('/project/document/add?project_id='+project_id); break; }; }); @@ -66,10 +66,10 @@ function project_document(){ var data = obj.data; //获得当前行数据 if(obj.event === 'detail'){ //查看 let url = '/project/document/view/id/'+data.id; - parent.layui.tool.side(url); + tool.side(url); } if(obj.event === 'edit'){ - parent.layui.tool.side('/project/document/add?id='+data.id); + tool.side('/project/document/add?id='+data.id); return; } if (obj.event === 'del') { diff --git a/app/project/view/index/view_overview.html b/app/project/view/index/view_overview.html index b7678db..0c262d7 100644 --- a/app/project/view/index/view_overview.html +++ b/app/project/view/index/view_overview.html @@ -3,7 +3,7 @@