Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
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
TFMOM
TF-MOM-WEB
Commits
d70ccdf3
Commit
d70ccdf3
authored
Nov 02, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
物料台账列表自定义
parent
b1c26a90
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
0 deletions
+69
-0
index.vue
...src/privateComponents/components/InventoryLists/index.vue
+69
-0
No files found.
applications/dee-mes/src/privateComponents/components/InventoryLists/index.vue
0 → 100644
View file @
d70ccdf3
<!--
* @Author: gjn
* @Date: 2023-11-02 18:29:33
* @Description:物料台账
-->
<
template
>
<div
class=
"inventoryLists"
>
<dee-as-com
ref=
"table"
class=
"asCom_table"
table-height=
"calc(100vh - 246px)"
:lay-config=
"
{ typeName: 'Inventory', layKey: 'inventoryLedger'}"
@requestSuccess="onRequestSuccess"
/>
<div
class=
"sumCon"
>
<strong>
合计:
</strong>
<span
class=
"clumnLabel"
>
库存数量:
<span
class=
"count"
>
0
</span>
;
</span>
<span
class=
"clumnLabel"
>
占用数量:
<span
class=
"count"
>
0
</span>
;
</span>
<span
class=
"clumnLabel"
>
可用数量:
<span
class=
"count"
>
0
</span></span>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InventoryLists'
,
componentName
:
'物料台账列表'
,
components
:
{},
props
:
{
basicData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
onRequestSuccess
(
res
)
{
console
.
log
(
'res: '
,
res
)
}
}
}
</
script
>
<
style
lang=
'scss'
>
.inventoryLists
{
.sumCon
{
display
:
inline-block
;
position
:
relative
;
left
:
20px
;
bottom
:
25px
;
.clumnLabel
{
font-weight
:
500
;
.count
{
font-weight
:
600
;
color
:
red
;
}
}
}
}
</
style
>
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