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
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
<!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 colspan="3"><input class="general" type="text"/></td>
    [#--<th><label class="required">备件分类:</label></th>
    <td><input class="general" type="text"/></td>--]
</tr>
<tr>
    <th><label class="required">资产编码:</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 colspan="3"><input class="general maintitle" type="text"/></td>
    </tr>
 
    <tr>
        <th><label class="required">成本价:</label></th>
        <td><input class="general" type="text"/>&nbsp;&nbsp;元</td>
        <th><label class="required">销售价:</label></th>
        <td><input class="general" type="text"/>&nbsp;&nbsp;元</td>
    </tr>
 
    <tr>
        <th><label class="required">供应商:</label></th>
        <td><input class="general" type="text"/></td>
        <th><label class="required"> 起保日期:</label></th>
        <td><input class="general" type="text"/></td>
    </tr>
 
    <tr>
        <th><label class="required">保质周期:</label></th>
        <td colspan="3"><input class="general" type="text"/>&nbsp;&nbsp;天</td>
    </tr>
 
    <tr>
        <th><label class="required">出保日期:</label></th>
        <td colspan="3">&nbsp;</td>
    </tr>
</table>
[#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">
            [@prop source=group.props groupid=group.gid /]
            </table>
            [/#if]
        [/#if]
    [/#list]
[/#if]
</body>
</html>