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
0a33b2e9
Commit
0a33b2e9
authored
Apr 09, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
15022a62
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1641 additions
and
7 deletions
+1641
-7
customerInfoBox.vue
src/components/assembly/customerInfoBox.vue
+7
-2
addContacts.vue
src/components/dialogModel/addContacts.vue
+2
-1
festival.vue
src/components/sellevent/festival.vue
+2
-2
index.vue
src/components/sellevent/index.vue
+2
-2
newline.vue
src/components/sellevent/newline.vue
+803
-0
newseries.vue
src/components/sellevent/newseries.vue
+806
-0
router.js
src/router.js
+18
-0
index.vue
src/views/index.vue
+1
-0
No files found.
src/components/assembly/customerInfoBox.vue
View file @
0a33b2e9
...
...
@@ -69,9 +69,9 @@
<p>
{{
detailsData
.
CustomerName
}}
</p>
</div>
<div
class=
"right"
>
<el-button
class=
"crm-btn query-btn"
@
click=
"editCust"
v-if=
"detailsData.IsRead === 0"
>
编辑
</el-button>
<el-button
class=
"crm-btn query-btn"
@
click=
"editCust"
v-if=
"detailsData.IsRead === 0
&& transferState
"
>
编辑
</el-button>
<!--
<el-button
class=
"crm-btn easy-btn iconfont iconwancheng"
v-if=
"detailsData.IsRead === 0"
>
更改成交状态
</el-button>
-->
<el-dropdown
@
command=
"handleCommand"
style=
"top: 1px;"
v-if=
"detailsData.IsRead === 0"
>
<el-dropdown
@
command=
"handleCommand"
style=
"top: 1px;"
v-if=
"detailsData.IsRead === 0
&& transferState
"
>
<el-button
class=
"crm-btn crm-btn-more easy-btn margin-right0"
>
<i
class=
"iconfont icongengduo"
></i>
</el-button>
...
...
@@ -169,6 +169,10 @@ export default {
CustomerId
:
{
type
:
Number
,
default
:
0
},
transferState
:
{
type
:
Boolean
,
default
:
true
}
},
data
()
{
...
...
@@ -193,6 +197,7 @@ export default {
this
.
MsgBus
.
$on
(
'RefreshInfoBox'
,
function
()
{
$this
.
init
()
})
console
.
log
(
"transferState"
,
this
.
transferState
)
},
methods
:
{
init
(){
...
...
src/components/dialogModel/addContacts.vue
View file @
0a33b2e9
...
...
@@ -173,7 +173,8 @@ export default {
this
.
MsgBus
.
$emit
(
'closeaddContacts'
)
},
addData
(){
this
.
form
.
CustomerId
=
this
.
ID
// this.form.CustomerId = this.ID
this
.
form
.
InfoID
=
this
.
ID
this
.
apipost
(
'/api/Customer/CreateMyCustomerContact'
,
this
.
form
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
$message
.
success
(
'操作成功'
)
...
...
src/components/sellevent/festival.vue
View file @
0a33b2e9
...
...
@@ -17,7 +17,7 @@
<el-button
slot=
"append"
icon=
"el-icon-search"
@
click=
"getList"
></el-button>
</el-input>
</div>
-->
<el-select
v-model=
"msg.Type"
placeholder=
"请选择"
>
<el-select
v-model=
"msg.Type"
placeholder=
"请选择"
@
change=
"changeType"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
...
...
@@ -501,7 +501,7 @@ export default {
this
.
MsgBus
.
$off
(
'editScene'
);
},
methods
:
{
change
Wher
e
(
item
){
change
Typ
e
(
item
){
this
.
msg
.
Type
=
item
this
.
addSendMsg
.
GraduationType
=
item
;
this
.
msg
.
pageIndex
=
1
...
...
src/components/sellevent/index.vue
View file @
0a33b2e9
...
...
@@ -86,7 +86,7 @@
<span>
同行营销事件
</span>
</div>
<div
class=
"events"
>
<div
class=
"event"
>
<div
class=
"event"
@
click=
"goBirth('newlineEvent')"
>
<img
src=
"../../assets/img/event/newline.png"
/>
<div
class=
"content"
>
<div
class=
"ti"
>
新线路推广
</div>
...
...
@@ -95,7 +95,7 @@
</div>
</div>
</div>
<div
class=
"event"
>
<div
class=
"event"
@
click=
"goBirth('newseriesEvent')"
>
<img
src=
"../../assets/img/event/newteam.png"
/>
<div
class=
"content"
>
<div
class=
"ti"
>
新系列推广
</div>
...
...
src/components/sellevent/newline.vue
0 → 100644
View file @
0a33b2e9
This diff is collapsed.
Click to expand it.
src/components/sellevent/newseries.vue
0 → 100644
View file @
0a33b2e9
This diff is collapsed.
Click to expand it.
src/router.js
View file @
0a33b2e9
...
...
@@ -234,6 +234,24 @@ export default new Router({
title
:
"下次出行事件"
}
},
{
path
:
"/newlineEvent"
,
name
:
"newlineEvent"
,
component
:
()
=>
import
(
'./components/sellevent/newline.vue'
),
meta
:
{
title
:
"新线路推广事件"
}
},
{
path
:
"/newseriesEvent"
,
name
:
"newseriesEvent"
,
component
:
()
=>
import
(
'./components/sellevent/newseries.vue'
),
meta
:
{
title
:
"新系列推广事件"
}
},
{
path
:
"/gaoxiao"
,
name
:
"gaoxiao"
,
...
...
src/views/index.vue
View file @
0a33b2e9
...
...
@@ -441,6 +441,7 @@ export default {
this
.
dialogClue
=
true
},
editCust
(){
console
.
log
(
"1111"
);
this
.
dialogTableVisibleName
=
'修改客户'
this
.
dialogCustomerVisible
=
true
},
...
...
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