Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
d7e2cc8b
Commit
d7e2cc8b
authored
Nov 07, 2022
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
财务返回列表刷新修复
parent
e892e5eb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
1 deletion
+15
-1
payable.vue
src/views/ecw/financial/payable.vue
+3
-0
paymentVoucher.vue
src/views/ecw/financial/paymentVoucher.vue
+3
-0
receiptDetail.vue
src/views/ecw/financial/receiptDetail.vue
+1
-1
receivable.vue
src/views/ecw/financial/receivable.vue
+5
-0
voucher.vue
src/views/ecw/financial/voucher.vue
+3
-0
No files found.
src/views/ecw/financial/payable.vue
View file @
d7e2cc8b
...
@@ -273,6 +273,9 @@ export default {
...
@@ -273,6 +273,9 @@ export default {
return
this
.
warehouseList
.
filter
(
item
=>
item
.
tradeType
==
1
||
item
.
tradeType
==
3
)
return
this
.
warehouseList
.
filter
(
item
=>
item
.
tradeType
==
1
||
item
.
tradeType
==
3
)
},
},
},
},
activated
(){
this
.
handleQuery
()
},
created
()
{
created
()
{
let
that
=
this
;
let
that
=
this
;
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
...
...
src/views/ecw/financial/paymentVoucher.vue
View file @
d7e2cc8b
...
@@ -237,6 +237,9 @@ export default {
...
@@ -237,6 +237,9 @@ export default {
}
,
}
,
}
;
}
;
}
,
}
,
activated
(){
this
.
handleQuery
()
}
,
created
()
{
created
()
{
let
that
=
this
;
let
that
=
this
;
userList
(
"
salesman
"
).
then
((
res
)
=>
(
that
.
creatorData
=
res
.
data
));
userList
(
"
salesman
"
).
then
((
res
)
=>
(
that
.
creatorData
=
res
.
data
));
...
...
src/views/ecw/financial/receiptDetail.vue
View file @
d7e2cc8b
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
<el-table-column
:label=
"$t('唛头')"
align=
"center"
prop=
"marks"
/>
<el-table-column
:label=
"$t('唛头')"
align=
"center"
prop=
"marks"
/>
<el-table-column
:label=
"$t('品名')"
align=
"center"
prop=
"title"
>
<el-table-column
:label=
"$t('品名')"
align=
"center"
prop=
"title"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.feeType!=5"
>
{{
scope
.
row
.
titleZh
+
"
(
"
+
scope
.
row
.
titleEn
+
"
)
"
}}
</span>
<span
v-if=
"scope.row.feeType!=5"
>
{{
scope
.
row
.
titleZh
?(
scope
.
row
.
titleZh
+
"
(
"
+
scope
.
row
.
titleEn
+
"
)
"
):
''
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
align=
"center"
prop=
"num"
/>
<el-table-column
:label=
"$t('箱数')"
align=
"center"
prop=
"num"
/>
...
...
src/views/ecw/financial/receivable.vue
View file @
d7e2cc8b
...
@@ -290,6 +290,10 @@ export default {
...
@@ -290,6 +290,10 @@ export default {
warehouseList
:[],
warehouseList
:[],
};
};
},
},
activated
(){
console
.
log
(
11
)
this
.
handleQuery
()
},
created
()
{
created
()
{
let
that
=
this
;
let
that
=
this
;
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
...
@@ -298,6 +302,7 @@ export default {
...
@@ -298,6 +302,7 @@ export default {
this
.
getList
();
this
.
getList
();
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
},
},
computed
:
{
computed
:
{
expoerCityList
()
{
expoerCityList
()
{
return
this
.
tradeCityList
.
filter
((
item
)
=>
item
.
type
==
2
);
return
this
.
tradeCityList
.
filter
((
item
)
=>
item
.
type
==
2
);
...
...
src/views/ecw/financial/voucher.vue
View file @
d7e2cc8b
...
@@ -305,6 +305,9 @@ export default {
...
@@ -305,6 +305,9 @@ export default {
downloading
:
false
,
// 导出状态
downloading
:
false
,
// 导出状态
}
;
}
;
}
,
}
,
activated
(){
this
.
handleQuery
()
}
,
created
()
{
created
()
{
let
that
=
this
;
let
that
=
this
;
listSimpleUsers
().
then
((
res
)
=>
(
that
.
creatorData
=
res
.
data
));
listSimpleUsers
().
then
((
res
)
=>
(
that
.
creatorData
=
res
.
data
));
...
...
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