Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_pda_Web
Project
Project
Details
Activity
Releases
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
胡宝山
template_pda_Web
Commits
5130ca7e
Commit
5130ca7e
authored
Aug 11, 2024
by
hubaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wcp
parent
4aec84a9
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
427 additions
and
2 deletions
+427
-2
dealWithStorage.vue
src/views/setup/dealWithStorage.vue
+0
-2
inventory.vue
src/views/setup/inventory.vue
+335
-0
materialInventory.vue
src/views/setup/materialInventory.vue
+92
-0
No files found.
src/views/setup/dealWithStorage.vue
View file @
5130ca7e
...
@@ -186,8 +186,6 @@ export default {
...
@@ -186,8 +186,6 @@ export default {
/**
/**
* 1.判断储存的list是不是为空
* 1.判断储存的list是不是为空
* **/
* **/
// this.storeList
// this.tableList
for
(
let
i
=
0
;
i
<
this
.
tableList
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
this
.
tableList
.
length
;
i
++
)
{
const
tableObj
=
this
.
tableList
[
i
]
const
tableObj
=
this
.
tableList
[
i
]
// 1. 匹配成功
// 1. 匹配成功
...
...
src/views/setup/inventory.vue
0 → 100644
View file @
5130ca7e
This diff is collapsed.
Click to expand it.
src/views/setup/materialInventory.vue
0 → 100644
View file @
5130ca7e
<
template
>
<div
class=
"TopTable"
>
<div
class=
"Table"
>
<el-table
:data=
"tableList"
>
<el-table-column
type=
"index"
label=
"序号"
width=
"50"
/>
<el-table-column
label=
"orderSn"
>
<template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
orderSn
||
'-'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"人员"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
user
||
'-'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<span
style=
"color: #46BCF3;cursor: pointer"
@
click=
"handleDispose(scope.row)"
>
盘点
</span>
</
template
>
</el-table-column>
</el-table>
</div>
</div>
</template>
<
script
>
export
default
{
name
:
'MaterialInventory'
,
data
()
{
return
{
loading
:
false
,
total
:
0
,
queryparams
:
{
page
:
1
,
rows
:
10
,
ptype
:
''
,
dealStatus
:
'0'
},
// 选中的下坐表
actionIndex
:
null
,
// 标签集合
tabList
:
[
{
type
:
null
,
number
:
null
},
{
type
:
null
,
number
:
null
},
{
type
:
null
,
number
:
null
},
{
type
:
null
,
number
:
null
},
{
type
:
null
,
number
:
null
}
],
// 对应标签下的列表数据
tableList
:
[{
orderSn
:
'20240809'
,
user
:
'李四'
}]
}
},
created
()
{
// this.getTabList()
},
methods
:
{
// 处理
handleDispose
(
item
)
{
this
.
$router
.
push
({
path
:
'/setup/inventory'
,
query
:
{
businessId
:
item
.
businessId
}
})
}
}
}
</
script
>
<
style
scoped
>
.Table
{
width
:
99%
;
margin
:
1%
;
}
</
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