cy
2022-06-23 b83c40548208609d0d6826be13d742c28a784806
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>模板预览</title>
[#include "/business/pages/include/static.html" /]
[#include "/component/propTemplate.html" /]
</head>
<body class="end_task_body widthauto">
<div class="edit_title"><h3>基本信息</h3></div>
<table class="edit_layout2">
<tr>
    <th><label class="required">配置名称:</label></th>
    <td><input class="general" type="text"/></td>
    <th><label class="required">SN序列号:</label></th>
    <td><input class="general" type="text"/></td>
</tr>
<tr>
    <th><label>负责科室:</label></th>
    <td><input class="general" type="text"/></td>
    <th><label>负责人:</label></th>
    <td><input class="general" type="text"/></td>
</tr>
<tr>
    <th><label>厂商:</label></th>
    <td><select class="mysel"><option>请选择</option></select></td>
    <th><label>集成商:</label></th>
    <td><select class="mysel"><option>请选择</option></select></td>
</tr>
<tr>
    <th><label>位置:</label></th>
    <td colspan="3"><input class="general maintitle" type="text"/></td>
</tr>
<tr>
    <th><label>购买时间:</label></th>
    <td><input class="general" type="text"/></td>
    <th><label>过保时间:</label></th>
    <td><input class="general" type="text"/></td>
</tr>
<tr>
    <th><label>续保时间:</label></th>
    <td><input class="general" type="text"/></td>
    <th><label>续保过保时间:</label></th>
    <td><input class="general" type="text"/></td>
</tr>
            
[#if groupProps?? && groupProps?size>0]
    [#list groupProps as group]
        [#if group.props?? && group.props?size>0]
            [#if group.gid!="-1"]
            <div class="edit_title"><h3>${group.GROUP_NAME}</h3></div>
            <table class="edit_layout2">
            [/#if]
            [@prop source=group.props groupid=group.gid /]
            [#if group.gid!="-1"]
            </table>
            [#else]
            <tr>
                <th><label>备注:</label></th>
                <td colspan="3"><textarea class="general" name="note" id="note"></textarea></td>
            </tr>
            </table>    
            [/#if]
        [/#if]
    [/#list]
[/#if]
</body>
</html>