Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lxyl-vue
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
李苏
lxyl-vue
Commits
61e9e1bf
Commit
61e9e1bf
authored
Mar 25, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3.25调整
parent
b2c261bc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
14 deletions
+32
-14
rkqd.vue
src/views/ccgl/cqgl/cskc/rkqd.vue
+1
-1
edit.vue
src/views/ccgl/kcpd/pdd/edit.vue
+5
-0
rkd.vue
src/views/ccgl/rkgl/sjrw/top/rkd.vue
+14
-4
xzrkqd.vue
src/views/ccgl/rkgl/sjrw/top/xzrkqd.vue
+6
-8
index.vue
src/views/ccgl/zlgl/kccjd/top/index.vue
+6
-1
No files found.
src/views/ccgl/cqgl/cskc/rkqd.vue
View file @
61e9e1bf
...
...
@@ -52,7 +52,7 @@
},
{
title
:
"库位"
,
field
:
"
rqNam
e"
,
field
:
"
kwCod
e"
,
width
:
140
,
},
{
...
...
src/views/ccgl/kcpd/pdd/edit.vue
View file @
61e9e1bf
...
...
@@ -157,6 +157,11 @@
field
:
"wlxxName"
,
width
:
160
},
{
title
:
"物料批号"
,
field
:
"wlph"
,
width
:
160
},
{
title
:
"规格"
,
field
:
"wlxxGg"
,
...
...
src/views/ccgl/rkgl/sjrw/top/rkd.vue
View file @
61e9e1bf
<
template
>
<BasePage
:setFirstCurrent=
'false'
:power=
'power'
@
getRow=
'getRow'
class=
"min_full"
style=
"height: 100%;"
:config=
"config"
>
<BasePage
ref=
"basePage"
:setFirstCurrent=
'false'
:power=
'power'
@
getRow=
'getRow'
class=
"min_full"
style=
"height: 100%;"
:config=
"config"
>
<template
#
dialog=
"ctx"
>
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</
template
>
<
template
#
toolbar=
"ctx"
>
<
!--
<el-button
@
click=
"demo(ctx.basePage)"
size=
'mini'
type=
"primary"
>
直接入库
</el-button>
--
>
<
el-button
@
click=
"ckmx(ctx.basePage)"
size=
'mini'
type=
"primary"
>
查看所选清单
</el-button
>
</
template
>
...
...
@@ -24,8 +24,8 @@
operateButtons
:
false
,
workFlow
:
false
,
/* 表格 */
showSelection
:
fals
e
,
saveSelected
:
fals
e
showSelection
:
tru
e
,
saveSelected
:
tru
e
},
config
:
{
queryDetail
:
true
,
...
...
@@ -151,6 +151,16 @@
},
methods
:
{
ckmx
(){
let
list
=
this
.
$refs
.
basePage
.
$refs
.
TablePager
.
selectedList
||
[]
if
(
list
.
length
!=
0
){
/* 回填校验xxx是否相同*/
this
.
$emit
(
'ckmx'
,
list
)
}
else
{
this
.
$warning
(
'请至少勾选一条数据'
)
}
},
getRow
(
val
){
this
.
$emit
(
'getRow'
,
val
)
}
...
...
src/views/ccgl/rkgl/sjrw/top/xzrkqd.vue
View file @
61e9e1bf
...
...
@@ -4,7 +4,7 @@
<div
class=
"full"
>
<el-tabs
class=
"full"
v-model=
"activeName"
>
<el-tab-pane
class=
"full"
label=
"入库单"
name=
"first"
>
<Rkd
@
getRow=
'getRow
'
/>
<Rkd
@
ckmx=
'ckmx
'
/>
</el-tab-pane>
<el-tab-pane
class=
"full"
label=
"入库清单"
name=
"second"
>
<Rkqd
ref=
"rkqd"
/>
...
...
@@ -50,14 +50,12 @@
methods
:
{
save
()
{
let
list
=
this
.
$refs
.
rkqd
.
$refs
.
basePage
.
$refs
.
TablePager
.
selectedList
||
[]
if
(
list
.
length
==
0
){
this
.
$warning
(
'请选择存在数据的入库单或者勾选入库清单'
)
}
else
{
let
obj
=
{
list
:
list
,
row
:
this
.
row
row
:
this
.
row
[
0
]
}
/* 判断库区是否一致*/
let
kqList
=
list
.
map
(
item
=>
item
.
kqid
||
'null'
)
...
...
@@ -86,11 +84,11 @@
}
// if()
},
getRow
(
val
)
{
this
.
row
=
val
this
.
$refs
.
rkqd
.
$refs
.
basePage
.
queryParams
.
mid
=
val
.
id
ckmx
(
list
)
{
this
.
row
=
list
this
.
$refs
.
rkqd
.
$refs
.
basePage
.
queryParams
.
mid
s
=
list
.
map
(
item
=>
item
.
id
)
this
.
$refs
.
rkqd
.
$refs
.
basePage
.
$refs
[
'TablePager'
].
pageQuery
({
// setFirstCurrent: true
})
this
.
activeName
=
'second'
...
...
src/views/ccgl/zlgl/kccjd/top/index.vue
View file @
61e9e1bf
...
...
@@ -41,8 +41,13 @@
/* 基本配置*/
url
:
'lxyl/zlgl/kccj'
,
tableTitle
:
[{
title
:
"仓库"
,
field
:
"ckName"
,
width
:
140
},
{
title
:
"重检单号"
,
field
:
"
code
"
,
field
:
"
djid
"
,
width
:
140
},
{
...
...
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