Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shhjwpgl-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
李苏
shhjwpgl-vue
Commits
71398f9d
Commit
71398f9d
authored
Oct 16, 2023
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1016改动
parent
2cd59581
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
52 additions
and
62 deletions
+52
-62
index.vue
src/components/HjRelDialog/index.vue
+4
-29
index.vue
src/views/analysis/query/index.vue
+5
-0
edit.vue
src/views/call/return/edit.vue
+1
-1
edit.vue
src/views/call/thingCall/edit.vue
+2
-2
edit.vue
src/views/handle/back/edit.vue
+1
-1
edit.vue
src/views/handle/destroy/edit.vue
+1
-1
edit.vue
src/views/handle/sale/edit.vue
+1
-1
edit.vue
src/views/handle/saveCancel/edit.vue
+1
-1
edit.vue
src/views/handle/seizure/edit.vue
+2
-2
edit.vue
src/views/handle/transfer/edit.vue
+1
-1
edit.vue
src/views/handle/unseal/edit.vue
+1
-1
bcdjzky.vue
src/views/warehousing/detain/bcdjzky.vue
+1
-1
edit.vue
src/views/warehousing/detain/edit.vue
+1
-1
index.vue
src/views/warehousing/detain/index.vue
+18
-13
jfzky.vue
src/views/warehousing/detain/jfzky.vue
+1
-1
edit.vue
src/views/warehousing/extension/edit.vue
+1
-1
edit.vue
src/views/warehousing/freeze/edit.vue
+1
-1
edit.vue
src/views/warehousing/registration/edit.vue
+1
-1
index.vue
src/views/warehousing/registration/index.vue
+5
-0
kyzdjbc.vue
src/views/warehousing/registration/kyzdjbc.vue
+1
-1
edit.vue
src/views/warehousing/save/edit.vue
+1
-1
edit.vue
src/views/warehousing/seal/edit.vue
+1
-1
No files found.
src/components/HjRelDialog/index.vue
View file @
71398f9d
...
...
@@ -517,34 +517,9 @@
this
.
app
.
apiAdd
(
params
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$success
(
'添加成功'
)
this
.
app
.
$refs
[
'TablePager'
].
reLoad
()
this
.
closeAll
()
/* 不刷新*/
try
{
if
(
this
.
app
.
$refs
[
'TablePager'
].
type
==
'treeTable'
)
{
this
.
app
.
$refs
[
'TablePager'
].
reLoad
()
return
}
if
(
res
.
data
&&
res
.
data
.
id
)
{
let
params
=
{
id
:
res
.
data
.
id
}
this
.
app
.
query
(
params
).
then
(
res
=>
{
if
(
res
&&
res
.
success
)
{
let
newData
=
res
.
data
.
records
[
0
]
this
.
app
.
$refs
.
TablePager
.
tableData
.
unshift
(
newData
)
/* 选中当前行 */
this
.
app
.
$refs
.
TablePager
.
setCurrent
(
newData
)
}
})
}
}
catch
(
e
)
{
console
.
warn
(
'reldialog组件报错:'
,
e
)
}
}
else
{
this
.
$error
(
res
.
message
||
'添加失败'
)
}
...
...
src/views/analysis/query/index.vue
View file @
71398f9d
...
...
@@ -67,6 +67,11 @@
'11'
:
'拍卖'
,
'12'
:
'销毁'
,
'13'
:
'解除出库'
,
'14'
:
'解封出库'
,
'15'
:
'查封转扣押'
,
'16'
:
'登记保存转扣拥'
,
'17'
:
'扣押转登记保存'
,
'18'
:
'调拨入库'
,
}
return
map
[
value
]
...
...
src/views/call/return/edit.vue
View file @
71398f9d
...
...
@@ -52,7 +52,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/call/thingCall/edit.vue
View file @
71398f9d
...
...
@@ -56,7 +56,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/back/edit.vue
View file @
71398f9d
...
...
@@ -55,7 +55,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/destroy/edit.vue
View file @
71398f9d
...
...
@@ -56,7 +56,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/sale/edit.vue
View file @
71398f9d
...
...
@@ -55,7 +55,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/saveCancel/edit.vue
View file @
71398f9d
...
...
@@ -56,7 +56,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/seizure/edit.vue
View file @
71398f9d
...
...
@@ -11,7 +11,7 @@
</el-input>
</div>
<div
class=
"editMain_left2"
>
<editTableForEdit
:expandTitle=
'false'
:rename=
"'选择物品'"
code=
"SHHJTHING
1
"
:indexApp=
'app'
:type=
'type'
@
save=
'save'
ref=
"editTableForEdit"
<editTableForEdit
:expandTitle=
'false'
:rename=
"'选择物品'"
code=
"SHHJTHING
MS
"
:indexApp=
'app'
:type=
'type'
@
save=
'save'
ref=
"editTableForEdit"
:editTableTitle=
'editTableTitle'
v-if=
"editTableForEdit"
:editTableData=
"form.details"
/>
</div>
</div>
...
...
@@ -55,7 +55,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/transfer/edit.vue
View file @
71398f9d
...
...
@@ -55,7 +55,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/handle/unseal/edit.vue
View file @
71398f9d
...
...
@@ -55,7 +55,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/detain/bcdjzky.vue
View file @
71398f9d
...
...
@@ -90,7 +90,7 @@
},
cxxlh
()
{
if
(
this
.
xlh
)
{
this
.
$post
(
'jcsj/u_wpgl/query'
,
{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,
{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
)
{
...
...
src/views/warehousing/detain/edit.vue
View file @
71398f9d
...
...
@@ -51,7 +51,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/detain/index.vue
View file @
71398f9d
...
...
@@ -87,6 +87,11 @@
'11'
:
'拍卖'
,
'12'
:
'销毁'
,
'13'
:
'解除出库'
,
'14'
:
'解封出库'
,
'15'
:
'查封转扣押'
,
'16'
:
'登记保存转扣拥'
,
'17'
:
'扣押转登记保存'
,
'18'
:
'调拨入库'
,
}
return
map
[
value
]
...
...
src/views/warehousing/detain/jfzky.vue
View file @
71398f9d
...
...
@@ -90,7 +90,7 @@
},
cxxlh
()
{
if
(
this
.
xlh
)
{
this
.
$post
(
'jcsj/u_wpgl/query'
,
{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,
{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
)
{
...
...
src/views/warehousing/extension/edit.vue
View file @
71398f9d
...
...
@@ -52,7 +52,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/freeze/edit.vue
View file @
71398f9d
...
...
@@ -51,7 +51,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/registration/edit.vue
View file @
71398f9d
...
...
@@ -51,7 +51,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/registration/index.vue
View file @
71398f9d
...
...
@@ -71,6 +71,11 @@
'11'
:
'拍卖'
,
'12'
:
'销毁'
,
'13'
:
'解除出库'
,
'14'
:
'解封出库'
,
'15'
:
'查封转扣押'
,
'16'
:
'登记保存转扣拥'
,
'17'
:
'扣押转登记保存'
,
'18'
:
'调拨入库'
,
}
return
map
[
value
]
}
...
...
src/views/warehousing/registration/kyzdjbc.vue
View file @
71398f9d
...
...
@@ -90,7 +90,7 @@
},
cxxlh
()
{
if
(
this
.
xlh
)
{
this
.
$post
(
'jcsj/u_wpgl/query'
,
{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,
{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
)
{
...
...
src/views/warehousing/save/edit.vue
View file @
71398f9d
...
...
@@ -54,7 +54,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
src/views/warehousing/seal/edit.vue
View file @
71398f9d
...
...
@@ -51,7 +51,7 @@
},
cxxlh
(){
if
(
this
.
xlh
){
this
.
$post
(
'jcsj/u_wpgl/query'
,{
this
.
$post
(
'jcsj/u_wpgl/query
Xlh
'
,{
xlh
:
this
.
xlh
}).
then
(
res
=>
{
if
(
res
.
data
.
records
){
...
...
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