Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
华国豪
CRM
Commits
f6192f97
Commit
f6192f97
authored
Apr 27, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
1
parents
c4571052
ac3e742b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
24 deletions
+22
-24
Activity.vue
src/components/guestManagement/Activity.vue
+2
-2
Agreement.vue
src/components/guestManagement/Agreement.vue
+14
-15
customerInfoBox.vue
src/components/guestManagement/customerInfoBox.vue
+6
-7
No files found.
src/components/guestManagement/Activity.vue
View file @
f6192f97
...
@@ -417,7 +417,7 @@
...
@@ -417,7 +417,7 @@
</div>
</div>
<div>
<div>
<p>
{{
subItem
.
CustomerFollowUpModel
.
CreateByStr
}}
</p>
<p>
{{
subItem
.
CustomerFollowUpModel
.
CreateByStr
}}
</p>
<p
class=
"font-color-info"
>
{{
subItem
.
UpdateDate
}}
</p>
<p
class=
"font-color-info"
>
{{
subItem
.
UpdateDate
Str
}}
</p>
</div>
</div>
<div
class=
"tag"
>
<div
class=
"tag"
>
<span>
{{
subItem
.
CustomerFollowUpModel
.
FollowUpTypeStr
}}
</span>
<span>
{{
subItem
.
CustomerFollowUpModel
.
FollowUpTypeStr
}}
</span>
...
@@ -439,7 +439,7 @@
...
@@ -439,7 +439,7 @@
</p>
</p>
</div>
</div>
</div>
</div>
<p>
<span
class=
"font-color-info"
>
下次联系时间:
</span>
<span>
{{
subItem
.
CustomerFollowUpModel
.
NextContactDate
}}
</span></p>
<p>
<span
class=
"font-color-info"
>
下次联系时间:
</span>
<span>
{{
subItem
.
CustomerFollowUpModel
.
NextContactDate
Str
}}
</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
src/components/guestManagement/Agreement.vue
View file @
f6192f97
...
@@ -118,7 +118,15 @@
...
@@ -118,7 +118,15 @@
label=
"退款"
label=
"退款"
show-overflow-tooltip
>
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
BackMoney
}}
<i
v-if=
"scope.row.OrderStatus!=1"
@
click=
"makeAdocument(scope.row,2)"
class=
"iconfont iconjia- numIcon"
></i>
<!-- v-if="scope.row.OrderStatus!=1" -->
{{
scope
.
row
.
BackMoney
}}
<i
@
click=
"makeAdocument(scope.row,2)"
class=
"iconfont iconjia- numIcon"
></i>
</
template
>
</el-table-column>
<el-table-column
label=
"成本"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
PayMoney
}}
<i
@
click=
"makeAdocument(scope.row,3)"
class=
"iconfont iconjia- numIcon"
></i>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
...
@@ -135,13 +143,6 @@
...
@@ -135,13 +143,6 @@
</p>
</p>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"成本"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
PayMoney
}}
<i
v-if=
"scope.row.OrderStatus!=1"
@
click=
"makeAdocument(scope.row,3)"
class=
"iconfont iconjia- numIcon"
></i>
</
template
>
</el-table-column>
<el-table-column
<el-table-column
label=
"出票状态"
label=
"出票状态"
show-overflow-tooltip
>
show-overflow-tooltip
>
...
@@ -165,7 +166,7 @@
...
@@ -165,7 +166,7 @@
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"Remark"
prop=
"Remark"
label=
"
下单备注
"
label=
"
客户需求
"
show-overflow-tooltip
>
show-overflow-tooltip
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
...
@@ -262,19 +263,17 @@ export default {
...
@@ -262,19 +263,17 @@ export default {
},
},
methods
:
{
methods
:
{
// 制作单据
// 制作单据
makeAdocument
(
row
,
type
){
makeAdocument
(
row
,
num
){
if
(
type
!=
1
){
let
type
type
=
2
type
=
num
==
1
?
1
:
2
}
let
href
let
href
let
url
let
url
if
(
this
.
isOnline
()){
if
(
this
.
isOnline
()){
url
=
'http://yx.oytour.com/#/'
url
=
'http://yx.oytour.com/#/'
href
=
url
+
'automaticLogin?token='
+
this
.
getLocalStorage
().
token
+
'&type='
+
type
}
else
{
}
else
{
url
=
'http://www.test.com:8081/#/'
url
=
'http://www.test.com:8081/#/'
href
=
url
+
'automaticLogin?token='
+
this
.
getLocalStorage
().
token
+
'&type='
+
type
}
}
href
=
url
+
'automaticLogin?token='
+
this
.
getLocalStorage
().
token
+
'&type='
+
type
+
'&OtherType=55'
+
'&ReFinanceId='
+
row
.
OrderId
+
'&ReFinanceId2='
+
num
+
'&GuestId='
+
row
.
GuestId
window
.
open
(
href
);
window
.
open
(
href
);
},
},
// 操作日志
// 操作日志
...
...
src/components/guestManagement/customerInfoBox.vue
View file @
f6192f97
...
@@ -82,8 +82,9 @@
...
@@ -82,8 +82,9 @@
<p>
{{
detailsData
.
SurName
+
detailsData
.
Name
}}
</p>
<p>
{{
detailsData
.
SurName
+
detailsData
.
Name
}}
</p>
</div>
</div>
<div
class=
"right"
v-if=
"!hiddenMenu"
>
<div
class=
"right"
v-if=
"!hiddenMenu"
>
{{
detailsData
.
IsCreate
}}
<el-button
class=
"crm-btn query-btn"
@
click=
"editCust"
>
编辑
</el-button>
<el-button
class=
"crm-btn query-btn"
@
click=
"editCust"
>
编辑
</el-button>
<el-dropdown
@
command=
"handleCommand"
style=
"top: 1px;"
>
<el-dropdown
@
command=
"handleCommand"
style=
"top: 1px;"
v-if=
"detailsData.IsCreate==1"
>
<el-button
class=
"crm-btn crm-btn-more easy-btn margin-right0"
>
<el-button
class=
"crm-btn crm-btn-more easy-btn margin-right0"
>
<i
class=
"iconfont icongengduo"
></i>
<i
class=
"iconfont icongengduo"
></i>
</el-button>
</el-button>
...
@@ -104,7 +105,7 @@
...
@@ -104,7 +105,7 @@
<span
class=
"info-lable"
>
创建时间:
</span><span>
{{
detailsData
.
CreateDate
?
detailsData
.
CreateDate
:
''
}}
</span>
<span
class=
"info-lable"
>
创建时间:
</span><span>
{{
detailsData
.
CreateDate
?
detailsData
.
CreateDate
:
''
}}
</span>
</el-col>
</el-col>
</el-row>
</el-row>
</div>
</div>
<div
class=
"content"
>
<div
class=
"content"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
...
@@ -183,9 +184,8 @@
...
@@ -183,9 +184,8 @@
deep
:
true
,
deep
:
true
,
},
},
},
},
created
()
created
()
{
{
},
},
mounted
()
{
mounted
()
{
let
$this
=
this
;
let
$this
=
this
;
...
@@ -242,8 +242,7 @@
...
@@ -242,8 +242,7 @@
this
.
$emit
(
"transferS"
,
3
);
this
.
$emit
(
"transferS"
,
3
);
}
else
if
(
command
===
"g"
)
{}
}
else
if
(
command
===
"g"
)
{}
},
},
handleClick
(
tab
,
event
)
{
handleClick
(
tab
,
event
)
{},
},
editCust
()
{
editCust
()
{
this
.
$emit
(
"editCustS"
,
1
);
this
.
$emit
(
"editCustS"
,
1
);
},
},
...
...
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