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
6a5d9156
Commit
6a5d9156
authored
Jul 26, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增联盟客户列表
parent
180c1fff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
308 additions
and
23 deletions
+308
-23
Details.vue
src/components/Details.vue
+6
-0
LianMengManagement.vue
src/components/administrative/LianMengManagement.vue
+237
-20
LianMengManagementList.vue
src/components/administrative/LianMengManagementList.vue
+54
-0
forMyApproval.vue
src/components/administrative/forMyApproval.vue
+1
-1
leaderPay2.vue
src/components/leaderPay2.vue
+2
-2
config.js
src/router/config.js
+8
-0
No files found.
src/components/Details.vue
View file @
6a5d9156
...
...
@@ -569,6 +569,9 @@ export default {
case
"/VoucherInquiryAdd"
:
//新增调查
path
=
"/VoucherInquiry"
;
break
;
case
"/LianMengManagementList"
:
//客户联盟客户列表
path
=
"/LianMengManagement"
;
break
;
}
//找到Root
...
...
@@ -789,6 +792,9 @@ export default {
case
"/VoucherInquiryAdd"
:
//新增调查
path
=
"/VoucherInquiry"
;
break
;
case
"/LianMengManagementList"
:
//客户联盟客户列表
path
=
"/LianMengManagement"
;
break
;
}
//找到Root
...
...
src/components/administrative/LianMengManagement.vue
View file @
6a5d9156
This diff is collapsed.
Click to expand it.
src/components/administrative/LianMengManagementList.vue
0 → 100644
View file @
6a5d9156
<
style
>
</
style
>
<
template
>
<div
class=
"LianMengManagement"
>
<table
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th>
客户名称
</th>
<th>
联系人
</th>
<th>
电话
</th>
<th>
是否是会员
</th>
</tr>
<tr
v-for=
"item in dataList"
>
<td>
{{
item
.
CustomerName
}}
</td>
<td>
{{
item
.
Contact
}}
</td>
<td>
{{
item
.
ContactNumber
}}
</td>
<td>
{{
item
.
IsMember
==
1
?
'是'
:
'否'
}}
</td>
</tr>
</table>
<div
class=
"noDataNotice"
v-if=
"dataList.length
<1
"
>
<i
class=
"iconfont icon-kong"
></i>
<p>
{{
$t
(
"active.ld_noData"
)
}}
</p>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
loading
:
false
,
dataList
:
[],
msg
:
{
pageIndex
:
1
,
pageSize
:
10
,
AllianceName
:
''
,
Contact
:
''
,
},
}
},
mounted
()
{
let
id
=
this
.
$route
.
query
.
id
;
this
.
getList
(
id
);
},
methods
:
{
getList
:
function
(
id
)
{
this
.
loading
=
true
this
.
apipost
(
'app_customer_GetAlianceCustomerList'
,
{
Id
:
id
},
res
=>
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
loading
=
false
;
this
.
dataList
=
res
.
data
.
data
;
}
},
null
)
},
}
}
</
script
>
src/components/administrative/forMyApproval.vue
View file @
6a5d9156
...
...
@@ -28,7 +28,7 @@
<el-option
v-for=
'item in appAuditStatusList'
:label=
'item.label'
:value=
'item.value'
:key=
'item.value'
></el-option>
</el-select></span>
</li>
<li
style=
"top:-155px!important"
><input
type=
"button"
class=
"hollowFixedBtn"
value=
"查询"
@
click=
"resetPageIndex(),getList()"
/></li>
<li><input
type=
"button"
class=
"hollowFixedBtn"
value=
"查询"
@
click=
"resetPageIndex(),getList()"
/></li>
</ul>
</div>
...
...
src/components/leaderPay2.vue
View file @
6a5d9156
...
...
@@ -980,8 +980,8 @@ export default {
return
}
// type 1 零件地 自动生成 2 领队人头费 跳转
let
BType
=
3
,
AccountId
=
1
,
let
BType
=
4
,
AccountId
=
1
9
,
IsRelevanceTravel
=
1
,
TemplateId
=
71
,
RB_Branch_Id
=
userinfo
.
RB_Branch_id
,
...
...
src/router/config.js
View file @
6a5d9156
...
...
@@ -550,6 +550,14 @@ export default {
title
:
'联盟管理'
},
},
{
path
:
'/LianMengManagementList'
,
//联盟客户列表管理
name
:
'LianMengManagementList'
,
component
:
resolve
=>
require
([
'@/components/administrative/LianMengManagementList'
],
resolve
),
meta
:
{
title
:
'联盟管理'
},
},
{
path
:
'/happyMoney'
,
//幸福存折
name
:
'happyMoney'
,
...
...
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