Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
e3d26597
Commit
e3d26597
authored
Apr 06, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
bcccb77f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
putinStorage.vue
src/components/empower/putinStorage.vue
+14
-2
orderList.vue
src/components/orderMan/orderList.vue
+1
-1
No files found.
src/components/empower/putinStorage.vue
View file @
e3d26597
...
...
@@ -73,6 +73,13 @@
<span>
{{
scope
.
row
.
StockInNum
!=
null
?
scope
.
row
.
StockInNum
:
0
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"条码"
width=
"250"
>
<
template
slot-scope=
"scope"
>
<el-input
v-model=
"scope.row.MaterialModel.Barcode"
@
input=
'getBarcode(scope.row,$event,scope.row,scope.$index)'
placeholder=
"请输入"
></el-input>
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"入库数量"
width=
"200"
>
<
template
slot-scope=
"scope"
>
<el-input
v-model=
"scope.row.InStockNum"
type=
"number"
:min=
'0'
...
...
@@ -126,7 +133,7 @@
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"有效时间"
width=
"200"
>
<el-table-column
prop=
""
label=
"有效时间"
>
<
template
slot-scope=
"scope"
>
<el-date-picker
v-model=
"scope.row.time"
...
...
@@ -240,6 +247,7 @@ export default {
obj
.
GoodsId
=
x
.
MaterialModel
.
GoodsId
;
obj
.
SpecificationKey
=
x
.
MaterialModel
.
SpecificationKey
;
obj
.
InStockNum
=
x
.
InStockNum
;
obj
.
Barcode
=
x
.
MaterialModel
.
Barcode
;
//2021-4-1加的日期列表
zonglist
.
map
((
item
,
index
)
=>
{
if
(
x
.
Id
==
item
.
UniqueID
){
...
...
@@ -254,7 +262,8 @@ export default {
this
.
Error
(
'请输入入库数量'
);
return
}
this
.
rukuloading
=
true
console
.
log
(
msg
)
this
.
rukuloading
=
true
this
.
assetsApipost
(
"/api/property/SetProcurementStockIn"
,
msg
,
res
=>
{
this
.
rukuloading
=
false
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -302,6 +311,9 @@ export default {
handleSelectionChange
(
val
,
y
){
this
.
Warehousinglist
[
y
].
multipleSelection
=
val
},
getBarcode
(
val
,
row
,
index
){
console
.
log
(
val
,
row
,
index
)
},
setupTime
(
y
){
//全体设置
if
(
this
.
Warehousinglist
[
y
].
multipleSelection
.
length
==
0
){
this
.
Error
(
'请选择要设置的对象'
);
...
...
src/components/orderMan/orderList.vue
View file @
e3d26597
...
...
@@ -219,7 +219,7 @@
<div>
数量:x
{{
list
.
Number
}}
</div>
<el-tag
v-if=
"list.IsApplyForAfterSale && list.IsApplyForAfterSale ==
1
"
size=
"small"
type=
"danger"
>
已退货退款
</el-tag>
<el-tag
v-if=
"list.IsApplyForAfterSale && list.IsApplyForAfterSale ==
2
"
size=
"small"
type=
"danger"
>
已退货退款
</el-tag>
</div>
...
...
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