-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.txt
94 lines (69 loc) · 3.81 KB
/
demo.txt
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
${userLoginId}
<#list list4 as list>
<#if '${list.owner!}' == '${userLoginId}'>
<#assign owner = '${userLoginId}'>
<#else>
</#if>
</#list>
<#if '${owner!}' == '${userLoginId}'>
<div id="footer_show">
<div class="small-chat-box fadeInRight animated wrapper wrapper-content">
<div class="heading" draggable="true">
<small class="chat-date pull-right">
${nowTimestamp?string("YYYY/MM/dd")}
</small>
今日任务便签
</div>
<div class="row">
<a id="footer_show_a" href="\gudao\control\dailyTask" style="text-decoration:underline;">
<p id="footer_show_a_p">任务详情页</p>
</a>
<div class="ibox-content1">
<div class="chat-users-for">
<div class="users-list">
<!-- ${today}
${thisToday} -->
<br />
<#assign seq>
<#list dailyTaskRecord6 as dailyTask6>
${dailyTask6.taskName}
</#list>
</#assign>
<!-- ${seq} -->
<#list list4 as a>
<!-- ${a.taskName}
${a_index}
${list4?size} -->
<#if '${seq?contains(a.taskName)?string}' == 'true'>
<#else>
<div class="chat-user-for animated" id="animation_box_${a_index}">
<span class="pull-right label label_footer label-primary" id="upload_task_${a_index}" >完成
</span>
<div class="chat-user-name">
<a href="#" id="footer_show_a">${a.taskName}</a>
</div>
<div style="display: none">
<form type="hidden" action="<@ofbizUrl>createDailyTaskRecord</@ofbizUrl>" method="post" name="createDailyTaskRecord" id="createDailyTaskRecordForm" id="saveReportForm" onsubmit="return saveReport();" target="targetIfr">
<input type="text" name="owner" value="${a.owner}"/>
<input type="text" name="taskName" value="${a.taskName}"/>
<button id="online_${a_index}" type="submit">完成</button>
</form>
</div>
</div>
</#if>
</#list>
<iframe name="targetIfr" style="display:none"></iframe>
</div>
</div>
</div>
</div>
</div>
<div id="small-chat">
<span class="badge badge-warning pull-right">${list4?size - dailyTaskRecord6?size}</span>
</a>
<button class="btn btn-info btn-circle btn-lg" type="button"><i class="fa fa-check"></i>
</button>
</div>
</div>
<#else>
</#if>