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
05ddef12
Commit
05ddef12
authored
May 31, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
19e1b7b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
4 deletions
+47
-4
MyCustomer.vue
src/components/SalesModule/MyCustomer.vue
+42
-0
customerApprovalFor.vue
src/components/SalesModule/customerApprovalFor.vue
+2
-2
signedFinance.vue
src/components/SalesModule/signedFinance.vue
+3
-2
No files found.
src/components/SalesModule/MyCustomer.vue
View file @
05ddef12
...
...
@@ -763,6 +763,31 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"签约"
prop=
"SigningType"
>
<el-checkbox
v-model=
'updateMsg.SigningType'
>
签约月结客户
</el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
v-show=
"updateMsg.SigningType"
>
<el-form-item
label=
"签约资料"
prop=
"SigningFile"
>
<el-upload
v-if=
"!saveMsg || !saveMsg.length"
class=
"upload-demo"
:disabled=
"!updateMsg.SigningType"
style=
"display:inline-block;position:relative;top:-1px;left:3px;"
:http-request=
"uploadFileBtn"
:show-file-list=
"false"
action=
""
>
<el-button
size=
"small"
type=
"primary"
>
签约材料
</el-button>
</el-upload>
<
template
v-if=
"updateMsg.SigningType && saveMsg&& saveMsg.length>0"
>
<template
v-for=
"(subItem,subIndex) in saveMsg"
>
<a
style=
"margin-left:20px;color:blue;cursor:pointer;"
target=
"_blank"
:key=
"subIndex"
@
click=
"downloadFile(subItem.URL,subItem.FileName)"
>
{{
subItem
.
FileName
}}
</a>
<a
:key=
"subIndex+1000"
style=
"margin-left:20px;color:blue;cursor:pointer;"
@
click=
"DeleteFile(subIndex)"
>
删除
</a>
</
template
>
</template>
</el-form-item>
</el-col></el-row>
<el-row
:gutter=
"20"
style=
'margin-top:13px;'
>
<el-col
:span=
"24"
>
<p
class=
"fz12 color333 fbold"
style=
"border: none; margin-bottom: 15px; padding-left: 20px;"
>
需审核信息
<span
...
...
@@ -982,6 +1007,7 @@
khly
:
[],
//客户来源
outerVisible
:
false
,
updateMsg
:
{
SigningType
:
false
,
contactNumber
:
''
,
CustomerName
:
''
,
CustomerId
:
0
,
...
...
@@ -1092,6 +1118,15 @@
// return
// }
// }
if
(
this
.
updateMsg
.
SigningType
&&
!
this
.
saveMsg
.
length
)
{
this
.
$message
.
error
(
'请上传签约材料'
)
return
}
else
{
if
(
this
.
saveMsg
&&
this
.
saveMsg
.
length
>
0
)
{
this
.
updateMsg
.
SigningFile
=
this
.
saveMsg
[
0
].
Path
}
}
this
.
updateMsg
.
SigningType
=
this
.
updateMsg
.
SigningType
?
1
:
0
if
(
this
.
updateMsg
.
District
==
''
)
{
this
.
updateMsg
.
District
=
0
}
...
...
@@ -1204,6 +1239,13 @@
this
.
updateMsg
.
uniqueCode
=
x
.
uniqueCode
this
.
updateMsg
.
lineid
=
x
.
lineid
this
.
updateMsg
.
email
=
x
.
email
this
.
updateMsg
.
email
=
x
.
email
this
.
updateMsg
.
email
=
x
.
email
this
.
saveMsg
=
x
.
signingFile
?
[{
Path
:
x
.
signingFile
,
URL
:
x
.
signingFile
,
FileName
:
'签约附件'
}]
:
[]
this
.
updateMsg
.
SigningType
=
x
.
signingType
?
true
:
false
console
.
log
(
'updateMsg'
,
x
)
}
else
{}
},
err
=>
{})
},
...
...
src/components/SalesModule/customerApprovalFor.vue
View file @
05ddef12
...
...
@@ -622,7 +622,7 @@
<th
width=
"20%"
>
{{
$t
(
"salesModule.Stores"
)
}}
</th>
<th
width=
"10%"
>
{{
$t
(
"hotel.suplier_contact"
)
}}
</th>
<th
width=
"15%"
>
{{
$t
(
"hotel.table_tel"
)
}}
</th>
<
th
width=
"15%"
>
{{
$t
(
"salesModule.SaveTime"
)
}}
</th
>
<
!--
<th
width=
"15%"
>
{{
$t
(
"salesModule.SaveTime"
)
}}
</th>
--
>
<th
width=
"15%"
v-if=
"type != 1"
>
到期时间
</th>
<th
width=
"15%"
v-if=
"type != 1"
>
签约金额
</th>
<th
width=
"10%"
>
{{
$t
(
"salesModule.Laiyuan"
)
}}
</th>
...
...
@@ -641,7 +641,7 @@
{{
item
.
contact
}}
</td>
<td>
{{
item
.
contactNumber
}}
</td>
<
td>
{{
item
.
expectVisitDateTime
}}
</td
>
<
!--
<td>
{{
item
.
expectVisitDateTime
}}
</td>
--
>
<td
v-if=
"type != 1"
>
{{
item
.
signingEndTime
}}
</td>
<td
v-if=
"type != 1"
>
{{
item
.
signingPrice
}}
</td>
<td>
{{
item
.
emName
}}
</td>
...
...
src/components/SalesModule/signedFinance.vue
View file @
05ddef12
...
...
@@ -882,12 +882,12 @@ input[type="number"] {
placeholder=
''
></el-date-picker>
</span>
</li>
<li>
<li
v-show=
"type==1"
>
<span
style=
"display: block;padding: 10px"
>
<em>
状态:
</em>
<el-select
type=
"daterange"
v-model=
"msg.IsSelectAduiting"
placeholder=
''
>
<el-option
:key=
"0"
label=
"
查看
全部"
:value=
"0"
>
<el-option
:key=
"0"
label=
"全部"
:value=
"0"
>
</el-option>
<el-option
:key=
"1"
label=
"已提交审核"
:value=
"1"
>
</el-option>
...
...
@@ -1379,6 +1379,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
this
.
yfcheckList
=
[];
},
clickGetList
(
type
)
{
this
.
msg
.
IsSelectAduiting
=
0
this
.
msg
.
pageIndex
=
1
this
.
currentPage
=
1
this
.
msg
.
FinanceStatus
=
type
...
...
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