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
0509a6c2
Commit
0509a6c2
authored
Jul 12, 2019
by
huangyuanyuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
首页添加投诉弹窗,订单添加幸福存折,销售查看客户分析
parent
55cdb8a0
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
412 additions
and
5 deletions
+412
-5
MyCustomer.vue
src/components/SalesModule/MyCustomer.vue
+6
-0
enrollTotal.vue
src/components/SalesModule/enrollTotal.vue
+88
-1
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+61
-1
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+62
-1
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+62
-1
todayOrderTotal.vue
src/components/TravelManager/TravelList/todayOrderTotal.vue
+62
-1
index.vue
src/components/index.vue
+55
-0
config.js
src/router/config.js
+16
-0
No files found.
src/components/SalesModule/MyCustomer.vue
View file @
0509a6c2
...
...
@@ -14,6 +14,8 @@
.page_MyCustomer
._mc_list
>
ul
>
li
:hover
.iconDelete
{
display
:
block
;}
.page_MyCustomer
._mc_list
>
ul
>
li
.iconDelete1
{
cursor
:
pointer
;
display
:
none
;
position
:
absolute
;
top
:
-4px
;
right
:
16px
;
color
:
#2CA4F0
;
z-index
:
5
;
}
.page_MyCustomer
._mc_list
>
ul
>
li
:hover
.iconDelete1
{
display
:
block
;}
.page_MyCustomer
._mc_list
>
ul
>
li
.iconDelete2
{
cursor
:
pointer
;
display
:
none
;
position
:
absolute
;
top
:
-4px
;
right
:
32px
;
color
:
#34BFA3
;
z-index
:
5
;
}
.page_MyCustomer
._mc_list
>
ul
>
li
:hover
.iconDelete2
{
display
:
block
;}
.page_MyCustomer
._mc_list
>
ul
>
li
>
img
{
position
:
absolute
;
z-index
:
5
;}
.page_MyCustomer
._head_info_box
{
text-align
:
center
;
font-size
:
14px
;
color
:
#333333
}
.page_MyCustomer
._head_info_box
img
{
height
:
48px
;
width
:
48px
;
border-radius
:
50%
;
margin-bottom
:
5px
}
...
...
@@ -103,6 +105,7 @@
<div
class=
"_mc_list _scrollbar"
:class=
"addShow==true?'_edHeight':''"
>
<ul
class=
"clearfix"
>
<li
v-for=
"(item,index) in dataList"
@
click=
"goUrl(type,item.customerId)"
>
<i
class=
"iconDelete2 iconfont icon-zongbiao"
@
click
.
stop=
"goUrC('CustomerAnalysis',item.customerId)"
></i>
<i
class=
"iconDelete1 iconfont icon-kehuguanxi_kehu"
@
click
.
stop=
"goUrlT('empBankAccount',item.customerId)"
></i>
<i
class=
"iconDelete iconfont icon-kehuguanxi_delete1"
@
click
.
stop=
"deleteCustomer(item)"
></i>
<img
src=
"../../assets/img/vip.png"
style=
"left: 134px; top: 50px;"
v-show=
"item.isMember==1&&type==2"
/>
...
...
@@ -551,6 +554,9 @@ export default {
},
goUrl
(
type
,
id
){
this
.
$router
.
push
({
name
:
'MyCustomerDetail'
,
query
:{
"id"
:
id
}
})
},
goUrC
(
path
,
customerId
){
this
.
$router
.
push
({
name
:
path
,
query
:{
"customerId"
:
customerId
,
blank
:
'y'
}
})
},
goUrlT
(
path
,
id
){
this
.
$router
.
push
({
name
:
path
,
query
:{
"id"
:
id
,
"type"
:
8
}
})
...
...
src/components/SalesModule/enrollTotal.vue
View file @
0509a6c2
...
...
@@ -278,9 +278,40 @@
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
moneyFormat
(
item
.
discountMoney
)
}}
</span>
</el-popover>
</td>
<td>
<el-popover
v-if=
"item.customerId || item.customerId==0"
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
金额
</th>
<th>
类型
</th>
<th>
描述
</th>
<th>
时间
</th>
</tr>
<tr
v-for=
"(item2,index2) in redBagList"
:key=
"index2"
>
<td>
{{
item2
.
Money
}}
</td>
<td>
{{
item2
.
Type
==
1
?
"收入"
:
"折扣"
}}
</td>
<td>
{{
item2
.
Description
}}
</td>
<td>
{{
item2
.
UpdateTime
}}
</td>
</tr>
<tr
v-if=
'redBagList.length==0'
>
<td
colspan=
"4"
align=
"center"
>
暂无数据
</td>
</tr>
<tr>
<!--
<td
@
click=
"goUrlHappy(item)"
style=
"cursor: pointer;"
colspan=
"4"
align=
"center"
>
查看更多
</td>
-->
</tr>
</table>
</div>
<span
@
click=
"getRedBag(item)"
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</el-popover>
<span
v-else
style=
"color: #e95252;"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-else
>
0.00
</td>
<td>
{{
item
.
redEnvelopeMoney
}}
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
...
...
@@ -403,6 +434,7 @@
}
return
obj
;
},
redBagList
:[],
defaultImg
:
'this.src="'
+
require
(
"../../assets/img/litheader.png"
)
+
'"'
,
currentPage
:
1
,
total
:
0
,
...
...
@@ -483,6 +515,34 @@
};
},
methods
:
{
goUrlHappy
(
item
){
this
.
$router
.
push
({
name
:
"HappyPassbook"
,
query
:
{
CustomerId
:
item
.
customerId
,
blank
:
"y"
,
}
});
},
getRedBag
(
item
){
let
msg
=
{
CustomerId
:
item
.
customerId
,
pageIndex
:
1
,
pageSize
:
4
,
};
if
(
item
.
customerId
){
this
.
apipost
(
'customer_post_GetC_BigRedEnvelopeInfoList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
redBagList
=
res
.
data
.
data
.
pageData
;
}
else
{
}
},
err
=>
{
})
}
else
{
this
.
redBagList
=
[];
}
},
//跳转
goUrlTS
(
path
,
id
,
orderId
,
title
)
{
this
.
$router
.
push
({
...
...
@@ -725,6 +785,33 @@
</
script
>
<
style
>
/* .personNolayer table td{
background-color: #ededed;
height: 34px;
text-indent: 15px;
}
*/
.personNolayer
table
th
{
background-color
:
#ededed
;
height
:
34px
;
text-indent
:
15px
;
}
.personNolayer
table
td
{
background-color
:
#ffffff
;
padding
:
9px
15px
;
color
:
#333333
;
border
:
1px
solid
#d2d2d2
;
}
.personNolayer
table
._color_666
{
color
:
#666666
;
}
.personNolayer
table
tr
._color_666
th
{
padding
:
9px
15px
;
}
.groupts
.underline
{
text-decoration
:
underline
;
margin
:
5px
;
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
0509a6c2
...
...
@@ -1656,7 +1656,38 @@
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
<td>
{{
item
.
redEnvelopeMoney
}}
</td>
<td>
<el-popover
v-if=
"item.customerId || item.customerId==0"
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
金额
</th>
<th>
类型
</th>
<th>
描述
</th>
<th>
时间
</th>
</tr>
<tr
v-for=
"(item2,index2) in redBagList"
:key=
"index2"
>
<td>
{{
item2
.
Money
}}
</td>
<td>
{{
item2
.
Type
==
1
?
"收入"
:
"折扣"
}}
</td>
<td>
{{
item2
.
Description
}}
</td>
<td>
{{
item2
.
UpdateTime
}}
</td>
</tr>
<tr
v-if=
'redBagList.length==0'
>
<td
colspan=
"4"
align=
"center"
>
暂无数据
</td>
</tr>
<tr>
<!--
<td
@
click=
"goUrlHappy(item)"
style=
"cursor: pointer;"
colspan=
"4"
align=
"center"
>
查看更多
</td>
-->
</tr>
</table>
</div>
<span
@
click=
"getRedBag(item)"
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</el-popover>
<span
v-else
style=
"color: #e95252;"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
...
...
@@ -1908,6 +1939,7 @@
export
default
{
data
()
{
return
{
redBagList
:[],
// 修改应收总额
Ysze
:
false
,
addMsg_form
:
{},
...
...
@@ -2209,6 +2241,34 @@
}
},
methods
:
{
goUrlHappy
(
item
){
this
.
$router
.
push
({
name
:
"HappyPassbook"
,
query
:
{
CustomerId
:
item
.
customerId
,
blank
:
"y"
,
}
});
},
getRedBag
(
item
){
let
msg
=
{
CustomerId
:
item
.
customerId
,
pageIndex
:
1
,
pageSize
:
4
,
};
if
(
item
.
customerId
){
this
.
apipost
(
'customer_post_GetC_BigRedEnvelopeInfoList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
redBagList
=
res
.
data
.
data
.
pageData
;
}
else
{
}
},
err
=>
{
})
}
else
{
this
.
redBagList
=
[];
}
},
goIisDetail
:
function
(
id
)
{
// 跳转发票详情页面
this
.
$router
.
push
({
name
:
'invoicesManagerDetail'
,
...
...
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
0509a6c2
...
...
@@ -1805,7 +1805,39 @@
</el-popover>
</td>
<td>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
{{item.redEnvelopeMoney}}
</span>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
<el-popover
v-if=
"item.customerId || item.customerId==0"
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
金额
</th>
<th>
类型
</th>
<th>
描述
</th>
<th>
时间
</th>
</tr>
<tr
v-for=
"(item2,index2) in redBagList"
:key=
"index2"
>
<td>
{{item2.Money}}
</td>
<td>
{{item2.Type==1?"收入":"折扣"}}
</td>
<td>
{{item2.Description}}
</td>
<td>
{{item2.UpdateTime}}
</td>
</tr>
<tr
v-if=
'redBagList.length==0'
>
<td
colspan=
"4"
align=
"center"
>
暂无数据
</td>
</tr>
<tr>
<!-- <td @click="goUrlHappy(item)" style="cursor: pointer;" colspan="4" align="center">查看更多</td> -->
</tr>
</table>
</div>
<span
@
click=
"getRedBag(item)"
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{item.redEnvelopeMoney}}
</span>
</el-popover>
<span
v-else
style=
"cursor: pointer;color: #e95252;"
>
{{item.redEnvelopeMoney}}
</span>
</span>
<span
v-else
>
******
</span>
</td>
<td>
...
...
@@ -2485,6 +2517,7 @@
export
default
{
data
()
{
return
{
redBagList
:[],
// 修改应收总额
Ysze
:
false
,
addMsg_form
:
{},
...
...
@@ -2858,6 +2891,34 @@
}
},
methods
:
{
goUrlHappy
(
item
){
this
.
$router
.
push
({
name
:
"HappyPassbook"
,
query
:
{
CustomerId
:
item
.
customerId
,
blank
:
"y"
,
}
});
},
getRedBag
(
item
){
let
msg
=
{
CustomerId
:
item
.
customerId
,
pageIndex
:
1
,
pageSize
:
4
,
};
if
(
item
.
customerId
){
this
.
apipost
(
'customer_post_GetC_BigRedEnvelopeInfoList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
redBagList
=
res
.
data
.
data
.
pageData
;
}
else
{
}
},
err
=>
{
})
}
else
{
this
.
redBagList
=
[];
}
},
// 跳转调查列表
goInvetig
:
function
(
path
,
tcid
,
orderId
)
{
this
.
$router
.
push
({
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
0509a6c2
...
...
@@ -1642,7 +1642,38 @@
slot=
"reference"
>
{{moneyFormat(item.DiscountMoney)}}
</span>
</el-popover>
</td>
<td>
{{item.RedEnvelopeMoney}}
</td>
<td>
<el-popover
v-if=
"item.CustomerId || item.CustomerId==0"
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
金额
</th>
<th>
类型
</th>
<th>
描述
</th>
<th>
时间
</th>
</tr>
<tr
v-for=
"(item2,index2) in redBagList"
:key=
"index2"
>
<td>
{{item2.Money}}
</td>
<td>
{{item2.Type==1?"收入":"折扣"}}
</td>
<td>
{{item2.Description}}
</td>
<td>
{{item2.UpdateTime}}
</td>
</tr>
<tr
v-if=
'redBagList.length==0'
>
<td
colspan=
"4"
align=
"center"
>
暂无数据
</td>
</tr>
<tr>
<!-- <td @click="goUrlHappy(item)" style="cursor: pointer;" colspan="4" align="center">查看更多</td> -->
</tr>
</table>
</div>
<span
@
click=
"getRedBag(item)"
style=
"cursor: pointer;color: #e95252;padding:0 15px"
slot=
"reference"
>
{{item.RedEnvelopeMoney}}
</span>
</el-popover>
<span
v-else
style=
"cursor: pointer;color: #e95252;"
>
{{item.RedEnvelopeMoney}}
</span>
</td>
<td>
{{item.Refund}}
</td>
<td>
{{item.PlatformTax}}
</td>
<td>
{{item.ZaiTuMoney}}
</td>
...
...
@@ -2701,6 +2732,7 @@
export
default
{
data
()
{
return
{
redBagList
:[],
IsHaveAuth
:
0
,
//是否有权限
// 修改应收总额
Ysze
:
false
,
...
...
@@ -3113,6 +3145,35 @@
commonShouSun
:
commonShouSun
},
methods
:
{
goUrlHappy
(
item
){
this
.
$router
.
push
({
name
:
"HappyPassbook"
,
query
:
{
CustomerId
:
item
.
CustomerId
,
blank
:
"y"
,
}
});
},
getRedBag
(
item
){
console
.
log
(
item
);
let
msg
=
{
CustomerId
:
item
.
CustomerId
,
pageIndex
:
1
,
pageSize
:
4
,
};
if
(
item
.
CustomerId
){
this
.
apipost
(
'customer_post_GetC_BigRedEnvelopeInfoList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
redBagList
=
res
.
data
.
data
.
pageData
;
}
else
{
}
},
err
=>
{
})
}
else
{
this
.
redBagList
=
[];
}
},
closeShouSunDialog
()
{
this
.
shousunDialog
=
false
;
},
...
...
src/components/TravelManager/TravelList/todayOrderTotal.vue
View file @
0509a6c2
...
...
@@ -282,7 +282,39 @@
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
<td>
{{
item
.
redEnvelopeMoney
}}
</td>
<td>
<el-popover
v-if=
"item.customerId || item.customerId==0"
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
金额
</th>
<th>
类型
</th>
<th>
描述
</th>
<th>
时间
</th>
</tr>
<tr
v-for=
"(item2,index2) in redBagList"
:key=
"index2"
>
<td>
{{
item2
.
Money
}}
</td>
<td>
{{
item2
.
Type
==
1
?
"收入"
:
"折扣"
}}
</td>
<td>
{{
item2
.
Description
}}
</td>
<td>
{{
item2
.
UpdateTime
}}
</td>
</tr>
<tr
v-if=
'redBagList.length==0'
>
<td
colspan=
"4"
align=
"center"
>
暂无数据
</td>
</tr>
<tr>
<!--
<td
@
click=
"goUrlHappy(item)"
style=
"cursor: pointer;"
colspan=
"4"
align=
"center"
>
查看更多
</td>
-->
</tr>
</table>
</div>
<span
@
click=
"getRedBag(item)"
style=
"cursor: pointer;color: #e95252;padding:0 15px"
slot=
"reference"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</el-popover>
<span
v-else
style=
"cursor: pointer;color: #e95252;"
>
{{
item
.
redEnvelopeMoney
}}
</span>
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-else
>
0.00
</td>
<td>
{{
item
.
refund
}}
</td>
...
...
@@ -383,6 +415,7 @@
},
data
()
{
return
{
redBagList
:[],
normalizer
(
node
)
{
return
{
id
:
node
.
DepartmentId
,
...
...
@@ -466,6 +499,34 @@
};
},
methods
:
{
goUrlHappy
(
item
){
this
.
$router
.
push
({
name
:
"HappyPassbook"
,
query
:
{
CustomerId
:
item
.
customerId
,
blank
:
"y"
,
}
});
},
getRedBag
(
item
){
let
msg
=
{
CustomerId
:
item
.
customerId
,
pageIndex
:
1
,
pageSize
:
4
,
};
if
(
item
.
customerId
){
this
.
apipost
(
'customer_post_GetC_BigRedEnvelopeInfoList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
redBagList
=
res
.
data
.
data
.
pageData
;
}
else
{
}
},
err
=>
{
})
}
else
{
this
.
redBagList
=
[];
}
},
goUrlSFD
:
function
(
path
,
name
,
item
)
{
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
obj
.
oP_Remarks
=
''
...
...
src/components/index.vue
View file @
0509a6c2
...
...
@@ -888,6 +888,21 @@
</div>
</div>
<a
id=
'groupTourOrderByTuan_DownLoad'
target=
"_blank"
style=
"display:none"
></a>
<!-- 投诉 -->
<div
class=
"tsDiv"
v-if=
"tsState"
>
<div
class=
"tsContent"
>
<div
style=
"width:100%;height:372px;position:relative"
>
<p
style=
"text-align:center;font-size:14px;z-index:100;"
>
投诉案例
</p>
<img
@
click=
"CloseTs"
class=
"tsClose"
style=
"width:11px;height:11px;pointer"
src=
"../assets/img/tsclose.png"
alt=
""
>
<img
class=
"tsbg"
style=
"width:100%;height:100%"
src=
"../assets/img/ts.png"
alt=
""
>
</div>
<div
style=
"text-align:center"
>
<p
style=
"font-size:26px;color:#111111;margin:40px 0"
>
第{{tsNumber}}期投诉案例分享已经发布
</p>
<a
@
click=
"CloseTs"
href=
"http://we.oytour.com:8110/?/article/8"
style=
"font-size:18px;color:#E95252;cursor:pointer;text-decoration:underline"
>
点击查看
</a>
</div>
</div>
</div>
</div>
</template>
...
...
@@ -914,6 +929,8 @@ export default {
},
data
()
{
return
{
tsState
:
false
,
tsNumber
:
1
,
saleRnkShow
:
false
,
dialogTitleNot
:
''
,
outerVisibleNot
:
false
,
...
...
@@ -1474,6 +1491,9 @@ export default {
this
.
getNewSaleRnkInfo
()
},
created
()
{
if
(
!
localStorage
.
getItem
(
"tsNumber"
)
||
localStorage
.
getItem
(
"tsNumber"
)
!=
this
.
tsNumber
){
this
.
tsState
=
true
;
}
//页面刚进入时开启长连接
// this.initWebSocket()
let
language
=
localStorage
.
language
...
...
@@ -1496,6 +1516,10 @@ export default {
}
},
methods
:
{
CloseTs
(){
localStorage
.
setItem
(
"tsNumber"
,
this
.
tsNumber
);
this
.
tsState
=
false
;
},
getNewSaleRnkInfo
:
function
(){
let
msg
=
{
StartDate
:
''
...
...
@@ -3529,6 +3553,37 @@ export default {
@import "../assets/css/main.less";
@import "../assets/css/cssReset.css";
@import "../assets/css/message.css";
.tsDiv .tsContent .tsbg{
position: absolute;
top:0px;
width: 100%;
height:100%;
}
.tsDiv .tsContent .tsClose{
position: absolute;
right: 20px;
top:20px;
z-index:100;
}
.tsDiv{
position: fixed;
z-index: 200000;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.4);
}
.tsDiv .tsContent{
position: absolute;
width: 540px;
height:554px;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
background: #fff;
}
.downmz .khd a{
color: #fff;
}
...
...
src/router/config.js
View file @
0509a6c2
...
...
@@ -1816,7 +1816,15 @@ export default {
meta
:
{
title
:
'我的客户'
},
},
{
// 销售 客户分析
path
:
'/CustomerAnalysis'
,
name
:
'CustomerAnalysis'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/CustomerAnalysis'
],
resolve
),
meta
:
{
title
:
'客户分析'
},
},
{
// 销售 客户转交
path
:
'/customerTransfer'
,
name
:
'customerTransfer'
,
...
...
@@ -1853,6 +1861,14 @@ export default {
meta
:
{
title
:
'拜访记录'
},
},
{
// 销售 幸福存折
path
:
'/HappyPassbook'
,
name
:
'HappyPassbook'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/HappyPassbook'
],
resolve
),
meta
:
{
title
:
'幸福存折'
},
},
{
// 销售 统计
path
:
'/demandStatistics'
,
name
:
'demandStatistics'
,
...
...
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