Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
db004ee1
Commit
db004ee1
authored
Mar 02, 2020
by
季圣华
Browse files
优化所有页面的搜索框样式
parent
58d19ece
Changes
65
Hide whitespace changes
Inline
Side-by-side
erp_web/css/jsherp.css
View file @
db004ee1
...
...
@@ -229,6 +229,10 @@
width
:
160px
!important
}
.width-180
{
width
:
180px
!important
}
.width-460
{
width
:
460px
!important
}
...
...
@@ -659,14 +663,15 @@ select.form-control {
.form-inline
.form-group
{
display
:
inline-block
;
margin-bottom
:
10px
;
margin-top
:
5px
;
margin-bottom
:
5px
;
vertical-align
:
middle
;
margin-right
:
6px
}
.form-inline
.control-label
{
text-align
:
right
;
font-size
:
1
3
px
;
font-size
:
1
4
px
;
vertical-align
:
baseline
}
...
...
@@ -678,7 +683,8 @@ select.form-control {
.form-inline
.form-control
{
display
:
inline-block
;
vertical-align
:
middle
vertical-align
:
middle
;
border
:
1px
solid
#95B8E7
;
}
.form-inline
.btn
{
...
...
erp_web/js/common/common.js
View file @
db004ee1
...
...
@@ -66,8 +66,7 @@
webH
=
document
.
documentElement
.
clientHeight
;
webW
=
document
.
documentElement
.
offsetWidth
;
widthInfo
=
$
(
"
body
"
).
outerWidth
()
-
27
;
var
mtopH
=
$
(
"
#searchTable
"
).
outerHeight
();
var
positionH
=
$
(
"
#position
"
).
outerHeight
();
var
mtopH
=
$
(
"
.box-body
"
).
outerHeight
();
heightInfo
=
webH
-
mtopH
-
86
;
//分页信息修改成 15条
...
...
@@ -83,11 +82,11 @@
}
}
function
dgResize
()
{
var
searchTabHeight
=
$
(
'
#searchTable
'
).
height
();
var
searchTabHeight
=
$
(
'
.box-body
'
).
height
();
if
(
$
(
'
#tableData
'
).
length
)
{
$
(
'
#tableData
'
).
datagrid
(
'
resize
'
,
{
width
:
$
(
window
).
width
()
-
6
,
height
:
$
(
window
).
height
()
-
searchTabHeight
-
4
6
height
:
$
(
window
).
height
()
-
searchTabHeight
-
4
3
});
}
}
...
...
erp_web/js/pages/manage/supplier.js
View file @
db004ee1
...
...
@@ -546,12 +546,10 @@
//重置按钮
$
(
"
#searchResetBtn
"
).
unbind
().
bind
({
click
:
function
(){
$
(
"
#searchSupplier
"
).
val
(
""
);
$
(
"
#searchType
"
).
val
(
""
);
$
(
"
#searchPhonenum
"
).
val
(
""
);
$
(
"
#searchTelephone
"
).
val
(
""
);
$
(
"
#searchDesc
"
).
val
(
""
);
$
(
"
#searchSupplier
"
).
textbox
(
"
clear
"
);
$
(
"
#searchPhonenum
"
).
textbox
(
"
clear
"
);
$
(
"
#searchTelephone
"
).
textbox
(
"
clear
"
);
$
(
"
#searchDesc
"
).
textbox
(
"
clear
"
);
//加载完以后重新初始化
$
(
"
#searchBtn
"
).
click
();
}
...
...
@@ -563,8 +561,8 @@
//编辑信息
function
editSupplier
(
supplierTotalInfo
)
{
var
supplierInfo
=
supplierTotalInfo
.
split
(
"
AaBb
"
);
var
beginNeedGet
=
supplierInfo
[
5
];
var
beginNeedPay
=
supplierInfo
[
6
];
var
beginNeedGet
=
supplierInfo
[
5
]
.
replace
(
"
undefined
"
,
""
)
;
var
beginNeedPay
=
supplierInfo
[
6
]
.
replace
(
"
undefined
"
,
""
)
;
var
row
=
{
supplier
:
supplierInfo
[
1
],
contacts
:
supplierInfo
[
2
].
replace
(
"
undefined
"
,
""
),
...
...
erp_web/pages/financial/advance_in.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"收预付款列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/financial/giro.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"转账单列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/financial/item_in.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"收入单列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/financial/item_out.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"支出单列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/financial/money_in.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"收款单列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/financial/money_out.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -20,29 +22,26 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"付款单列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
单据编号:
</td>
<td>
<input
type=
"text"
name=
"searchBillNo"
id=
"searchBillNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
单据日期:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
-
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datebox"
style=
"width:120px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBillNo"
name=
"searchBillNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
单据日期:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
-
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
value=
""
maxlength=
"100"
class=
"easyui-datebox width-120"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/manage/account.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -19,29 +21,30 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"结算账户"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
名称:
</td>
<td>
<input
type=
"text"
name=
"searchName"
id=
"searchName"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td
id=
"searchSerialNoLabel"
>
编号:
</td>
<td>
<input
type=
"text"
name=
"searchSerialNo"
id=
"searchSerialNo"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td
id=
"searchRemarkLabel"
>
备注:
</td>
<td>
<input
type=
"text"
name=
"searchRemark"
id=
"searchRemark"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
名称:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchName"
name=
"searchName"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
编号:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchSerialNo"
name=
"searchSerialNo"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
备注:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchRemark"
name=
"searchRemark"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
<div
id=
"accountDlg"
class=
"easyui-dialog"
style=
"width:400px;padding:10px 20px"
...
...
erp_web/pages/manage/customer.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -18,34 +20,36 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"客户信息列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
名称:
</td>
<td>
<input
type=
"text"
name=
"searchSupplier"
id=
"searchSupplier"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
手机号码:
</td>
<td>
<input
type=
"text"
name=
"searchTelephone"
id=
"searchTelephone"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
联系电话:
</td>
<td>
<input
type=
"text"
name=
"searchPhonenum"
id=
"searchPhonenum"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td
id=
"searchDescLabel"
>
备注:
</td>
<td>
<input
type=
"text"
name=
"searchDesc"
id=
"searchDesc"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
名称:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchSupplier"
name=
"searchSupplier"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
手机号码:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchTelephone"
name=
"searchTelephone"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
联系电话:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchPhonenum"
name=
"searchPhonenum"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
备注:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchDesc"
name=
"searchDesc"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
<div
id=
"supplierDlg"
class=
"easyui-dialog"
style=
"width:580px;padding:10px 20px"
...
...
erp_web/pages/manage/depot.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -17,24 +19,24 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"仓库列表"
iconCls=
"icon-list"
>
<
table
id=
"searchTabl
e"
>
<
tr
>
<
td
>
仓库名称:
</
td
>
<
t
d>
<input
type=
"text"
name=
"searchName"
id=
"searchName
"
class=
"easyui-textbox
"
style=
"width:100px;
"
/>
</
t
d>
<td>
</td
>
<td
id=
"searchRemarkLabel"
>
描述:
</td
>
<
td
>
<input
type=
"text"
name=
"searchRemark"
id=
"searchRemark"
class=
"easyui-textbox"
style=
"width:100px;"
/
>
</td
>
<
td>
</td
>
<td
>
<
a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-
redo
"
id=
"search
Reset
Btn"
>
重置
</a>
<
/td
>
</
tr
>
</
table
>
<
div
class=
"box-body form-inlin
e"
>
<
div
class=
"form-group"
>
<
label
class=
"control-label"
>
仓库名称:
</
label
>
<d
iv
class=
"control-inline"
>
<input
type=
"text"
id=
"searchName"
name=
"searchName"
value=
""
maxlength=
"100
"
class=
"easyui-textbox
width-90
"
/>
</d
iv
>
</div
>
<div
class=
"form-group"
>
<
label
class=
"control-label"
>
描述:
</label
>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchRemark"
name=
"searchRemark"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/
>
<
/div
>
</div
>
<
div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-
search
"
id=
"searchBtn"
>
查询
</a>
<
a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a
>
</
div
>
</
div
>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/manage/functions.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -17,30 +19,35 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"功能列表"
iconCls=
"icon-list"
>
<
table
id=
"searchTabl
e"
>
<
tr
>
<
td
>
名称:
</
td
>
<
t
d>
<input
type=
"text"
name=
"searchName"
id=
"searchName
"
class=
"easyui-textbox
"
style=
"width:100px;
"
/>
</
t
d>
<td>
</td
>
<td>
类型:
</td
>
<
td>
</td
>
<
t
d>
<
div
class=
"box-body form-inlin
e"
>
<
div
class=
"form-group"
>
<
label
class=
"control-label"
>
名称:
</
label
>
<d
iv
class=
"control-inline"
>
<input
type=
"text"
id=
"searchName"
name=
"searchName"
value=
""
maxlength=
"100
"
class=
"easyui-textbox
width-90
"
/>
</d
iv
>
</div
>
<div
class=
"form-group"
>
<
label
class=
"control-label"
>
类型:
</label
>
<d
iv
class=
"control-inline"
>
<select
name=
"searchType"
id=
"searchType"
class=
"easyui-combobox"
data-options=
"panelHeight:'auto'"
style=
"width:100px;"
>
<option
value=
""
>
全部
</option>
<option
value=
"电脑版"
>
电脑版
</option>
<option
value=
"手机版"
>
手机版
</option>
</select>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
备注:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchRemark"
name=
"searchRemark"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/manage/inOutItem.html
View file @
db004ee1
...
...
@@ -7,6 +7,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -18,34 +20,35 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"收支项目"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
名称:
</td>
<td>
<input
type=
"text"
name=
"searchName"
id=
"searchName"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td
id=
"searchTypeLabel"
>
类型:
</td>
<td>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
名称:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchName"
name=
"searchName"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
类型:
</label>
<div
class=
"control-inline"
>
<select
name=
"searchType"
id=
"searchType"
class=
"easyui-combobox"
data-options=
"panelHeight:'auto'"
style=
"width:100px;"
>
<option
value=
""
>
全部
</option>
<option
value=
"收入"
>
收入
</option>
<option
value=
"支出"
>
支出
</option>
</select>
</
t
d>
<td>
</td
>
<td
id=
"searchRemarkLabel"
>
备注:
</td
>
<
td
>
<input
type=
"text"
name=
"searchRemark"
id=
"searchRemark"
class=
"easyui-textbox"
style=
"width:100px;"
/
>
</td
>
<
td>
</td
>
<td
>
<
a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-
redo
"
id=
"search
Reset
Btn"
>
重置
</a>
<
/td
>
</
tr
>
</
table
>
</d
iv
>
</div
>
<div
class=
"form-group"
>
<
label
class=
"control-label"
>
备注:
</label
>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchRemark"
name=
"searchRemark"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/
>
<
/div
>
</div
>
<
div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-
search
"
id=
"searchBtn"
>
查询
</a>
<
a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a
>
</
div
>
</
div
>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
<div
id=
"inOutItemDlg"
class=
"easyui-dialog"
style=
"width:380px;padding:10px 20px"
...
...
erp_web/pages/manage/log.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -17,63 +19,61 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"操作日志列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
操作模块:
</td>
<td>
<input
type=
"text"
name=
"searchOperation"
id=
"searchOperation"
class=
"easyui-textbox"
style=
"width:90px;"
/>
</td>
<td>
</td>
<td>
操作人员:
</td>
<td>
<select
name=
"searchUsernameID"
id=
"searchUsernameID"
class=
"easyui-textbox"
style=
"width:90px;"
/>
</td>
<td>
</td>
<td>
开始时间:
</td>
<td>
<input
type=
"text"
name=
"searchBeginTime"
id=
"searchBeginTime"
class=
"easyui-datetimebox"
style=
"width:135px;"
/>
</td>
<td>
</td>
<td>
操作IP:
</td>
<td>
<input
type=
"text"
name=
"searchIP"
id=
"searchIP"
class=
"easyui-textbox"
style=
"width:90px;"
/>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
操作详情:
</td>
<td>
<input
type=
"text"
name=
"searchDesc"
id=
"searchDesc"
class=
"easyui-textbox"
style=
"width:90px;"
/>
</td>
<td>
</td>
<td>
操作状态:
</td>
<td>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
操作模块:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchOperation"
name=
"searchOperation"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
操作人员:
</label>
<div
class=
"control-inline"
>
<select
name=
"searchUsernameID"
id=
"searchUsernameID"
class=
"width-90"
style=
"height: 30px;border: 1px solid #95B8E7;border-radius:5px;"
></select>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
操作IP:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchIP"
name=
"searchIP"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
操作状态:
</label>
<div
class=
"control-inline"
>
<select
name=
"searchStatus"
id=
"searchStatus"
class=
"easyui-combobox"
data-options=
"panelHeight:'auto'"
style=
"width:90px;"
>
<option
value=
""
>
全部
</option>
<option
value=
"0"
>
成功
</option>
<option
value=
"1"
>
失败
</option>
</select>
</td>
<td>
</td>
<td>
结束时间:
</td>
<td>
<input
type=
"text"
name=
"searchEndTime"
id=
"searchEndTime"
class=
"easyui-datetimebox"
style=
"width:135px;"
/>
</td>
<td>
</td>
<td
colspan=
"3"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<div
class=
"clearfix"
></div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
操作详情:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchDesc"
name=
"searchDesc"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
开始时间:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchBeginTime"
name=
"searchBeginTime"
class=
"easyui-datetimebox width-140"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
结束时间:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchEndTime"
name=
"searchEndTime"
class=
"easyui-datetimebox width-140"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"height:340px;top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
<script
type=
"text/javascript"
>
...
...
@@ -264,7 +264,7 @@
$
(
"
#searchResetBtn
"
).
unbind
().
bind
({
click
:
function
()
{
$
(
"
#searchOperation
"
).
textbox
(
"
clear
"
);
$
(
"
#searchUsernameID
"
).
textbox
(
"
clear
"
);
$
(
"
#searchUsernameID
"
).
val
(
"
"
);
$
(
"
#searchIP
"
).
textbox
(
"
clear
"
);
$
(
"
#searchStatus
"
).
textbox
(
"
setValue
"
,
""
);
$
(
"
#searchBeginTime
"
).
datebox
(
"
clear
"
);
...
...
erp_web/pages/manage/member.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/common.css"
/>
...
...
@@ -18,34 +20,36 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"会员信息列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
名称:
</td>
<td>
<input
type=
"text"
name=
"searchSupplier"
id=
"searchSupplier"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
手机号码:
</td>
<td>
<input
type=
"text"
name=
"searchTelephone"
id=
"searchTelephone"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
联系电话:
</td>
<td>
<input
type=
"text"
name=
"searchPhonenum"
id=
"searchPhonenum"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td
id=
"searchDescLabel"
>
备注:
</td>
<td>
<input
type=
"text"
name=
"searchDesc"
id=
"searchDesc"
class=
"easyui-textbox"
style=
"width:100px;"
/>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
名称:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchSupplier"
name=
"searchSupplier"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
手机号码:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchTelephone"
name=
"searchTelephone"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
联系电话:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchPhonenum"
name=
"searchPhonenum"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
备注:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchDesc"
name=
"searchDesc"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
<div
id=
"supplierDlg"
class=
"easyui-dialog"
style=
"width:600px;padding:10px 20px"
...
...
erp_web/pages/manage/organization.html
View file @
db004ee1
...
...
@@ -9,6 +9,8 @@
<meta
http-equiv=
"Cache-Control"
content=
"no-cache"
>
<meta
http-equiv=
"Expires"
content=
"-1"
>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<script
type=
"text/javascript"
src=
"/js/jquery-1.8.0.min.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
...
...
erp_web/pages/manage/organization_forselect.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<script
type=
"text/javascript"
src=
"/js/jquery-1.8.0.min.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
...
...
erp_web/pages/manage/role.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<script
type=
"text/javascript"
src=
"/js/jquery-1.8.0.min.js"
></script>
<script
type=
"text/javascript"
src=
"/js/colorbox/jquery.colorbox-min.js"
></script>
<script
type=
"text/javascript"
src=
"/js/colorbox/colorboxSet.js"
></script>
...
...
@@ -20,24 +22,20 @@
<body>
<!-- 数据显示table -->
<div
id=
"tablePanel"
class=
"easyui-panel"
data-options=
"fit:true"
style=
"padding:1px;top:300px;"
title=
"角色列表"
iconCls=
"icon-list"
>
<table
id=
"searchTable"
>
<tr>
<td>
角色名称:
</td>
<td>
<input
class=
"easyui-textbox"
type=
"text"
name=
"searchName"
id=
"searchName"
style=
"width:150px;"
/>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
<!--<a id="btnSetApp" class='easyui-linkbutton iframe iframe_LargeForm' href='#' title='分配应用'>分配应用</a> -->
<a
id=
"btnSetFunctions"
class=
'easyui-linkbutton iframe iframe_LargeForm'
href=
'#'
title=
'分配功能'
>
分配功能
</a>
<a
id=
"btnSetPushBtn"
class=
'easyui-linkbutton iframe iframe_LargeForm'
href=
'#'
title=
'分配按钮'
>
分配按钮
</a>
</td>
</tr>
</table>
<div
class=
"box-body form-inline"
>
<div
class=
"form-group"
>
<label
class=
"control-label"
>
角色名称:
</label>
<div
class=
"control-inline"
>
<input
type=
"text"
id=
"searchName"
name=
"searchName"
value=
""
maxlength=
"100"
class=
"easyui-textbox width-90"
/>
</div>
</div>
<div
class=
"form-group"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-search"
id=
"searchBtn"
>
查询
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
iconCls=
"icon-redo"
id=
"searchResetBtn"
>
重置
</a>
<a
id=
"btnSetFunctions"
class=
'easyui-linkbutton iframe iframe_LargeForm'
href=
'#'
title=
'分配功能'
>
分配功能
</a>
<a
id=
"btnSetPushBtn"
class=
'easyui-linkbutton iframe iframe_LargeForm'
href=
'#'
title=
'分配按钮'
>
分配按钮
</a>
</div>
</div>
<table
id=
"tableData"
style=
"top:300px;border-bottom-color:#FFFFFF"
></table>
</div>
...
...
erp_web/pages/manage/roleApp.html
View file @
db004ee1
...
...
@@ -6,6 +6,8 @@
<!-- 指定以IE8的方式来渲染 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE8"
/>
<link
rel=
"shortcut icon"
href=
"/images/favicon.ico"
type=
"image/x-icon"
/>
<link
rel=
"stylesheet"
href=
"/js/bootstrap/css/bootstrap.min.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/css/jsherp.css"
/>
<script
type=
"text/javascript"
src=
"/js/jquery-1.8.0.min.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui/themes/icon.css"
/>
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment