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
39845597
Commit
39845597
authored
Jun 13, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新建收款单修复
parent
a45f0db6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
index.vue
src/components/CustomerSelector/index.vue
+3
-0
creatCollection.vue
src/views/ecw/financial/creatCollection.vue
+18
-3
No files found.
src/components/CustomerSelector/index.vue
View file @
39845597
...
...
@@ -61,6 +61,9 @@ export default {
getCustomerSelect
(
params
)
.
then
(
res
=>
this
.
list
=
res
.
data
.
list
)
.
finally
(()
=>
this
.
loading
=
false
)
},
reset
(){
this
.
index
=
null
}
}
}
...
...
src/views/ecw/financial/creatCollection.vue
View file @
39845597
...
...
@@ -19,6 +19,7 @@
>
<span
style=
"margin-right:20px"
><span
style=
"color: #ff4949;"
>
*
</span>
{{
$t
(
'
客户
'
)
}}
</span>
<customer-selector
ref=
"customer"
v-model=
"form.customerId"
@
change=
"customerChange"
/>
...
...
@@ -751,10 +752,11 @@ export default {
this
.
id
=
this
.
$route
.
query
.
id
;
this
.
getReceivableData
()
}
console
.
log
(
this
.
$route
.
query
.
receiptId
)
if
(
this
.
$route
.
query
.
receiptId
&&
this
.
$route
.
query
.
receiptId
!==
'
0
'
)
{
if
(
this
.
$route
.
query
.
receiptId
&&
this
.
$route
.
query
.
receiptId
!=
0
)
{
this
.
receiptId
=
this
.
$route
.
query
.
receiptId
;
this
.
getReceivableInfo
()
}
else
{
this
.
removeData
()
}
}
,
async
created
()
{
...
...
@@ -1165,7 +1167,7 @@ export default {
return
NP
.
divide
(
this
.
currencyList
.
find
(
v
=>
v
.
titleEn
===
'
NGN
'
).
huilv
,
100
).
toFixed
(
6
)
}
,
customerChange
(
value
)
{
if
(
this
.
flag
)
{
if
(
this
.
flag
||!
value
)
{
this
.
flag
=
false
return
}
...
...
@@ -1434,6 +1436,19 @@ export default {
this
.
queryParams
.
page
=
1
;
this
.
getList
()
}
,
//清空数据
removeData
(){
console
.
log
(
this
.
form
)
this
.
$refs
.
customer
.
reset
()
this
.
list
=
[]
for
(
var
i
in
this
.
form
){
if
(
i
==
'
receiptAccountList
'
){
this
.
$set
(
this
.
form
,
i
,[])
}
else
{
this
.
$set
(
this
.
form
,
i
,
''
)
}
}
}
}
,
}
;
<
/script
>
...
...
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