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
5331139b
Commit
5331139b
authored
May 30, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
eb7e822a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
26 deletions
+50
-26
signedFinanceALL.vue
src/components/SalesModule/signedFinanceALL.vue
+29
-20
signedFinanceCheck.vue
src/components/SalesModule/signedFinanceCheck.vue
+18
-3
signedFinanceForAll.vue
src/components/SalesModule/signedFinanceForAll.vue
+2
-2
config.js
src/router/config.js
+1
-1
No files found.
src/components/SalesModule/signedFinanceALL.vue
View file @
5331139b
...
...
@@ -192,11 +192,6 @@
.Bill_par
{
position
:
relative
;
}
tr
th
,
tr
td
{
text-align
:
left
;
padding-left
:
10px
;
}
tr
._item_list
{
border-bottom
:
1px
solid
#e5e5e5
;
height
:
78px
;
...
...
@@ -562,19 +557,18 @@ input[type="number"] {
<th>
未结算申请数
</th>
<th>
总收客数
</th>
<th>
签约截止时间
</th>
<
th>
操作
</th
>
<
!--
<th>
操作
</th>
--
>
</tr>
<tr
v-for=
"(item, index) in DataList"
:key=
"index"
>
<td>
{{
item
.
customerName
}}
</td>
<td>
{{
item
.
contact
}}
</td>
<td>
{{
item
.
contactNumber
}}
</td>
<td>
{{
item
.
tradeTotal
}}
</td>
<td>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"lookDetail(item,1)"
>
{{
item
.
tradeTotal
}}
</span>
</td>
<td>
{{
item
.
signingPrice
}}
</td>
<td>
{{
item
.
signingUnsettledPrice
}}
</td>
<td>
{{
item
.
waringAudit
}}
</td>
<td>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"lookDetail(item,2)"
>
{{
item
.
signingUnsettledPrice
}}
</span>
</td>
<td>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"lookDetail(item,3)"
>
{{
item
.
waringAudit
}}
</span>
</td>
<td>
{{
item
.
totalGuestNum
}}
</td>
<td>
{{
item
.
signingEndTime
}}
</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>
...
...
@@ -716,7 +710,7 @@ export default {
widthSon
:
"700px"
,
colorSon
:
"#f5f5f5"
,
showID
:
false
,
active
:
1
,
active
:
3
,
userId
:
0
,
rejectNum
:
""
,
zhuanjiaoBox
:
false
,
...
...
@@ -787,7 +781,7 @@ export default {
dateEnd
:
""
,
dateArr
:
""
,
status
:
"1"
,
type
:
"
3
"
,
type
:
"
1
"
,
heightQueryBox
:
false
,
loading
:
false
,
LogLoading
:
false
,
...
...
@@ -907,23 +901,38 @@ export default {
// this.czgetList();
},
methods
:
{
lookDetail
(
item
)
{
console
.
log
(
'item'
,
item
)
this
.
$router
.
push
({
path
:
'signedFinanceForAll'
,
query
:
{
lookDetail
(
item
,
type
)
{
console
.
log
(
'item'
,
item
,
type
)
let
path
=
''
let
query
=
{}
if
(
type
==
1
)
{
path
=
'MyCustomerDetail'
,
query
=
{
id
:
item
.
customerId
,
blank
:
'y'
,
}
})
}
else
if
(
type
==
2
)
{
// weij
path
=
'signedFinance'
,
query
=
{
id
:
item
.
customerId
,
blank
:
'y'
,
}
}
else
{
// 详情
path
=
'signedFinanceForAll'
,
query
=
{
id
:
item
.
customerId
,
blank
:
'y'
,
}
}
this
.
$router
.
push
({
path
,
query
})
},
financeCheck
(
item
)
{
// this.checkObj = item;
// this.showCheck = true
this
.
$router
.
push
({
path
:
'
customerAccountId
'
,
path
:
'
signedFinanceCheck
'
,
query
:
{
id
:
item
.
customerAccountI
d
,
id
:
item
.
i
d
,
blank
:
'y'
,
}
})
...
...
src/components/SalesModule/signedFinanceCheck.vue
View file @
5331139b
...
...
@@ -827,13 +827,28 @@ input::-webkit-inner-spin-button {
input
[
type
=
"number"
]
{
-moz-appearance
:
textfield
;
}
.check-info
{
margin
:
10px
;
font-size
:
14px
;
color
:
#666
;
}
.check-info
span
{
margin-left
:
10px
;
color
:
#333
;
}
</
style
>
<
template
>
<div
class=
"page_MyCustomer MyCustomerDiv"
><button
class=
"normalBtn"
type=
"primary"
@
click=
"showCheck = true"
>
<div
class=
"page_MyCustomer MyCustomerDiv"
>
<div>
<div
class=
"check-info"
>
创建者:
<span>
{{
detailInfo
.
CreateBy
}}
</span></div>
<div
class=
"check-info"
>
创建时间:
<span>
{{
detailInfo
.
CreateDate
}}
</span></div>
<div
class=
"check-info"
>
提示:
<span>
{{
detailInfo
.
Notes
}}
</span></div>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"showCheck = true"
>
结算
</button>
<div
v-loading=
"detailLoading"
>
<table
v-loading=
'loading'
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
class=
"singeRowTable"
style=
"margin-bottom:30px;"
>
</div>
<div
style=
"margin-top: 10px"
v-loading=
"detailLoading"
>
<table
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
class=
"singeRowTable"
style=
"margin-bottom:30px;"
>
<tr
class=
"_t_head"
>
<!--
<th
v-if=
"hbState || checkboxShow || BOSSBtn || BOSSBtn2"
><input
type=
"checkbox"
v-model=
"isCkedAll"
@
click=
'checkedAll()'
></th>
-->
<th
width=
"90"
>
{{
$t
(
'system.query_company'
)
}}
</th>
...
...
src/components/SalesModule/signedFinanceForAll.vue
View file @
5331139b
...
...
@@ -1235,9 +1235,9 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
// this.showDetail = true;
// this.getDetail(item.customerAccountId)
this
.
$router
.
push
({
path
:
'
customerAccountId
'
,
path
:
'
signedFinanceCheck
'
,
query
:
{
id
:
item
.
customerAccountI
d
,
id
:
item
.
i
d
,
blank
:
'y'
,
}
})
...
...
src/router/config.js
View file @
5331139b
...
...
@@ -3233,7 +3233,7 @@ export default {
name
:
'signedFinanceCheck'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/signedFinanceCheck'
],
resolve
),
meta
:
{
title
:
'财务单据
列表
'
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