client_list_right.php
2.5 KB
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
<!-- <link rel="stylesheet" type="text/css" href="/assets/web/css/formflow.css"/> -->
<style>
#formflow{
width: 100%;
list-style: none;
overflow: hidden;
}
#formflow li{
width: 49%;
float: left;
min-width:250px;
margin-right: 1%;
}
#formflow .formflow-l{
float: left;
width: 33%;
text-align: right;
height: 30px;
line-height: 30px;
margin-bottom: 10px;
padding-right: 10px;
}
#formflow .formflow-r{
float: left;
width: 62%;
margin-bottom: 10px;
}
#formflow .formflow-r input{
width: 100%;
height: 30px;
}
</style>
<div class="easyui-panel" data-options="fit:true,border:false,footer:'#client_list_left_footer'" style="background-color:#eee;padding:10px 10px 0px 10px;">
<form action="" method="post" class="form-message " style="padding-top: 20px;">
<ul id="formflow">
<li>
<div class="formflow-l">客户电话</div>
<div class="formflow-r">
<input type="text" class="easyui-textbox" id="client_list_goods_2" value="" style="width: 100%;"/>
</div>
</li>
<li>
<div class="formflow-l">客户姓名</div>
<div class="formflow-r">
<input type="text" class="easyui-textbox" id="client_list_goods_3" value="" style="width: 100%;"/>
</div>
</li>
<li>
<div class="formflow-l">更新时间</div>
<div class="formflow-r">
<input type="text" class="easyui-datetimebox" id="client_list_goods_4" value="" style="width: 100%;"/>
</div>
</li>
<li>
<div class="formflow-l">分配时间</div>
<div class="formflow-r">
<input type="text" class="easyui-datetimebox" id="client_list_goods_5" value="" style="width: 100%;"/>
</div>
</li>
<li>
<div class="formflow-l">剩余天数</div>
<div class="formflow-r">
<input type="text" class="easyui-textbox" id="client_list_goods_6" value="" style="width: 100%;"/>
</div>
</li>
<li>
<div class="formflow-l">所属人</div>
<div class="formflow-r">
<input type="text" class="easyui-textbox" id="client_list_goods_7" value="" style="width: 100%;"/>
</div>
</li>
</ul>
</form>
<div id="client_list_left_footer" style="padding:5px;overflow:hidden; display:flex;justify-content:space-between;align-items:center;">
<a class="easyui-linkbutton" style="width:46%;height:40px;" data-options="iconCls:'icon-reload'">重置</a>
<a class="easyui-linkbutton" data-options="iconCls:'icon-ok'" style="width:46%;height:40px;">保存修改</a>
</div>
</div>