cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
[#if info?? && info.datas?size>0]
            <table class="display_form common_list_table">
            <tr class="title">
                <td width="5%">序号</td>
                <td width="10%">模板名称</td>
                <td width="10%">版本号</td>
                <td width="10%">模板类型</td>
                <td width="15%">没有调查的指标项分数</td>
                <td width="10%">创建人</td>
                <td width="10%">创建时间</td>
                <td width="5%">状态</td>
                <td width="25%;">操作</td>
            </tr>
            [#list info.datas as template]
            <tr>
                <td>${info.rowNum+template_index+1}</td>
                <td>${template.TEMPLATE_NAME}</td>
                <td>${template.VERSION}</td>
                <td>${Constants.getmapCUSTOMER_SATIS_TEMPLATE_TEMPLATE_TYPE_Label(template.TEMPLATE_TYPE+"")}</td>
                <td>${template.DEFAULTSCORE}</td>
                <td>${template.USER_NAME}</td>
                <td>${DateUtil.format("yyyy-MM-dd",template.UPLOAD_TIME)}</td>
                <td>${Constants.getmapCUSTOMER_SATIS_TEMPLATE_STATE_Label(template.STATE+"")}</td>
                <td class="list_btnmore_wrap">
                    [#if template.STATE == 0]<a class="blue_txt lb_button" href="javascript:modify('${template.ID}');"><span>修改</span></a>[#else]<a class="grey_txt lb_button"style="cursor:default;"><span>修改</span></a>[/#if]
                    [#if template.STATE != 1]<a class="blue_txt lb_button" href="javascript:deletes('${template.ID}','${template.TEMPLATE_TYPE}');"><span>启用</span></a>[#else]<a class="grey_txt lb_button"style="cursor:default;"><span>启用</span></a>[/#if]
                    <a class="blue_txt lb_button" href="javascript:view('${template.ID}','${template.TEMPLATE_TYPE}');"><span>模板预览</span></a>
                    [#if template.STATE == 0]<a class="blue_txt" target="_blank" href="${base}/business/pages/satisfactionconfig/satisquotaList.html?templateId=${template.ID}&state=${template.STATE}"><span>调查项配置</span></a>[#else]<a class="grey_txt"style="cursor:default;"><span>调查项配置</span></a>[/#if]
            </td>
            </tr>
            [/#list]  
           </table>
       [#else]
              <div class="loadpos"><span class="nodata"></span></div>
       [/#if]