diff --git a/app/oa/view/plan/calendar.html b/app/oa/view/plan/calendar.html index e6da437..96c483b 100644 --- a/app/oa/view/plan/calendar.html +++ b/app/oa/view/plan/calendar.html @@ -135,17 +135,17 @@ user-select: none;} \
\ \ - 提醒*\ + 优先级*\ \ -
'+remind_type+'
\ +
'+type+'
\ \ \ \ 日程内容*\ \ - 优先级*\ + 提醒*\ \ -
'+type+'
\ +
'+remind_type+'
\ \ \ \ @@ -228,20 +228,34 @@ user-select: none;} dropdown.render({ elem: '#type' ,data: [{ - title: ' 紧急', + title: '紧急', + templet: function(d){ + return ' ' + d.title; + }, id: 1 },{ - title: ' 重要', - + title: '重要', + templet: function(d){ + return ' ' + d.title; + }, id: 2 },{ - title: ' 次要', + title: '次要', + templet: function(d){ + return ' ' + d.title; + }, id: 3 },{ - title: ' 不重要', + title: '不重要', + templet: function(d){ + return ' ' + d.title; + }, id: 4 },{ - title: ' 无优先级', + title: '无优先级', + templet: function(d){ + return ' ' + d.title; + }, id: 5 }] ,click: function(obj){ diff --git a/app/oa/view/plan/index.html b/app/oa/view/plan/index.html index 111c4bc..9716896 100644 --- a/app/oa/view/plan/index.html +++ b/app/oa/view/plan/index.html @@ -411,20 +411,34 @@ dropdown.render({ elem: '#type' ,data: [{ - title: ' 紧急', + title: '紧急', + templet: function(d){ + return ' ' + d.title; + }, id: 1 },{ - title: ' 重要', - + title: '重要', + templet: function(d){ + return ' ' + d.title; + }, id: 2 },{ - title: ' 次要', + title: '次要', + templet: function(d){ + return ' ' + d.title; + }, id: 3 },{ - title: ' 不重要', + title: '不重要', + templet: function(d){ + return ' ' + d.title; + }, id: 4 },{ - title: ' 无优先级', + title: '无优先级', + templet: function(d){ + return ' ' + d.title; + }, id: 5 }] ,click: function(obj){