Commit 6a5d9156 authored by 华国豪's avatar 华国豪 🙄

新增联盟客户列表

parent 180c1fff
...@@ -569,6 +569,9 @@ export default { ...@@ -569,6 +569,9 @@ export default {
case "/VoucherInquiryAdd": //新增调查 case "/VoucherInquiryAdd": //新增调查
path = "/VoucherInquiry"; path = "/VoucherInquiry";
break; break;
case "/LianMengManagementList": //客户联盟客户列表
path = "/LianMengManagement";
break;
} }
//找到Root //找到Root
...@@ -789,6 +792,9 @@ export default { ...@@ -789,6 +792,9 @@ export default {
case "/VoucherInquiryAdd": //新增调查 case "/VoucherInquiryAdd": //新增调查
path = "/VoucherInquiry"; path = "/VoucherInquiry";
break; break;
case "/LianMengManagementList": //客户联盟客户列表
path = "/LianMengManagement";
break;
} }
//找到Root //找到Root
......
<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>
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<el-option v-for='item in appAuditStatusList' :label='item.label' :value='item.value' :key='item.value'></el-option> <el-option v-for='item in appAuditStatusList' :label='item.label' :value='item.value' :key='item.value'></el-option>
</el-select></span> </el-select></span>
</li> </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> </ul>
</div> </div>
......
...@@ -980,8 +980,8 @@ export default { ...@@ -980,8 +980,8 @@ export default {
return return
} }
// type 1 零件地 自动生成 2 领队人头费 跳转 // type 1 零件地 自动生成 2 领队人头费 跳转
let BType = 3, let BType = 4,
AccountId = 1, AccountId = 19,
IsRelevanceTravel = 1, IsRelevanceTravel = 1,
TemplateId = 71, TemplateId = 71,
RB_Branch_Id = userinfo.RB_Branch_id, RB_Branch_Id = userinfo.RB_Branch_id,
......
...@@ -550,6 +550,14 @@ export default { ...@@ -550,6 +550,14 @@ export default {
title: '联盟管理' title: '联盟管理'
}, },
}, },
{
path: '/LianMengManagementList', //联盟客户列表管理
name: 'LianMengManagementList',
component: resolve => require(['@/components/administrative/LianMengManagementList'], resolve),
meta: {
title: '联盟管理'
},
},
{ {
path: '/happyMoney', //幸福存折 path: '/happyMoney', //幸福存折
name: 'happyMoney', name: 'happyMoney',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment