Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
60ef1a62
Commit
60ef1a62
authored
May 07, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
膜管理页面上传
parent
898fc81c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
101 additions
and
0 deletions
+101
-0
filmManagement.html
...resources/static/views/filmManagement/filmManagement.html
+101
-0
No files found.
src/main/resources/static/views/filmManagement/filmManagement.html
0 → 100644
View file @
60ef1a62
<style>
.table
th
,
.table
td
{
text-align
:
center
;
vertical-align
:
middle
!important
;
}
.select2-search__field
{
height
:
30px
;
}
.ul
li
{
cursor
:
pointer
;
}
.page-list
.pagination
{
float
:
left
;}
.page-list
.pagination
span
{
cursor
:
pointer
;}
.page-list
.pagination
.separate
span
{
cursor
:
default
;
border-top
:
none
;
border-bottom
:
none
;}
.page-list
.pagination
.separate
span
:hover
{
background
:
none
;}
.page-list
.page-total
{
float
:
left
;
margin
:
25px
20px
;}
.page-list
.page-total
input
,
.page-list
.page-total
select
{
height
:
26px
;
border
:
1px
solid
#ddd
;}
.page-list
.page-total
input
{
width
:
40px
;
padding-left
:
3px
;}
.page-list
.page-total
select
{
width
:
50px
;}
.page-list
:after
{
display
:
block
;
clear
:
both
;
content
:
""
}
.page-list
{
zoom
:
1
}
</style>
<div
class=
"content row"
>
<div
class=
"col-md-12"
style=
"margin-top:20px;"
>
<div
class=
"box "
>
<strong
class=
"box-header"
>
添加膜耗材数据
</strong>
<div
class=
"box box-primary"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<tr>
<td>
数量:
</td>
<td>
<input
type=
"text"
class=
"form-control"
ng-model=
"totalCount"
placeholder=
"数量"
required
>
</td>
<td>
操作:
</td>
<td>
<input
type=
"radio"
ng-model=
"plasticFilmType"
name=
"type"
value=
"1"
ng-checked=
"true"
>
出库
<input
style=
"margin-left: 10px;"
type=
"radio"
ng-model=
"plasticFilmType"
name=
"type"
value=
"2"
>
入库
</td>
<td>
备注:
</td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"note"
placeholder=
"备注"
></td>
<td>
<div
style=
"text-align: left;"
>
<button
class=
"btn btn-primary"
ng-click=
"insertFilm()"
>
提交
</button>
</div>
</td>
</tr>
</table>
</div>
</div>
<div
class=
"box box-default"
>
<div
class=
"box-header"
>
<strong>
查询未审核膜耗材统计数据
</strong>
</div>
<div
class=
"box box-primary"
>
<div
ng-if=
"filmManagement.length==0"
>
<h4
style=
"padding-left: 10px;"
>
暂无数据
</h4>
</div>
<div
class=
"box-info"
style=
"padding: 7px;padding-top: 0px;"
>
<table
class=
"table table-bordered table-hover postTable"
ng-if=
"filmManagement.length>0"
>
<thead>
<tr>
<th>
NO.
</th>
<th>
保存时间
</th>
<th>
数量
</th>
<th>
操作
</th>
<th>
备注
</th>
<th>
提交人
</th>
<th>
操作
</th>
</tr>
</thead>
<tbody>
<tr
ng-repeat=
"item in filmManagement"
>
<td>
{{item.plasticFilmId}}
</td>
<td>
{{item.saveDate}}
</td>
<td>
{{item.totalCount}}
</td>
<td
ng-if=
"item.plasticFilmType==1"
>
出库
</td>
<td
ng-if=
"item.plasticFilmType==2"
>
入库
</td>
<td>
{{item.note}}
</td>
<td>
{{item.name}}
</td>
<td><a
ng-click=
"updateFilmState(item)"
>
确认
</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
\ No newline at end of file
Write
Preview
Markdown
is supported
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