|
|
@@ -752,11 +752,11 @@ public class MessageFragment extends EasyFragment {
|
|
|
if (num > 0) {
|
|
|
num_tv.setText(num + "");
|
|
|
num_tv.setVisibility(View.VISIBLE);
|
|
|
- content_tv.setText("您有" + num + "条订阅消息");
|
|
|
+ content_tv.setText("您有新的订阅消息!");
|
|
|
time_tv.setText("刚刚");
|
|
|
} else {
|
|
|
num_tv.setVisibility(View.GONE);
|
|
|
- content_tv.setText("您暂无订阅消息");
|
|
|
+ content_tv.setText("您暂无新的订阅消息!");
|
|
|
}
|
|
|
break;
|
|
|
case Constants.SUCCESS_LOGIN://公告
|
|
|
@@ -786,11 +786,11 @@ public class MessageFragment extends EasyFragment {
|
|
|
if (TASK_count > 0) {
|
|
|
task_num_tv.setText(TASK_count + "");
|
|
|
task_num_tv.setVisibility(View.VISIBLE);
|
|
|
- task_content_tv.setText("您有" + TASK_count + "条任务");
|
|
|
+ task_content_tv.setText("您有新的任务!");
|
|
|
task_time_tv.setText("刚刚");
|
|
|
} else {
|
|
|
task_num_tv.setVisibility(View.GONE);
|
|
|
- task_content_tv.setText("您暂无任务");
|
|
|
+ task_content_tv.setText("您暂无新的任务!");
|
|
|
}
|
|
|
break;
|
|
|
case DAIBAN_MSG:
|
|
|
@@ -798,11 +798,11 @@ public class MessageFragment extends EasyFragment {
|
|
|
if (DAIBAN_count > 0) {
|
|
|
schedule_num_tv.setText(DAIBAN_count + "");
|
|
|
schedule_num_tv.setVisibility(View.VISIBLE);
|
|
|
- schedule_content_tv.setText("您有" + DAIBAN_count + "条待审批流程");
|
|
|
+ schedule_content_tv.setText("您有新的待审批流程!");
|
|
|
schedule_time_tv.setText("刚刚");
|
|
|
} else {
|
|
|
schedule_num_tv.setVisibility(View.GONE);
|
|
|
- schedule_content_tv.setText("您暂无审批流程");
|
|
|
+ schedule_content_tv.setText("您暂无新的审批流程!");
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
@@ -815,11 +815,11 @@ public class MessageFragment extends EasyFragment {
|
|
|
if (count > 0) {
|
|
|
notice_num_tv.setText(count + "");
|
|
|
notice_num_tv.setVisibility(View.VISIBLE);
|
|
|
- notice_content_tv.setText("您有" + count + "条通知");
|
|
|
+ notice_content_tv.setText("您有新的通知公告!");
|
|
|
notice_time_tv.setText("刚刚");
|
|
|
} else {
|
|
|
notice_num_tv.setVisibility(View.GONE);
|
|
|
- notice_content_tv.setText("您暂无通知");
|
|
|
+ notice_content_tv.setText("您暂无新的通知公告!");
|
|
|
}
|
|
|
}
|
|
|
|