维护客户基本完善---消费记录

This commit is contained in:
wanyongkang
2020-11-28 18:07:20 +08:00
parent 68cc9c2953
commit fd31a3bf23
2 changed files with 349 additions and 0 deletions

View File

@@ -0,0 +1,344 @@
<template>
<div v-loading="loading">
<el-card class="box-card">
<div class="heior_box">
<!-- <el-button size="small" type="primary" icon="el-icon-sold-out" @click="dataExport" v-if="$local.isRoot()">导出</el-button> -->
<div class="search-box">
<el-input style="width:190px" v-model="searchModel.keyWord" placeholder="请输入会员号" clearable size="small">
<el-button slot="append" icon="el-icon-search" @click="search"></el-button>
</el-input>
</div>
</div>
<el-table :data="retData.Data" :height="$getHeight(200)"
@sort-change="sort"
row-key="Id" border>
<el-table-column prop="follow_status" label="状态">
<template slot-scope="scope">
<el-link @click="click_follow_status(scope.row)">{{scope.row.follow_status}}</el-link>
</template>
</el-table-column>
<el-table-column label="会员号">
<template slot-scope="scope">
<el-link @click="click_username(scope.row)">{{scope.row.UserName}}</el-link>
</template>
</el-table-column>
<el-table-column prop="CreateTime" label="注册时间"></el-table-column>
<el-table-column prop="last_pay_time" label="最后消费时间"></el-table-column>
<el-table-column label="总消费" sortable="all_amount">
<template slot-scope="scope">
<el-link @click="click_all_amount(scope.row,1)">{{scope.row.all_amount}}</el-link>
</template>value
</el-table-column>
<el-table-column label="上月消费" sortable="PrevMonthAmount">
<template slot-scope="scope">
<el-link @click="click_all_amount(scope.row,2)">{{scope.row.PrevMonthAmount}}</el-link>
</template>
</el-table-column>
<el-table-column label="本月消费" sortable="MonthAmount">
<template slot-scope="scope">
<el-link @click="click_all_amount(scope.row,3)">{{scope.row.MonthAmount}}</el-link>
</template>
</el-table-column>
<el-table-column prop="AddAmount" label="对比增长金额"></el-table-column>
<el-table-column prop="persent" label="对比增长百分比"></el-table-column>
<el-table-column label="账户总数" sortable="account_count">
<template slot-scope="scope">
<el-link @click="click_account(scope.row,1)">{{scope.row.account_count}}</el-link>
</template>
</el-table-column>
<el-table-column label="使用中个数" sortable="account_used">
<template slot-scope="scope">
<el-link @click="click_account(scope.row,3)">{{scope.row.account_used}}</el-link>
</template>
</el-table-column>value
<el-table-column label="过期个数" sortable="account_expire">
<template slot-scope="scope">
<el-link @click="click_account(scope.row,2)">{{scope.row.account_expire}}</el-link>
</template>
</el-table-column>
</el-table>
<div class="block">
<el-pagination
v-if="retData.Data.length>0"
@current-change="get"
:page-size="50"
:current-page.sync="searchModel.PageIndex"
layout="total,prev, pager, next, jumper"
:total="retData.TotalCount"
></el-pagination>
</div>
<el-dialog
title="修改跟进状态"
:visible.sync="follow_status_change_fall"
width="50%">
<el-select size="small" v-model="set_follow_status.status" placeholder="请选择">
<el-option
v-for="item in types"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
<el-input style="margin:5px 0" v-model="set_follow_status.remark" size="small" placeholder="请输入备注"></el-input>
<el-table :data="follow_status_list" border>
<el-table-column prop="create_time" label="时间"></el-table-column>
<el-table-column v-if="$local.isRoot()" prop="op_user" label="维护经理"></el-table-column>
<el-table-column prop="record" width="230" label="跟进记录"></el-table-column>
<el-table-column prop="remark" label="备注"></el-table-column>
</el-table>
<span slot="footer" class="dialog-footer">
<el-button @click="follow_status_change_fall = false"> </el-button>
<el-button :disabled="clickOk" type="primary" @click="changeFolowStatus()"> </el-button>
</span>
</el-dialog>
<el-dialog
title="用户信息"
:visible.sync="userinfo_fall"
width="30%">
<el-card class="box-card">
<p oncopy="return false;">电话{{user_info.UserName}}</p>
<p>微信{{user_info.Wx}}</p>
<p>QQ{{user_info.QQ}}</p>
</el-card>
</el-dialog>
<el-dialog
title="消费记录"
:visible.sync="cost_fall"
v-loading="cost_loading"
width="70%">
<el-table height="500px" :data="cost_list" border>
<el-table-column prop="UpdateTime" label="时间"></el-table-column>
<el-table-column prop="ProductName" label="产品"></el-table-column>
<el-table-column prop="PackageName" label="套餐"></el-table-column>
<el-table-column prop="OrderType" label="类型"></el-table-column>
<el-table-column prop="ConnectCount" label="连接数"></el-table-column>
<el-table-column prop="Accounts" show-overflow-tooltip="true" label="帐号"></el-table-column>
<el-table-column prop="OrderAmount" label="订单金额"></el-table-column>
<el-table-column prop="PaymentAmount" label="实付金额"></el-table-column>
</el-table>
</el-dialog>
<el-dialog
title="帐号记录"
:visible.sync="account_fall"
v-loading="account_loading"
width="50%">
<el-table height="500px" :data="account_list" border>
<el-table-column prop="ProductName" label="产品"></el-table-column>
<el-table-column prop="PackageName" label="套餐"></el-table-column>
<el-table-column prop="Account" label="帐号"></el-table-column>
<el-table-column prop="StartTime" label="开始时间"></el-table-column>
<el-table-column prop="EndTime" label="结束时间"></el-table-column>
</el-table>
</el-dialog>
</el-card>
</div>
</template>
<script>
import * as dateUtil from '@/extend/js/dateFormatUtil'
export default {
name: 'userIndex',
components: {
phoneHide: () => import('@/components/common/phonehide')
},
data () {
return {
loading: false,
cost_loading: false,
account_loading: false,
retData: { TotalCount: 0, Data: [] },
dateRange1: [],
dateRange2: [],
searchModel: {
PageIndex: 1,
keyWord: '',
sortLable: '',
sortOrder: 0,
profile: '',
last_month: {
s_time: '',
e_time: ''
},
new_month: {
s_time: '',
e_time: ''
},
cost_type: '0',
money1: null,
money2: null
},
types: [],
user_info: {},
follow_status_change_fall: false,
follow_status_list: [],
set_follow_status: {
user_id: null,
old_status: null,
status: null,
remark: null
},
userinfo_fall: false,
clickOk: false,
cost_fall: false,
cost_list: [],
account_list: [],
account_fall: false,
last_month: null,
new_month: null,
cost_types: [{
value: '0',
label: '总消费'
}, {
value: '1',
label: '上月消费'
}, {
value: '2',
label: '本月消费'
}],
sell_detail: {},
sell_detail_month: null,
temps: null
}
},
created () {
this.$store.commit('setCurrentNav', '用户管理>>消费统计')
},
methods: {
// eslint-disable-next-line standard/object-curly-even-spacing
sort ({column, prop, order }) {
this.searchModel.PageIndex = 1
this.searchModel.sortLable = column.sortable
// eslint-disable-next-line eqeqeq
this.searchModel.sortOrder = order == 'ascending' ? 1 : 0
this.get()
},
search () {
if (this.last_month && this.last_month.length === 2) {
this.searchModel.last_month.s_time = this.last_month[0]
this.searchModel.last_month.e_time = this.last_month[1]
}
if (this.new_month && this.new_month.length === 2) {
this.searchModel.new_month.s_time = this.new_month[0]
this.searchModel.new_month.e_time = this.new_month[1]
}
this.searchModel.PageIndex = 1
this.searchModel.sortLable = null
if (this.searchModel.money1 || this.searchModel.money2) {
if (!(this.searchModel.money1 && this.searchModel.money2)) {
this.$message({
message: '请正确填写消费范围',
type: 'warning'
})
return
}
}
this.get()
},
get () {
this.loading = true
this.$api.get(this.$api.phpURL + 'manager/UserFollow/getList', {PageIndex: this.searchModel.PageIndex, search: this.searchModel}).then(res => {
this.retData.Data = res.data.list
// eslint-disable-next-line eqeqeq
if (res.data.count != 0) {
this.retData.TotalCount = parseInt(res.data.count)
}
this.types = res.data.types
this.loading = false
})
},
click_follow_status (row) {
this.temps = row
this.clickOk = false
this.follow_status_change_fall = true
this.set_follow_status.status = row.follow_status
this.set_follow_status.user_id = row.Id
this.set_follow_status.old_status = row.follow_status
this.$api.get(this.$api.phpURL + 'manager/UserFollow/getFollowRecord', {id: row.Id}).then(res => {
this.follow_status_list = res.data
})
},
changeFolowStatus () {
// eslint-disable-next-line valid-typeof
if (typeof this.set_follow_status.status !== 'number') {
this.$alert('请选择跟进状态', '警告', {
confirmButtonText: '确定'
})
return
}
this.temps.follow_status = this.setStatus(this.set_follow_status.status)
this.clickOk = true
this.$api.post(this.$api.phpURL + 'manager/UserFollow/changeFolowStatus', {data: this.set_follow_status}).then(res => {
this.follow_status_change_fall = false
})
},
click_username (row) {
this.userinfo_fall = true
this.$api.get(this.$api.phpURL + 'manager/UserFollow/getUserInfo', {id: row.Id}).then(res => {
this.user_info = res.data
})
},
click_all_amount (row, index) {
this.cost_fall = true
this.cost_loading = true
this.$api.get(this.$api.phpURL + 'manager/UserFollow/getCostList', {id: row.Id, index: index, search: this.searchModel}).then(res => {
this.cost_list = res.data
this.cost_loading = false
})
},
click_account (row, index) {
this.account_fall = true
this.account_loading = true
this.$api.get(this.$api.phpURL + 'manager/UserFollow/getAccountList', {id: row.Id, index: index}).then(res => {
this.account_list = res.data
this.account_loading = false
})
},
setStatus (status) {
switch (status) {
case 1:
return '待跟进-未购买'
case 2:
return '跟进超时-未购买'
case 3:
return '待跟进-消费减少'
case 4:
return '跟进超时-消费减少'
case 5:
return '流失-需求减少'
case 6:
return '流失-暂时不用'
case 7:
return '流失-价格问题'
case 8:
return '流失-产品问题'
case 9:
return '流失-也可自定义'
case 10:
return '高意向客户'
case 11:
return '已完成'
}
},
dataExport () {
this.$api.getDownloadFile('/course/v1/order/ExportUserConsumeStatistics', this.searchModel)
}
}
}
</script>
<style scoped>
</style>

View File

@@ -67,6 +67,11 @@ let router = new Router({
name: 'userstatistics', name: 'userstatistics',
component: resolve => require(['@/components/user/statistics'], resolve) component: resolve => require(['@/components/user/statistics'], resolve)
}, },
{
path: 'user/statistics_one',
name: 'statistics_one',
component: resolve => require(['@/components/user/statisticsOne'], resolve)
},
// 设置 // 设置
{ {
path: 'user/managerlist', path: 'user/managerlist',