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
fa64eaba
Commit
fa64eaba
authored
Jun 06, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
d5e214bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
5 deletions
+27
-5
signedFinance.vue
src/components/SalesModule/signedFinance.vue
+27
-5
No files found.
src/components/SalesModule/signedFinance.vue
View file @
fa64eaba
...
...
@@ -953,7 +953,17 @@ input[type="number"] {
</li>
</ul>
</div>
<div
style=
"margin-bottom: 20px;font-size: 12px;margin-left: 12px;color:#666"
>
汇总金额:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
totalData
.
Money
}}
</span></div>
<div
style=
"margin-bottom: 20px;font-size: 12px;margin-left: 12px;color:#666"
>
<span
v-if=
"CustomerInfo"
style=
"color: black;"
>
<span>
门店:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
CustomerInfo
.
contactName
}}
</span></span>
<span
style=
"margin-left: 20px;"
>
客户:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
CustomerInfo
.
customerName
}}
</span></span>
<span
style=
"margin-left: 20px;margin-right: 20px;"
>
联系人:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
CustomerInfo
.
contact
[
0
].
contactName
}}
</span></span>
<span>
电话:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
CustomerInfo
.
contactNumber
}}
</span></span>
</span>
<span
style=
"margin-left: 20px;color: black;"
>
汇总金额:
<span
style=
"color: #333;font-size: 16px;margin-left:8px;"
>
{{
totalData
.
Money
}}
</span>
</span>
</div>
<div
v-if=
"type == 1"
style=
"margin: 10px"
>
<el-checkbox
v-model=
"allCheck"
@
change=
"changeSelect"
>
全选
</el-checkbox>
<el-button
style=
"margin-left: 10px"
type=
"primary"
size=
"small"
@
click=
"eidtItems"
>
批量操作
</el-button>
...
...
@@ -994,12 +1004,12 @@ input[type="number"] {
<table
v-loading=
'loading'
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
class=
"singeRowTable"
style=
"margin-bottom:30px;"
>
<tr
class=
"_t_head"
>
<th
v-if=
"type == 1"
></th>
<th>
客户名称
</th>
<
!--
<
th>
客户名称
</th>
<th>
联系人
</th>
<th>
手机号
</th>
<th>
签约到期时间
</th>
<th>
签约金额
</th>
<th>
待结算金额
</th>
<th>
待结算金额
</th>
-->
<!--
<th
v-if=
"hbState || checkboxShow || BOSSBtn || BOSSBtn2"
><input
type=
"checkbox"
v-model=
"isCkedAll"
@
click=
'checkedAll()'
></th>
-->
<th
width=
"90"
>
{{
$t
(
'system.query_company'
)
}}
</th>
<th>
{{
$t
(
'fnc.danhao'
)
}}
</th>
...
...
@@ -1015,12 +1025,12 @@ input[type="number"] {
<th
v-if=
"type == 1"
>
{{
$t
(
'system.table_operation'
)
}}
</th>
</tr>
<tr
class=
"_item_list"
v-for=
"(item,index) in czList"
>
<td
height=
"26px"
>
{{
item
.
customerName
?
item
.
customerName
:
'-'
}}
</td>
<
!--
<
td
height=
"26px"
>
{{
item
.
customerName
?
item
.
customerName
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
contact
?
item
.
contact
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
contactNumber
?
item
.
contactNumber
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
signingEndTimet
?
item
.
signingEndTimet
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
signingPrice
?
item
.
signingPrice
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
signingUnsettledPrice
?
item
.
signingUnsettledPrice
:
'-'
}}
</td>
<td
height=
"26px"
>
{{
item
.
signingUnsettledPrice
?
item
.
signingUnsettledPrice
:
'-'
}}
</td>
-->
<td
v-if=
"type == 1"
><input
type=
"checkbox"
:value=
"item.FrID"
v-model=
"item.check"
@
change=
"changeSelectItem"
></td>
<!--
<td
v-if=
"hbState || checkboxShow || BOSSBtn || BOSSBtn2"
><input
type=
"checkbox"
:value=
"item.FrID"
v-model=
"checkList"
@
change=
"ckeckedOne"
></td>
-->
<td>
{{
item
.
BranchName
}}
</td>
...
...
@@ -1357,6 +1367,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
JYExceptionList
:
[],
isShow
:
false
,
saveMsg
:
[],
CustomerInfo
:
null
,
}
},
methods
:
{
...
...
@@ -1383,6 +1394,15 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
// window.open("https://view.officeapps.live.com/op/view.aspx?src="+i.Url)
}
},
getMyCustomerInfo
()
{
this
.
apipost
(
'app_GetMyCustomerInfo'
,
{
customerId
:
this
.
msg
.
CustomerId
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
CustomerInfo
=
res
.
data
.
data
;
}
})
},
Financial_post_GetFinancLogList
(
id
)
{
// 获取单据日志
if
(
this
.
checkboxShow
)
return
;
...
...
@@ -1446,6 +1466,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
this
.
addMsg
.
SigningCustomerId
=
this
.
$route
.
query
.
id
;
this
.
apipost
(
'customer_post_GetSigningFinance'
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
saveMsg
=
[]
this
.
showCheck
=
false
this
.
$message
.
success
(
res
.
data
.
message
||
'操作成功'
)
this
.
getList
()
...
...
@@ -1617,6 +1638,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
this
.
msg
.
CustomerId
=
this
.
$route
.
query
.
id
this
.
getList
()
this
.
getTotalData
()
this
.
getMyCustomerInfo
()
}
}
...
...
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