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
943f4778
Commit
943f4778
authored
May 31, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
c76c885d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
8 deletions
+22
-8
customerApprovalFor.vue
src/components/SalesModule/customerApprovalFor.vue
+1
-1
signedFinanceALL.vue
src/components/SalesModule/signedFinanceALL.vue
+17
-4
signedFinanceCheck.vue
src/components/SalesModule/signedFinanceCheck.vue
+4
-3
No files found.
src/components/SalesModule/customerApprovalFor.vue
View file @
943f4778
...
@@ -393,7 +393,7 @@
...
@@ -393,7 +393,7 @@
>
>
签约资料
签约资料
</p>
</p>
<a
style=
"margin-left:20px;color:blue;cursor:pointer;font-size: 14px;"
target=
"_blank"
<a
v-if=
"detailList.signingFile"
style=
"margin-left:20px;color:blue;cursor:pointer;font-size: 14px;"
target=
"_blank"
@
click=
"downloadFile(detailList.signingFile)"
>
签约客户附件
</a>
@
click=
"downloadFile(detailList.signingFile)"
>
签约客户附件
</a>
<p
class=
"fz14 color666 mt10"
>
<p
class=
"fz14 color666 mt10"
>
<i
class=
"iconfont icon-fangwenjilu fz14 colorccc"
></i>
<i
class=
"iconfont icon-fangwenjilu fz14 colorccc"
></i>
...
...
src/components/SalesModule/signedFinanceALL.vue
View file @
943f4778
...
@@ -577,6 +577,9 @@ input[type="number"] {
...
@@ -577,6 +577,9 @@ input[type="number"] {
<table
v-if=
"active == 3"
class=
"leaderPayTable"
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
>
<table
v-if=
"active == 3"
class=
"leaderPayTable"
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
>
<tr>
<tr>
<th>
客户名称
</th>
<th>
联系方式
</th>
<th>
签约额度
</th>
<th>
创建者
</th>
<th>
创建者
</th>
<th>
创建时间
</th>
<th>
创建时间
</th>
<th>
审核状态
</th>
<th>
审核状态
</th>
...
@@ -587,6 +590,10 @@ input[type="number"] {
...
@@ -587,6 +590,10 @@ input[type="number"] {
<th>
操作
</th>
<th>
操作
</th>
</tr>
</tr>
<tr
v-for=
"(item,index) in czList"
:key=
"index"
>
<tr
v-for=
"(item,index) in czList"
:key=
"index"
>
<td>
{{
item
.
customerName
}}
</td>
<td>
{{
item
.
contactNumber
}}
</td>
<td>
{{
item
.
totalPrice
}}
</td>
<td>
{{
item
.
createBy
}}
</td>
<td>
{{
item
.
createBy
}}
</td>
<td>
{{
item
.
createDate
}}
</td>
<td>
{{
item
.
createDate
}}
</td>
<td>
{{
item
.
statusName
}}
</td>
<td>
{{
item
.
statusName
}}
</td>
...
@@ -1105,7 +1112,13 @@ export default {
...
@@ -1105,7 +1112,13 @@ export default {
null
null
);
);
},
},
getList
()
{
// 获取待结算列表数据
getList
(
t
,
active
)
{
// 获取待结算列表数据
if
(
active
)
{
this
.
total
=
0
;
this
.
DataList
=
[];
this
.
msg
.
pageIndex
=
1
;
this
.
isTerminate
++
;
}
this
.
loading
=
true
this
.
loading
=
true
this
.
czList
=
[]
this
.
czList
=
[]
this
.
apipost
(
'customer_post_GetSettlementCustomerPage'
,
{...
this
.
msg
,
CustomerStatus
:
0
},
res
=>
{
this
.
apipost
(
'customer_post_GetSettlementCustomerPage'
,
{...
this
.
msg
,
CustomerStatus
:
0
},
res
=>
{
...
@@ -1131,11 +1144,11 @@ export default {
...
@@ -1131,11 +1144,11 @@ export default {
this
.
msg
.
pageIndex
==
1
;
this
.
msg
.
pageIndex
==
1
;
this
.
getPageList
(
0
,
1
);
this
.
getPageList
(
0
,
1
);
},
},
getPageList
()
{
getPageList
(
t
,
active
)
{
if
(
this
.
active
==
1
)
{
if
(
this
.
active
==
1
)
{
this
.
getAllPageList
(
0
,
1
);
this
.
getAllPageList
(
t
,
active
);
}
else
{
}
else
{
this
.
getList
()
this
.
getList
(
t
,
active
)
}
}
},
},
getAllPageList
(
t
,
active
)
{
getAllPageList
(
t
,
active
)
{
...
...
src/components/SalesModule/signedFinanceCheck.vue
View file @
943f4778
...
@@ -854,7 +854,7 @@ input[type="number"] {
...
@@ -854,7 +854,7 @@ input[type="number"] {
</div>
</div>
</div>
</div>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"showCheck = true"
>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"showCheck = true"
>
结算
审核
</button>
</button>
</div>
</div>
<div
style=
"margin-top: 10px"
v-loading=
"detailLoading"
>
<div
style=
"margin-top: 10px"
v-loading=
"detailLoading"
>
...
@@ -1013,7 +1013,7 @@ input[type="number"] {
...
@@ -1013,7 +1013,7 @@ input[type="number"] {
</div>
</div>
<el-dialog
<el-dialog
custom-class=
"addCompany page_MyCustomer"
custom-class=
"addCompany page_MyCustomer"
title=
"
结算
"
title=
"
审核
"
width=
"400px"
width=
"400px"
:visible
.
sync=
"showCheck"
:visible
.
sync=
"showCheck"
center
center
...
@@ -1087,7 +1087,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
...
@@ -1087,7 +1087,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
CustomerStatus
:
0
,
CustomerStatus
:
0
,
totalData
:
{},
totalData
:
{},
allCheck
:
false
,
allCheck
:
false
,
addMsg
:
{},
addMsg
:
{
Status
:
1
},
showCheck
:
false
,
showCheck
:
false
,
saveMsg
:
[],
saveMsg
:
[],
headers
:
{
headers
:
{
...
@@ -1187,6 +1187,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
...
@@ -1187,6 +1187,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
showCheck
=
false
;
this
.
showCheck
=
false
;
this
.
$message
.
success
(
res
.
data
.
message
||
"操作成功"
);
this
.
$message
.
success
(
res
.
data
.
message
||
"操作成功"
);
this
.
getDetail
(
this
.
frId
)
}
else
{
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
||
"发生异常,请重试"
);
this
.
$message
.
error
(
res
.
data
.
message
||
"发生异常,请重试"
);
}
}
...
...
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