Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
90ca3fbe
Commit
90ca3fbe
authored
May 29, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
4439851e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
634 additions
and
7 deletions
+634
-7
signedFinanceALL.vue
src/components/SalesModule/signedFinanceALL.vue
+15
-6
signedFinanceForAll.vue
src/components/SalesModule/signedFinanceForAll.vue
+610
-0
config.js
src/router/config.js
+9
-1
No files found.
src/components/SalesModule/signedFinanceALL.vue
View file @
90ca3fbe
...
...
@@ -531,7 +531,7 @@ input[type="number"] {
<ul
class=
"clearfix"
>
<li>
<span>
<em>
客户名称
</em>
<em
style=
"margin-left: 12px"
>
客户名称
</em>
<el-input
placeholder=
""
class=
"w150"
...
...
@@ -566,7 +566,7 @@ input[type="number"] {
<th>
未结算申请数
</th>
<th>
总收客数
</th>
<th>
签约截止时间
</th>
<th
v-if=
"active == 2"
>
操作
</th>
<th>
操作
</th>
</tr>
<tr
v-for=
"(item, index) in DataList"
:key=
"index"
>
<td>
{{
item
.
customerName
}}
</td>
...
...
@@ -575,10 +575,10 @@ input[type="number"] {
<td>
{{
item
.
tradeTotal
}}
</td>
<td>
{{
item
.
signingPrice
}}
</td>
<td>
{{
item
.
signingUnsettledPrice
}}
</td>
<td>
{{
item
.
W
aringAudit
}}
</td>
<td>
{{
item
.
w
aringAudit
}}
</td>
<td>
{{
item
.
totalGuestNum
}}
</td>
<td>
{{
item
.
signingEndTime
}}
</td>
<td
v-if=
"active == 2"
><el-button
size=
"mine"
type=
"primary"
@
click=
"financeCheck(item)"
>
审核
</el-button></td>
<td
><el-button
size=
"mini"
type=
"primary"
@
click=
"lookDetail(item)"
>
详情
</el-button></td>
</tr>
<tr
v-if=
"DataList.length == 0"
>
<td
colspan=
"12"
style=
"text-align: center"
>
暂无数据
</td>
...
...
@@ -704,7 +704,7 @@ export default {
},
msg
:
{
pageIndex
:
1
,
pageSize
:
6
,
pageSize
:
10
,
},
getCompanyMsg
:
{
// 公司
...
...
@@ -885,6 +885,15 @@ export default {
// this.czgetList();
},
methods
:
{
lookDetail
(
item
)
{
console
.
log
(
'item'
,
item
)
this
.
$router
.
push
({
path
:
'signedFinanceForAll'
,
query
:
{
id
:
item
.
customerId
}
})
},
financeCheck
(
item
)
{
this
.
checkObj
=
item
;
this
.
showCheck
=
true
...
...
@@ -895,7 +904,7 @@ export default {
return
;
}
this
.
addMsg
.
ExamineVoucher
=
this
.
BusinessCardPhotos
;
this
.
addMsg
.
Id
=
this
.
checkObj
.
customerId
;
this
.
addMsg
.
Id
=
this
.
checkObj
.
customer
Account
Id
;
this
.
apipost
(
"customer_post_UpdateSigningSettlement"
,
this
.
addMsg
,
...
...
src/components/SalesModule/signedFinanceForAll.vue
0 → 100644
View file @
90ca3fbe
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
90ca3fbe
...
...
@@ -3212,10 +3212,18 @@ export default {
title
:
'财务单据'
},
},
{
// 月结签约客户
财务单据
{
// 月结签约客户
客户列表
path
:
'/signedFinanceAll'
,
name
:
'signedFinanceAll'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/signedFinanceAll'
],
resolve
),
meta
:
{
title
:
'客户列表'
},
},
{
// 月结签约客户 财务单据
path
:
'/signedFinanceForAll'
,
name
:
'signedFinanceForAll'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/signedFinanceForAll'
],
resolve
),
meta
:
{
title
:
'财务单据列表'
},
...
...
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