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
cb7cac00
Commit
cb7cac00
authored
Apr 01, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
4.1上午字段调整
parent
599c4735
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
120 additions
and
13 deletions
+120
-13
ajydk.vue
src/views/ccgl/ckgl/dbckd/top/ajydk.vue
+10
-7
index.vue
src/views/ccgl/ckgl/dbckd/top/index.vue
+5
-5
jyd.vue
src/views/ccgl/ckgl/dbckd/top/jyd.vue
+6
-1
edit.vue
src/views/ccgl/rkgl/sjrw/top/edit.vue
+1
-0
tbsapck.vue
src/views/ccgl/rkgl/sjrw/top/tbsapck.vue
+98
-0
No files found.
src/views/ccgl/ckgl/dbckd/top/ajydk.vue
View file @
cb7cac00
...
...
@@ -62,7 +62,7 @@
let
length
=
this
.
formDetail
.
length
this
.
formDetail
.
splice
(
0
,
length
)
list
.
forEach
(
item
=>
{
item
.
bcsl
=
item
.
kc
sl
item
.
bcsl
=
item
.
jy
sl
item
.
lydjid
=
item
.
id
delete
item
.
id
this
.
formDetail
.
push
(
_
.
cloneDeep
(
item
))
...
...
@@ -245,17 +245,20 @@
{
title
:
"调拨数量"
,
field
:
"bcsl"
,
allowEdit
:
fals
e
,
allowEdit
:
tru
e
,
type
:
'inputNumber'
,
width
:
200
,
blur
:
toFixed
(
null
),
},
/* 不可编辑*/
// {
// title: "出库数量",
// field: "cksl",
// width: 200,
// },
{
title
:
"检验数量"
,
field
:
"jysl"
,
allowEdit
:
false
,
type
:
'inputNumber'
,
width
:
200
,
blur
:
toFixed
(
null
),
},
{
title
:
"物料批号"
,
field
:
"wlph"
,
...
...
src/views/ccgl/ckgl/dbckd/top/index.vue
View file @
cb7cac00
...
...
@@ -90,11 +90,11 @@
field
:
"swlxName"
,
width
:
140
},
{
title
:
"货主"
,
field
:
"hzName"
,
width
:
140
},
//
{
//
title: "货主",
//
field: "hzName",
//
width: 140
//
},
// {
// title: "单据来源",
...
...
src/views/ccgl/ckgl/dbckd/top/jyd.vue
View file @
cb7cac00
...
...
@@ -84,7 +84,11 @@
title
:
"容器"
,
field
:
"rqCode"
,
width
:
160
,
},
{
title
:
"检验数量"
,
field
:
"jysl"
,
width
:
140
,
},
{
title
:
"唯一码"
,
...
...
@@ -117,6 +121,7 @@
field
:
"wlph"
,
width
:
140
,
},
{
title
:
"库位名称"
,
field
:
"wlxxName"
,
...
...
src/views/ccgl/rkgl/sjrw/top/edit.vue
View file @
cb7cac00
...
...
@@ -143,6 +143,7 @@
this
.
form
.
sjrid
=
res
.
data
.
records
.
id
}
})
/* 回填后重新选择仓库*/
},
xzrkqd
()
{
this
.
DialogTitle
=
'选择入库单'
...
...
src/views/ccgl/rkgl/sjrw/top/tbsapck.vue
0 → 100644
View file @
cb7cac00
<
template
>
<DefaultDialog
:app=
'app'
>
<div
slot=
"form"
style=
""
>
<el-form
slot=
"form"
ref=
"form"
:model=
"form"
label-width=
"100px"
:rules=
"rules"
>
<el-row
:gutter=
"20"
:app=
"this"
class=
"editRow"
>
<EditColItem
:required=
"item.required||false"
:readonly=
"item.readonly?true:false "
v-for=
"(item,index) in editColItemList "
:value=
"item.value"
:span=
"item.span"
:label=
"item.label"
v-if=
"(item.show==false)?false:true"
:prop=
'item.prop'
:key=
"item.prop"
:type=
"item.type"
:typeConfig=
'item.typeConfig'
:rule=
"item.rule"
/>
<!-- 额外数据 -->
</el-row>
</el-form>
</div>
<div
slot=
"reFooter"
class=
"refooter"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"app.showDialog=false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"save()"
>
确 定
</el-button>
</span>
</div>
</DefaultDialog>
</
template
>
<
script
>
import
{
editMixin
,
editMixin_expand
}
from
'common'
export
default
{
mixins
:
[
editMixin
,
editMixin_expand
],
props
:
{
app
:
{
type
:
Object
,
default
:
()
=>
{
return
{}
}
}
},
async
mounted
()
{
/* 初始化数据 */
},
data
()
{
return
{
readonly
:
false
,
editColItemList
:
[
{
"label"
:
"仓库"
,
"prop"
:
"ckid"
,
"span"
:
8
,
"type"
:
"RelSelect"
,
"value"
:
""
,
"required"
:
true
,
"typeConfig"
:
{
"src"
:
"lxyl/common/ck/queryCkid"
,
"match"
:
{
"value"
:
"id"
,
"label"
:
"name"
}
}
},
// {
// label: '退货单号',
// prop: 'ddh',
// span: 24,
// type: 'input',
// value: '',
// }
]
}
},
methods
:
{
save
()
{
this
.
$refs
[
'form'
].
validate
((
valid
)
=>
{
if
(
valid
)
{
this
.
isLoading
=
true
this
.
$post
(
'lxyl/rkgl/rktz/sync/xsthd'
,
this
.
form
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
isLoading
=
false
this
.
$success
(
'操作成功'
)
this
.
app
.
showDialog
=
false
this
.
app
.
$refs
.
TablePager
.
refresh
()
}
}).
finally
(
res
=>
{
this
.
isLoading
=
false
})
}
})
}
}
}
</
script
>
<
style
scoped
>
</
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