Commit 21a23da8 authored by youjie's avatar youjie
parents 51e70eed 892ff113
<template>
<el-table border ref="multipleTable" :data="OrderList" style="width: 100%"
:default-sort="{prop: 'null', order: 'null'}"
:sort-by="['Money','Income','PreferTipAmount','PlatformTax','Refund','CostMoney','OrderProfit','DueInMoney']">
<el-table-column width="200" prop="CreateTimeStr" label="订单Id" show-overflow-tooltip>
<template slot-scope="scope">
<div>
<p class="cursor-pointer c059FF6 fz18 row-c" @click="goDetails(scope.row)">
<el-tag style="margin-right: 5px;" size="mini">{{scope.row.OrderTypeName}}</el-tag>
<span>{{scope.row.OrderId}}</span>
</p>
<p>{{scope.row.CreateTimeStr}}</p>
</div>
</template>
</el-table-column>
<el-table-column width="200" prop="CreateTimeStr" label="团号" show-overflow-tooltip>
<template slot-scope="scope">
<div>
<p class=" fz14" :class="{'cursor-pointer c059FF6':scope.row.OrderType==2}"
@click="scope.row.OrderType==2?goTuanDetails(scope.row):''">{{scope.row.TCNUM}}</p>
<p>出发日期:{{scope.row.StartDate}}</p>
</div>
</template>
</el-table-column>
<el-table-column label="客人" show-overflow-tooltip>
<template slot-scope="scope">
<span :class="{'colorblue font-color-link':pagesTitle!='详情'}"
@click="pagesTitle!='详情'?openNameDetails(scope.row):''">
{{scope.row.GuestName}}
</span>
</template>
</el-table-column>
<el-table-column prop="SaleName" label="销售">
</el-table-column>
<el-table-column prop="LureEmpName" label="引流">
</el-table-column>
<el-table-column label="商品名称" show-overflow-tooltip>
<template slot-scope="scope">
<div style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Name}}</div>
</template>
</el-table-column>
<el-table-column label="商品详情" show-overflow-tooltip>
<template slot-scope="scope">
<div style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</div>
</template>
</el-table-column>
<el-table-column sortable prop="Money" label="总金额" min-width="100" show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.Money}}&ensp;({{scope.row.CurrencyName}})
</template>
</el-table-column>
<el-table-column sortable prop="Income" label="实收">
</el-table-column>
<el-table-column sortable prop="PreferTipAmount" label="人头小费" min-width="101">
</el-table-column>
<el-table-column sortable prop="PlatformTax" label="手续费" min-width="100">
</el-table-column>
<el-table-column sortable prop="Refund" label="退款">
</el-table-column>
<el-table-column sortable prop="CostMoney" label="成本" >
</el-table-column>
<el-table-column sortable prop="DueInMoney" label="待收">
<template slot-scope="scope">
<span :class="{'red':scope.row.DueInMoney>0}">{{scope.row.DueInMoney}}</span>
</template>
</el-table-column>
<el-table-column sortable prop="OrderProfit" label="预期利润" min-width="100">
<template slot-scope="scope">
<span :class="{'red':scope.row.OrderProfit>0}">{{scope.row.OrderProfit}}</span>
</template>
</el-table-column>
<el-table-column sortable prop="DiscountsMoney" label="优惠">
</el-table-column>
<el-table-column prop="StateName" label="状态" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{scope.row.StateName}}</span>
</template>
</el-table-column>
<!-- <el-table-column
label="操作"
show-overflow-tooltip>
<template slot-scope="scope">
<el-button size="mini" type="primary" @click="goDetails(scope.row)">查看</el-button>
</template>
</el-table-column> -->
</el-table>
</template>
<script>
export default {
props: ["OrderList", "pagesTitle"],
data() {
return {
S_CheckBranchOrder: false,
S_CheckAllOrder: false,
queryObj: null,
cdState: false,
copyId: 0,
loading0: false,
loading1: false,
loading2: false,
loading3: false,
BillMakingMsg: {
// PeroidsId: null,
// Type: null,
// EmpIds:'',
OtherType: 61,
ReFinanceId: "",
ReFinanceId2: ""
},
userInfo: {},
msg: {
OrderId: "",
LossMoney: 0,
State: '', //状态 1确认 2已邮寄 3设置自提 4收损
SelffetchAddress: ''
},
msgParameter: {
IsUpdateMailing: 1,
OrderId: 0,
Money: 0.0,
Remark: '',
MailingState: '1', //邮寄状态 1自取 2邮寄
MailingAddress: '', //MailingState =2 填写邮寄
UseDate: '', //门票日期
Name: '',
EName: '',
Sex: '1', //1男2女
Birthday: '',
Mobile: '',
CouponsId: '', //景点id
DetailList: [],
},
rules2: {
Name: [{
required: true,
message: '请输入中文名',
trigger: 'blur'
}],
EName: [{
required: true,
message: '请输入英文名',
trigger: 'blur'
}],
Mobile: [{
required: true,
message: "请输入联系电话",
trigger: "blur"
},
{
pattern: this.$commonUtils.Regex.el_ISphone,
message: "请输入正确的电话"
}
],
MailingAddress: [{
required: true,
message: '请输入邮寄地址',
trigger: 'blur'
}],
},
outerVisible: false,
rules: {
State: [{
required: true,
message: "请选择订单状态",
trigger: "change"
}],
SelffetchAddress: [{
required: true,
message: "请输入自提地址",
trigger: "blur"
}],
LossMoney: [{
required: true,
message: "请输入收损金额",
trigger: "blur"
}]
},
cancelOrderDialog: false,
cancelRemark: "",
cancelOrderId: 0,
uploadOrderId: 0,
loading: false,
fileList: [],
GuestFile: '',
ChangeOrderDialog: false,
OrderStatusType: [{
Name: this.$t('OrderList.orderStatus.apply'),
ID: '1'
},
{
Name: this.$t('OrderList.orderStatus.check'),
ID: '2'
},
{
Name: this.$t('OrderList.orderStatus.cancel'),
ID: '3'
},
{
Name: this.$t('OrderList.orderStatus.sun'),
ID: '4'
},
],
items: null,
typeState: '',
Title: ''
};
},
watch: {
pagesTitle(val, oldval) {
this.Title = val
},
OrderList: {
handler(val, oldVal) {
}
}
},
methods: {
goTuanDetails(row) {
let name = ''
if (row.IsOneDayOrder == 1) {
name = 'groupTourOrderByTuanOne'
} else {
name = 'groupTourOrderByTuan'
}
this.$router.push({
name: name,
query: {
id: row.TCID,
tcmun: row.TCNUM,
blank: "y",
}
});
},
goDetails(row) {
let data = [{
path: "",
OrderId: row.OrderId,
Type: ''
}]
let href
let url = this.domainManager().crmRoutingUrl;
if (row.OrderType == 1) {
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
data[0].path = 'myCustomerOrderAllType'
} else {
data[0].path = 'customerOrderAllType'
}
href = url + 'automaticLogin?token=' + this.getLocalStorage().token + '&data=' + JSON.stringify(data)
window.open(href);
} else {
let name = ''
if (row.OrderType == 6) {
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
name = 'VisaProductEditOrder'
} else {
name = 'VisaProductEditOrderOP'
}
this.$router.push({
name: name,
});
} else if (row.OrderType == 2) { //跟团 一日游
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
if (row.TravelType == 1) {
name = 'groupTourOrder'
} else {
name = 'groupTourOrderOne'
}
} else {
name = 'enrollTotal'
}
} else if (row.OrderType == 3) { //酒店
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
name = 'singleProductHotelOrder'
} else {
name = 'singleProductHotelOrderOP'
}
} else if (row.OrderType == 4) { //门票
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
name = 'SingleticketOrderList'
} else {
name = 'SingleticketOrderListOP'
}
} else if (row.OrderType == 5) { //包车
if(row.CarType==''||row.CarType==null){
this.GetAdminCarOrderPageList(row,url,href,data)
}else{
if(this.pagesTitle=='销售'){
name = 'CharterOrderList'
}else{
name = 'CharterOrderListOP'
}
data[0].Type = row.CarType==null||!row.CarType?4:row.CarType
}
} else if (row.OrderType == 7) { //jalan酒店
this.$message.info('jalan酒店暂不支持查看')
// if(this.pagesTitle=='销售'){
// name = 'CharterOrderList'
// }else{
// name = 'CharterOrderListOP'
// }
}
if (name) {
this.$router.push({
name: name,
query: {
OrderId: row.OrderId,
blank: "y",
}
});
}
}
},
GetAdminCarOrderPageList(row, url, href, data) {
let msg = {
pageIndex: 1,
pageSize: 5,
OrderType: '',
OrderId: row.OrderId,
OrderNo: '',
SurName: '',
Name: '',
OrderStatus: 0,
StartTime: '',
EndTime: '',
OrderSTime: '',
OrderETime: '',
ProductName: '',
Mobile: '', //电话
IsSelectSale: 1,
EnterID: 0, //业务员
}
let name
this.apipost('CarSingle_post_GetAdminCarOrderPageList', msg, res => {
if (res.data.resultCode == 1) {
let pageData = res.data.data.pageData
let OrderType
if (pageData && pageData.length > 0) {
OrderType = pageData[0].OrderType
}
if (this.pagesTitle == '销售' || (!this.S_CheckBranchOrder && !this.S_CheckAllOrder)) {
name = 'CharterOrderList'
} else {
name = 'CharterOrderListOP'
}
this.$router.push({
name: name,
query: {
OrderId: row.OrderId,
OrderType: OrderType ? OrderType : 4,
blank: "y",
}
});
}
})
},
},
mounted() {
let userInfo = this.getLocalStorage();
let ActionMenuCode = userInfo.ActionMenuCode;
this.userInfo = this.getLocalStorage();
// 判断是否销售
if (ActionMenuCode.indexOf('S_CheckBranchOrder') != -1) {
this.S_CheckBranchOrder = true
}
if (ActionMenuCode.indexOf('S_CheckAllOrder') != -1) {
this.S_CheckAllOrder = true
}
}
};
</script>
<style scoped>
.row {
display: flex;
}
.row-c {
display: flex;
align-items: center;
}
.column {
display: flex;
flex-direction: column;
}
.column-jac {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.column-ac {
display: flex;
flex-direction: column;
align-items: center;
}
.wrap {
flex-wrap: wrap;
}
.justify-sb {
justify-content: space-between;
}
.justify-c {
justify-content: center;
}
.justify-e {
justify-content: flex-end;
align-items: flex-end;
}
.flex-g {
flex-grow: 1;
}
.flex-s {
flex-shrink: 0;
}
.align-c {
align-items: center;
}
.cblack {
color: black;
}
.cf {
color: #ffffff;
}
.c9e {
color: #9e9e9e;
}
.c20C997 {
color: #20c997;
}
.c02C854 {
color: #02c854;
}
.cff9800 {
color: #ff9800;
}
.cF1416C {
color: #f1416c;
}
.cF57A98 {
color: #f57a98;
}
.c04C8C8 {
color: #04c8c8;
}
.c059FF6 {
color: #059ff6;
}
.c3FC4FF {
color: #3fc4ff;
}
.fz10 {
font-size: 10px;
}
.fz11 {
font-size: 11px;
}
.fz12 {
font-size: 12px;
}
.fz13 {
font-size: 13px;
}
.fz14 {
font-size: 14px;
}
.fz15 {
font-size: 15px;
}
.fz16 {
font-size: 16px;
}
.fz17 {
font-size: 17px;
}
.fz18 {
font-size: 18px;
}
.fbold {
font-weight: bold;
}
.ml {
margin-left: 10px;
}
.mr {
margin-right: 10px;
}
.mt {
margin-top: 10px;
}
.mt20 {
margin-top: 20px;
}
.mb {
margin-bottom: 10px;
}
.mb20 {
margin-bottom: 20px;
}
.mx {
margin-left: 10px;
margin-right: 10px;
}
.mx5 {
margin-left: 5px;
margin-right: 5px;
}
.mb5 {
margin-bottom: 5px;
}
.py {
padding: 15px 0;
}
.py5 {
padding: 5px 0;
}
.px5 {
padding: 0 5px;
}
.px15 {
padding: 0 15px;
}
.pa15 {
padding: 15px;
}
.py20 {
padding: 20px 0;
}
.pb5 {
padding: 0 0 5px 0;
}
.pa {
padding: 10px 20px;
}
.pa20 {
padding: 20px;
}
.pt20 {
padding: 20px 0;
}
.borderD {
border-bottom: 1px dashed #dddddd;
}
.bgf {
background: #ffffff;
}
.bgf5 {
background: #f5f5f5;
}
.bgE8F5E9 {
background: #e8f5e9;
}
.bgD9F3FF {
background: #d9f3ff;
}
.bgFAEAED {
background: #faeaed;
}
.bj {
background: #ffffff;
}
.bjFFF3E0 {
background: #FFF3E0;
}
.radius5 {
border-radius: 5px;
}
.cursor-pointer {
cursor: pointer;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.left0 {
left: 0;
}
.right0 {
right: 0;
}
.top0 {
top: 0;
}
.bottom0 {
bottom: 0;
}
.left20 {
left: 020px;
}
.right20 {
right: 20px;
}
.top20 {
top: 20px;
}
.bottom20 {
bottom: 20px;
}
.text-center {
text-align: center;
}
</style>
<style scoped>
.groupTourOrder_count_item > p > span {
margin: 0;
}
.color_red_order {
color: red;
}
.HT_total {
display: flex;
flex-direction: column;
margin: 5px 0;
}
.HT_total p {
width: 100%;
display: block;
}
.HT_total p > span {
float: left;
display: inline-block;
width: 25%;
}
.TC_leftSearch > div {
padding: 5px 0;
}
.groupTourOrderByTuan_ico {
margin-left: 5px;
}
.groupTourOrderByTuan_ico > i {
display: inline-block;
margin: 0 5px 0 0;
width: 8px;
height: 8px;
border-radius: 2px;
vertical-align: middle;
}
.HotelWorkList .has-gutter tr th,
.el-table th.is-leaf {
background-color: #eaeaea !important;
}
.HotelWorkList .HW_hotelDialog {
width: 900px;
}
.HotelWorkList .Hw_tableOne {
width: 100%;
height: 40px;
background-color: #eaeaea;
}
.HotelWorkList .Hw_tableOne th {
text-align: center;
}
.HotelWorkList .HotelWorkInput .el-input {
width: 223px;
}
.HotelWorkList .HworkInput .el-input {
width: 210px;
}
/deep/.query-box li span > em {
min-width: 60px;
}
</style>
<template>
<div class="HotelWorkList">
<div class="query-box HotelWorkInput" style="border-bottom: none">
<ul>
<li>
<span>
<em>公司</em>
<el-select filterable v-model="msg.EnterId" class="w200" clearable>
<el-option :value="0" label="不限"></el-option>
<el-option
v-for="item in EmployeeList"
:label="item.EmName"
:value="item.EmployeeId"
:key="item.EmployeeId"
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>部门</em>
<el-select filterable v-model="msg.EnterId" class="w200" clearable>
<el-option :value="0" label="不限"></el-option>
<el-option
v-for="item in EmployeeList"
:label="item.EmName"
:value="item.EmployeeId"
:key="item.EmployeeId"
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>人员</em>
<el-select filterable v-model="msg.EnterId" class="w200" clearable>
<el-option :value="0" label="不限"></el-option>
<el-option
v-for="item in EmployeeList"
:label="item.EmName"
:value="item.EmployeeId"
:key="item.EmployeeId"
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>出团日期</em>
<el-date-picker
style="height: 34px"
value-format="yyyy-MM-dd"
v-model="DatelistBM"
type="daterange"
:range-separator="$t('OrderList.zhi')"
:start-placeholder="$t('OrderList.star')"
:end-placeholder="$t('OrderList.end')"
@change="getDatesBM"
>
</el-date-picker>
</span>
</li>
<li>
<span>
<em>报名日期</em>
<el-date-picker
style="height: 34px"
value-format="yyyy-MM-dd"
v-model="DatelistBM"
type="daterange"
:range-separator="$t('OrderList.zhi')"
:start-placeholder="$t('OrderList.star')"
:end-placeholder="$t('OrderList.end')"
@change="getDatesBM"
>
</el-date-picker>
</span>
</li>
<li>
<input
type="button"
class="normalBtn"
:value="$t('pub.searchBtn')"
@click.stop="(msg.pageIndex = 1), (currentPage = 1), GetList()"
/>
</li>
</ul>
</div>
<!-- 统计版块 -->
<div class="groupTourOrder_count">
<el-row :gutter="20">
<template v-for="(item, index) in SummaryList">
<el-col :xs="8" :sm="8" :md="8" :lg="8" :xl="8">
<div class="groupTourOrder_count_item HT_total">
<div>
<span>{{ item.CurrencyName }}</span>
</div>
<p>
<!-- groupTourOrder_count_green -->
<span
>应收:
{{ item.Money.toFixed(2) }}
</span>
<span
>实收:
{{ item.Income.toFixed(2) }}
</span>
<span
>退款:
{{ item.Refund.toFixed(2) }}
</span>
<span
>手续费:
{{ item.PlatformTax.toFixed(2) }}
</span>
<span
>应收小费:
{{ item.PreferTipAmount.toFixed(2) }}
</span>
<span
>实收小费:
{{ item.IncomeTipAmount.toFixed(2) }}
</span>
<span
>成本:
{{ item.CostMoney.toFixed(2) }}
</span>
<span
>待收:
<span :style="{ color: item.DueInMoney > 0 ? 'red' : '' }">{{
item.DueInMoney.toFixed(2)
}}</span>
</span>
<span
>预期利润:
<span :style="{ color: item.OrderProfit > 0 ? 'red' : '' }">{{
item.OrderProfit.toFixed(2)
}}</span>
</span>
<span
>预期销售额:
{{ item.OrderSalesMoney.toFixed(2) }}
</span>
<span
>报名数:
<span style="color: #3a7cf7">{{ item.GuestNum }}</span>
</span>
</p>
</div>
</el-col>
</template>
</el-row>
</div>
<OrderList
:pagesTitle="Title"
:OrderList="OrderList"
v-loading="loading"
@success="(msg.pageIndex = 1), GetList()"
>
</OrderList>
<div
v-if="OrderList && OrderList.length == 0"
style="text-align: center; padding: 100px"
>
暂无数据
</div>
<el-pagination
v-if="OrderList && OrderList.length > 0"
background
@current-change="handleCurrentChange"
:current-page.sync="currentPage"
layout="total,prev, pager, next, jumper"
:page-size="msg.pageSize"
:total="total"
>
</el-pagination>
</div>
</template>
<script>
import OrderList from "./OrderList.vue";
export default {
props: ["pagesTitle", "dataObj"],
components: { OrderList },
data() {
return {
showWarningSearch: false,
TotalMsg: null,
MultipleChoiceList: [
//多选项目
{
Name: "机票",
Id: "1",
},
{
Name: "签证",
Id: "2",
},
{
Name: "地接",
Id: "3",
},
{
Name: "套餐",
Id: "4",
},
{
Name: "其他",
Id: "5",
},
],
userInfo: {},
HotelList: [],
loading: false,
isShow: false,
outerVisible: false,
//订单列表
OrderList: [],
//默认高度
tableHeight: 0,
msg: {
pageIndex: 1,
pageSize: 15,
OrderId: "", //订单id
GuestId: 0, //客人id
EnterId: 0, //业务员id
OrderState: "1", //订单状态
Q_IsCollect: "0", //收款状态
StartTime: "", //报名开始日期
EndTime: "", //报名结束日期
FinishSTime: "", //完结开始时间
FinishETime: "", //完结结束时间
DepartSTime: "", //出发开始
DepartETime: "", //出发结束
TCNUM: "", //团号
ProductName: "", //商品名称
CustomerName: "", //客户名称
LureEmpId: 0, //引流人员
LineId: 0, //线路
TravelType: 0, //跟团类型 1跟团 2当地游
OrderType: "0", //订单类型
IsSelectCRM: 0, //1来源crm
IsMyOrder: 1, //1我的订单
},
total: 0,
currentPage: 1,
OrderTypeList: [],
OrderStateType: [
{ Name: "接机", ID: "1" },
{ Name: "送机", ID: "2" },
{ Name: "包车", ID: "3" },
],
orderType: [
{ Name: this.$t("OrderList.orderType.tour"), ID: "1" },
{ Name: this.$t("OrderList.orderType.guest"), ID: "2" },
],
Datelist: "",
DatelistUse: "",
DatelistBM: [],
Title: "",
EmployeeList: [],
employeeMsg: {
// 员工
GroupId: "",
BranchId: -1,
DepartmentId: 0,
PostId: 0,
IsLeave: 0,
},
OrderStatusList: [
{ Name: "不限", Id: "0" },
{ Name: "正常", Id: "1" },
{ Name: "取消", Id: "2" },
],
QIsCollectList: [
{ Name: "不限", Id: "0" },
{ Name: "已收齐", Id: "1" },
{ Name: "未收齐", Id: "2" },
],
ticketingStatusList: [],
VisaList: [
{ Name: "不限", Id: "0" },
{ Name: "未出签", Id: "1" },
{ Name: "已出签", Id: "2" },
],
LineList: [],
SummaryList: [],
};
},
watch: {
pagesTitle(val, oldval) {
this.Title = val;
},
dataObj: {
handler(val, oldVal) {
this.msg.OrderType = val.tab;
this.msg.OrderId = val.OrderId;
this.GetList();
},
deep: true,
},
},
methods: {
GetOrderTypeEnumList() {
this.apipost("CarSingle_post_GetOrderTypeEnumList", {}, (res) => {
if (res.data.resultCode == 1) {
this.OrderTypeList = res.data.data;
let data = {
Name: "不限",
Id: "0",
};
this.OrderTypeList.unshift(data);
} else {
this.$message.error(res.data.message);
}
});
},
getLineList() {
this.apipost(
"line_post_GetAllList",
{
LineDirection: 0,
},
(res) => {
if (res.data.resultCode == 1) {
this.LineList = res.data.data;
} else {
this.$message.error(res.data.message);
}
}
);
},
// 获取出票状态枚举
GetTicketStatusEnumList() {
this.crmapipost("/api/Order/GetTicketStatusEnumList", {}, (res) => {
if (res.data.resultCode == 1) {
this.ticketingStatusList = res.data.data;
} else {
this.$message.error(res.data.message);
}
});
},
// 获取订单状态枚举
GetOrderStatusEnumList() {
this.crmapipost("/api/Order/GetOrderStatusEnumList", {}, (res) => {
if (res.data.resultCode == 1) {
this.OrderStatusList = res.data.data;
} else {
this.$message.error(res.data.message);
}
});
},
getEmployee() {
//员工
this.apipost(
"admin_get_EmployeeGetList",
this.employeeMsg,
(res) => {
if (res.data.resultCode == 1) {
this.EmployeeList = res.data.data;
}
},
(err) => {}
);
},
getDatesBM() {
if (this.DatelistBM) {
this.msg.StartTime = this.DatelistBM[0];
this.msg.EndTime = this.DatelistBM[1];
}
if (!this.DatelistBM) {
this.msg.StartTime = "";
this.msg.EndTime = "";
}
},
getDatesUse() {
if (this.DatelistUse) {
this.msg.DepartSTime = this.DatelistUse[0];
this.msg.DepartETime = this.DatelistUse[1];
}
if (!this.DatelistUse) {
this.msg.DepartSTime = "";
this.msg.DepartETime = "";
}
},
getDates() {
if (this.Datelist) {
this.msg.FinishSTime = this.Datelist[0];
this.msg.FinishETime = this.Datelist[1];
}
if (!this.Datelist) {
this.msg.FinishSTime = "";
this.msg.FinishETime = "";
}
},
setEdate() {
return this.addMoth(new Date().Format("yyyy-MM-dd"), 1);
},
addMoth(d, m) {
let ds = d.split("-"),
_d = ds[2] - 0;
let nextM = new Date(ds[0], ds[1] - 1 + m + 1, 0);
let max = nextM.getDate();
d = new Date(ds[0], ds[1] - 1 + m, _d > max ? max : _d);
return d.toLocaleDateString().match(/\d+/g).join("-");
},
getyMDOne() {
let myDate = new Date();
let myYear = myDate.getFullYear(); //获取完整的年份(4位,1970-????)
let myMonth = myDate.getMonth() + 1; //获取当前月份(0-11,8代表1月)
let myToday = myDate.getDate(); //获取当前日(1-31)
myMonth = myMonth > 9 ? myMonth : "0" + myMonth;
myToday = myToday > 9 ? myToday : "0" + myToday;
let nowDate = myYear + "-" + myMonth + "-01";
return nowDate;
},
getyMDTwo() {
let myDate = new Date();
let myYear = myDate.getFullYear(); //获取完整的年份(4位,1970-????)
let myMonth = myDate.getMonth() + 1; //获取当前月份(0-11,8代表1月)
let myToday = myDate.getDate(); //获取当前日(1-31)
myMonth = myMonth > 9 ? myMonth : "0" + myMonth;
myToday = myToday > 9 ? myToday : "0" + myToday;
let nowDate = myYear + "-" + myMonth + "-" + myToday;
return nowDate;
},
//获取酒店订单列表
GetList() {
this.loading = true;
let url = "CarSingle_post_GetGuestOrderStatisticsPageList";
// 销售 OP
if (this.pagesTitle == "销售") {
this.msg.IsMyOrder = "1";
} else {
this.msg.IsMyOrder = "0";
}
this.apipost(
url,
this.msg,
(res) => {
if (res.data.resultCode == 1) {
this.getSummaryData();
let data = res.data.data.pageData;
this.OrderList = data;
this.total = res.data.data.count;
// this.TotalMsg = res.data.data.StatModel
} else {
this.Error(res.data.message);
}
this.loading = false;
},
(err) => {
this.loading = false;
}
);
},
getSummaryData() {
this.apipost(
"CarSingle_post_GetGuestOrderStatistics",
this.msg,
(res) => {
if (res.data.resultCode == 1) {
let data = res.data.data;
this.SummaryList = data;
} else {
this.$message.error(res.data.message);
}
}
);
},
handleCurrentChange(val) {
this.msg.pageIndex = val;
this.GetList();
},
com_onresize() {
//clientHeight的值由DIV内容的实际高度和CSS中的padding值决定,
var contentsHeight = document.body.clientHeight;
var h = contentsHeight - 50 - 180 - 40;
if (h < 110) {
return;
}
//设置table的行高
this.tableHeight = h;
},
},
created() {
if (this.$route.query.OrderId) {
this.msg.OrderId = this.$route.query.OrderId;
}
let userInfo = this.getLocalStorage();
this.employeeMsg.GroupId = userInfo.RB_Group_id; //集团ID
// this.msg.EnterID = userInfo.EmployeeId;
},
mounted() {
this.Title = this.pagesTitle;
if (this.Title != "销售") {
this.getEmployee();
}
this.msg.StartTime = this.getBeforeDate(0, new Date());
this.msg.EndTime = this.getBeforeDate(0, new Date());
this.DatelistBM = [new Date(this.msg.StartTime), new Date()];
// this.GetOrderStatusEnumList()//订单状态
// this.GetTicketStatusEnumList()//出票状态
this.GetOrderTypeEnumList();
this.getLineList();
this.Datelist = this.getyMDOne();
this.userInfo = this.getLocalStorage();
this.GetList();
//自适应高度调节
this.com_onresize();
window.onresize = () => {
this.com_onresize();
};
},
};
</script>
\ No newline at end of file
......@@ -107,7 +107,7 @@ import Vue from 'vue'
template:`<span>
<a href="" @click.stop.prevent="update(rowData,index)">编辑</a>&nbsp;
<a href="" @click.stop.prevent="deleteRow(rowData,index)">删除</a>
<span>${content}</span>
<span>{{content}}</span>
`,
props:{
rowData:{
......@@ -127,7 +127,7 @@ import Vue from 'vue'
},
mounted() {
console.log('field', this.field)
this.content = rowData["SumPreferPrice"].toFixed(2)
this.content = this.rowData["SumPreferPrice"].toFixed(2)
if(this.field === 'income') {
this.content = this.rowData["SumPreferPrice"]
} else if(this.field === 'income') {
......@@ -421,23 +421,14 @@ export default {
if (!param.QStartDate) {
param.QStartDate = "2019-01-01";
}
let r = {"resultCode":1,"message":"","data":[{"income":"12659203.36","notInCome":36950.00,"peopleCount":1762,"avgPrice":"7204.49","zanBi":"27.77%","name":"肖自立(武汉)","PreferPrice":12694303.36,"SumPreferPrice":12696153.36,"totalGuestNum":"2.0","CalcheCount":3707},{"income":"8390890.40","notInCome":0.00,"peopleCount":1198,"avgPrice":"7004.08","zanBi":"18.35%","name":"陈佳(武汉)","PreferPrice":8390890.40,"SumPreferPrice":8390890.40,"totalGuestNum":"0.5","CalcheCount":1656},{"income":"8151920.00","notInCome":0.00,"peopleCount":1131,"avgPrice":"7202.63","zanBi":"7.27%","name":"徐树学","PreferPrice":8146180.00,"SumPreferPrice":8151920.00,"totalGuestNum":"7.0","CalcheCount":1089},{"income":"8033529.10","notInCome":0.00,"peopleCount":1175,"avgPrice":"6799.77","zanBi":"7.13%","name":"唐萍","PreferPrice":7989729.10,"SumPreferPrice":8033529.10,"totalGuestNum":"71.5","CalcheCount":616},{"income":"7911372.80","notInCome":0.00,"peopleCount":961,"avgPrice":"8232.44","zanBi":"14.49%","name":"张婷(西安)","PreferPrice":7911372.80,"SumPreferPrice":7911372.80,"totalGuestNum":"0.0","CalcheCount":1058},{"income":"7418939.06","notInCome":-20913.10,"peopleCount":1259,"avgPrice":"5874.44","zanBi":"27.04%","name":"慕大强(昆明)","PreferPrice":7395925.96,"SumPreferPrice":7398025.96,"totalGuestNum":"3.5","CalcheCount":859},{"income":"7251189.45","notInCome":0.00,"peopleCount":984,"avgPrice":"7362.69","zanBi":"6.46%","name":"魏俊","PreferPrice":7244889.45,"SumPreferPrice":7251189.45,"totalGuestNum":"8.5","CalcheCount":1218},{"income":"6821702.40","notInCome":16080.00,"peopleCount":889,"avgPrice":"7691.54","zanBi":"12.53%","name":"王亚荣(西安)","PreferPrice":6837782.40,"SumPreferPrice":6837782.40,"totalGuestNum":"0.0","CalcheCount":872},{"income":"6099139.50","notInCome":0.00,"peopleCount":820,"avgPrice":"7430.29","zanBi":"5.44%","name":"李景晨","PreferPrice":6092839.50,"SumPreferPrice":6099139.50,"totalGuestNum":"6.5","CalcheCount":793},{"income":"5922544.35","notInCome":894.60,"peopleCount":751,"avgPrice":"7869.59","zanBi":"5.27%","name":"魏俞婷","PreferPrice":5910058.95,"SumPreferPrice":5923438.95,"totalGuestNum":"18.5","CalcheCount":594},{"income":"5902338.58","notInCome":0.00,"peopleCount":796,"avgPrice":"7412.36","zanBi":"5.26%","name":"钟伟","PreferPrice":5900238.58,"SumPreferPrice":5902338.58,"totalGuestNum":"3.5","CalcheCount":987},{"income":"5672377.96","notInCome":76619.00,"peopleCount":808,"avgPrice":"7106.56","zanBi":"5.12%","name":"谢燕","PreferPrice":5742096.96,"SumPreferPrice":5748996.96,"totalGuestNum":"6.5","CalcheCount":430},{"income":"5543054.00","notInCome":18000.00,"peopleCount":763,"avgPrice":"7274.45","zanBi":"4.95%","name":"邱磊","PreferPrice":5550404.00,"SumPreferPrice":5561054.00,"totalGuestNum":"17.0","CalcheCount":771},{"income":"5373024.30","notInCome":0.00,"peopleCount":782,"avgPrice":"6868.30","zanBi":"4.79%","name":"吴攀(南宁)","PreferPrice":5371014.30,"SumPreferPrice":5373024.30,"totalGuestNum":"3.0","CalcheCount":387},{"income":"5156655.60","notInCome":0.00,"peopleCount":618,"avgPrice":"8340.70","zanBi":"9.44%","name":"刘依桐(西安)","PreferPrice":5154555.60,"SumPreferPrice":5156655.60,"totalGuestNum":"1.5","CalcheCount":647},{"income":"5131809.14","notInCome":8240.00,"peopleCount":687,"avgPrice":"7479.26","zanBi":"11.24%","name":"周岚(武汉)","PreferPrice":5138249.14,"SumPreferPrice":5140049.14,"totalGuestNum":"1.5","CalcheCount":916},{"income":"5129457.80","notInCome":0.00,"peopleCount":679,"avgPrice":"7554.43","zanBi":"9.40%","name":"刘远(西安)","PreferPrice":5129457.80,"SumPreferPrice":5129457.80,"totalGuestNum":"0.0","CalcheCount":400},{"income":"5125145.40","notInCome":0.00,"peopleCount":683,"avgPrice":"7483.32","zanBi":"18.68%","name":"张马倩(昆明)","PreferPrice":5111105.40,"SumPreferPrice":5125145.40,"totalGuestNum":"19.5","CalcheCount":677},{"income":"4985188.64","notInCome":0.00,"peopleCount":678,"avgPrice":"7352.79","zanBi":"9.13%","name":"蒋玉芳(西安)","PreferPrice":4985188.64,"SumPreferPrice":4985188.64,"totalGuestNum":"0.0","CalcheCount":913},{"income":"4690430.00","notInCome":0.00,"peopleCount":565,"avgPrice":"8296.87","zanBi":"4.18%","name":"童小琴","PreferPrice":4687730.00,"SumPreferPrice":4690430.00,"totalGuestNum":"3.0","CalcheCount":866},{"income":"4591173.84","notInCome":0.00,"peopleCount":588,"avgPrice":"7798.42","zanBi":"4.09%","name":"赵颖","PreferPrice":4585473.84,"SumPreferPrice":4591173.84,"totalGuestNum":"8.5","CalcheCount":559},{"income":"4363928.00","notInCome":6860.00,"peopleCount":587,"avgPrice":"7445.98","zanBi":"8.01%","name":"刘婷(西安)","PreferPrice":4370788.00,"SumPreferPrice":4370788.00,"totalGuestNum":"0.0","CalcheCount":730},{"income":"4284338.29","notInCome":0.00,"peopleCount":659,"avgPrice":"6499.45","zanBi":"3.82%","name":"王凯利","PreferPrice":4283138.29,"SumPreferPrice":4284338.29,"totalGuestNum":"2.5","CalcheCount":309},{"income":"4062748.70","notInCome":0.00,"peopleCount":584,"avgPrice":"6955.73","zanBi":"35.26%","name":"石明恬(南京)","PreferPrice":4062148.70,"SumPreferPrice":4062748.70,"totalGuestNum":"1.0","CalcheCount":1370},{"income":"3957378.00","notInCome":0.00,"peopleCount":512,"avgPrice":"7723.59","zanBi":"8.65%","name":"熊思奥(武汉)","PreferPrice":3954478.00,"SumPreferPrice":3957378.00,"totalGuestNum":"3.5","CalcheCount":691},{"income":"3753867.24","notInCome":0.00,"peopleCount":486,"avgPrice":"7718.45","zanBi":"3.35%","name":"欧文秀","PreferPrice":3751167.24,"SumPreferPrice":3753867.24,"totalGuestNum":"3.5","CalcheCount":646},{"income":"3409472.00","notInCome":0.00,"peopleCount":529,"avgPrice":"6445.13","zanBi":"37.99%","name":"李振业(合肥)","PreferPrice":3409472.00,"SumPreferPrice":3409472.00,"totalGuestNum":"0.0","CalcheCount":552},{"income":"3335723.40","notInCome":0.00,"peopleCount":427,"avgPrice":"7809.89","zanBi":"2.98%","name":"刘小东","PreferPrice":3334823.40,"SumPreferPrice":3335723.40,"totalGuestNum":"1.5","CalcheCount":519},{"income":"3313453.00","notInCome":260.00,"peopleCount":461,"avgPrice":"7187.34","zanBi":"24.31%","name":"陈鹏(长沙)","PreferPrice":3313363.00,"SumPreferPrice":3313713.00,"totalGuestNum":"0.5","CalcheCount":250},{"income":"3268258.00","notInCome":2400.00,"peopleCount":485,"avgPrice":"6737.95","zanBi":"23.97%","name":"赵东亮(长沙)","PreferPrice":3267908.00,"SumPreferPrice":3270658.00,"totalGuestNum":"2.0","CalcheCount":205},{"income":"3254745.00","notInCome":0.00,"peopleCount":406,"avgPrice":"8016.61","zanBi":"7.12%","name":"金冰心(武汉)","PreferPrice":3254745.00,"SumPreferPrice":3254745.00,"totalGuestNum":"0.0","CalcheCount":466},{"income":"3234150.00","notInCome":0.00,"peopleCount":421,"avgPrice":"7668.03","zanBi":"59.43%","name":"李军(贵阳)","PreferPrice":3228241.00,"SumPreferPrice":3234150.00,"totalGuestNum":"7.5","CalcheCount":272},{"income":"3125495.46","notInCome":0.00,"peopleCount":494,"avgPrice":"6327.93","zanBi":"34.44%","name":"程磊(重庆)","PreferPrice":3125995.46,"SumPreferPrice":3125495.46,"totalGuestNum":"0.5","CalcheCount":196},{"income":"3094635.20","notInCome":0.00,"peopleCount":425,"avgPrice":"7278.67","zanBi":"2.76%","name":"李义婷","PreferPrice":3093435.20,"SumPreferPrice":3094635.20,"totalGuestNum":"1.5","CalcheCount":1068},{"income":"3089650.00","notInCome":0.00,"peopleCount":437,"avgPrice":"7067.35","zanBi":"11.29%","name":"陈攀(昆明)","PreferPrice":3088430.00,"SumPreferPrice":3089650.00,"totalGuestNum":"2.0","CalcheCount":701},{"income":"2873462.90","notInCome":9127.50,"peopleCount":444,"avgPrice":"6492.32","zanBi":"5.28%","name":"郭倩(西安)","PreferPrice":2882590.40,"SumPreferPrice":2882590.40,"totalGuestNum":"0.0","CalcheCount":527},{"income":"2807230.84","notInCome":0.00,"peopleCount":391,"avgPrice":"7177.47","zanBi":"2.50%","name":"赵江林","PreferPrice":2806390.84,"SumPreferPrice":2807230.84,"totalGuestNum":"1.5","CalcheCount":685},{"income":"2713840.20","notInCome":0.00,"peopleCount":473,"avgPrice":"5725.45","zanBi":"9.90%","name":"何彬(昆明)","PreferPrice":2708140.20,"SumPreferPrice":2713840.20,"totalGuestNum":"9.5","CalcheCount":723},{"income":"2708798.00","notInCome":0.00,"peopleCount":408,"avgPrice":"6637.00","zanBi":"23.50%","name":"朱梓妤(南京)","PreferPrice":2707898.00,"SumPreferPrice":2708798.00,"totalGuestNum":"1.5","CalcheCount":402},{"income":"2658797.29","notInCome":8833.16,"peopleCount":560,"avgPrice":"4754.52","zanBi":"9.73%","name":"赵致锟(昆明)","PreferPrice":2662530.45,"SumPreferPrice":2667630.45,"totalGuestNum":"8.5","CalcheCount":293},{"income":"2661639.00","notInCome":0.00,"peopleCount":308,"avgPrice":"8641.69","zanBi":"5.82%","name":"杨文彪(武汉)","PreferPrice":2661639.00,"SumPreferPrice":2661639.00,"totalGuestNum":"0.0","CalcheCount":545},{"income":"2560926.80","notInCome":0.00,"peopleCount":277,"avgPrice":"9215.26","zanBi":"2.28%","name":"张一夫","PreferPrice":2552626.80,"SumPreferPrice":2560926.80,"totalGuestNum":"6.0","CalcheCount":181},{"income":"2497252.20","notInCome":0.00,"peopleCount":385,"avgPrice":"6486.37","zanBi":"2.23%","name":"冯旭阳","PreferPrice":2497252.20,"SumPreferPrice":2497252.20,"totalGuestNum":"0.0","CalcheCount":323},{"income":"2484266.24","notInCome":0.00,"peopleCount":372,"avgPrice":"6678.14","zanBi":"33.49%","name":"黄菲虹(厦门)","PreferPrice":2484266.24,"SumPreferPrice":2484266.24,"totalGuestNum":"0.0","CalcheCount":157},{"income":"2469763.00","notInCome":0.00,"peopleCount":410,"avgPrice":"6021.62","zanBi":"21.43%","name":"周杨(南京)","PreferPrice":2468863.00,"SumPreferPrice":2469763.00,"totalGuestNum":"1.5","CalcheCount":363},{"income":"2466961.64","notInCome":1741.58,"peopleCount":48,"avgPrice":"4783.71","zanBi":"0.20%","name":"赵文豪","PreferPrice":229618.22,"SumPreferPrice":2468703.22,"totalGuestNum":"74.0","CalcheCount":4},{"income":"2324913.20","notInCome":0.00,"peopleCount":323,"avgPrice":"7197.87","zanBi":"4.26%","name":"卢佳雨(西安)","PreferPrice":2324913.20,"SumPreferPrice":2324913.20,"totalGuestNum":"0.0","CalcheCount":718},{"income":"2309022.40","notInCome":0.00,"peopleCount":294,"avgPrice":"7853.82","zanBi":"4.23%","name":"矫美(西安)","PreferPrice":2309022.40,"SumPreferPrice":2309022.40,"totalGuestNum":"0.0","CalcheCount":233},{"income":"2260735.80","notInCome":0.00,"peopleCount":305,"avgPrice":"7412.25","zanBi":"16.58%","name":"王敏(长沙)","PreferPrice":2260735.80,"SumPreferPrice":2260735.80,"totalGuestNum":"0.0","CalcheCount":172},{"income":"2261488.97","notInCome":-7795.85,"peopleCount":555,"avgPrice":"4055.84","zanBi":"8.23%","name":"刘安娟(昆明)","PreferPrice":2250993.12,"SumPreferPrice":2253693.12,"totalGuestNum":"4.5","CalcheCount":576},{"income":"2138105.00","notInCome":0.00,"peopleCount":310,"avgPrice":"6897.11","zanBi":"32.21%","name":"陆俏燕(南宁)","PreferPrice":2138105.00,"SumPreferPrice":2138105.00,"totalGuestNum":"0.0","CalcheCount":255},{"income":"2078641.83","notInCome":0.00,"peopleCount":287,"avgPrice":"7240.91","zanBi":"22.89%","name":"瞿玉琳(重庆)","PreferPrice":2078141.83,"SumPreferPrice":2078641.83,"totalGuestNum":"0.5","CalcheCount":213},{"income":"1967146.00","notInCome":0.00,"peopleCount":293,"avgPrice":"6713.81","zanBi":"29.63%","name":"张海燕(南宁)","PreferPrice":1967146.00,"SumPreferPrice":1967146.00,"totalGuestNum":"0.0","CalcheCount":293},{"income":"1931362.00","notInCome":0.00,"peopleCount":250,"avgPrice":"7725.45","zanBi":"3.54%","name":"谢富强(西安)","PreferPrice":1931362.00,"SumPreferPrice":1931362.00,"totalGuestNum":"0.0","CalcheCount":208},{"income":"1855794.80","notInCome":0.00,"peopleCount":284,"avgPrice":"6527.09","zanBi":"1.65%","name":"罗玉玲","PreferPrice":1853694.80,"SumPreferPrice":1855794.80,"totalGuestNum":"3.5","CalcheCount":569},{"income":"1836200.00","notInCome":0.00,"peopleCount":268,"avgPrice":"6851.49","zanBi":"20.46%","name":"李燕燕(合肥)","PreferPrice":1836200.00,"SumPreferPrice":1836200.00,"totalGuestNum":"0.0","CalcheCount":251},{"income":"1761768.99","notInCome":58507.01,"peopleCount":3,"avgPrice":"2866.67","zanBi":"2.29%","name":"周月","PreferPrice":8600.00,"SumPreferPrice":1820276.00,"totalGuestNum":"73.5","CalcheCount":0},{"income":"1749176.00","notInCome":0.00,"peopleCount":195,"avgPrice":"8852.90","zanBi":"1.54%","name":"余莲(网络)","PreferPrice":1726316.00,"SumPreferPrice":1749176.00,"totalGuestNum":"40.5","CalcheCount":154},{"income":"1725270.32","notInCome":2000.00,"peopleCount":240,"avgPrice":"7196.96","zanBi":"3.16%","name":" 杨博(西安)","PreferPrice":1727270.32,"SumPreferPrice":1727270.32,"totalGuestNum":"0.0","CalcheCount":216},{"income":"1204196.37","notInCome":495128.50,"peopleCount":445,"avgPrice":"3817.36","zanBi":"1.52%","name":"周雪梅","PreferPrice":1698724.87,"SumPreferPrice":1699324.87,"totalGuestNum":"0.5","CalcheCount":652},{"income":"1639310.00","notInCome":55500.00,"peopleCount":233,"avgPrice":"7273.86","zanBi":"22.85%","name":"谢骁亿(厦门)","PreferPrice":1694810.00,"SumPreferPrice":1694810.00,"totalGuestNum":"0.0","CalcheCount":267},{"income":"1684680.00","notInCome":0.00,"peopleCount":238,"avgPrice":"7078.49","zanBi":"3.09%","name":"闫飞龙(西安)","PreferPrice":1684680.00,"SumPreferPrice":1684680.00,"totalGuestNum":"0.5","CalcheCount":292},{"income":"1662120.00","notInCome":0.00,"peopleCount":209,"avgPrice":"7952.73","zanBi":"3.64%","name":"周伟(武汉)","PreferPrice":1662120.00,"SumPreferPrice":1662120.00,"totalGuestNum":"0.0","CalcheCount":528},{"income":"1572723.00","notInCome":0.00,"peopleCount":293,"avgPrice":"5360.35","zanBi":"5.74%","name":"彭科(昆明)","PreferPrice":1570583.00,"SumPreferPrice":1572723.00,"totalGuestNum":"3.0","CalcheCount":319},{"income":"1549006.00","notInCome":0.00,"peopleCount":241,"avgPrice":"6427.41","zanBi":"13.44%","name":"石明龙(南京)","PreferPrice":1549006.00,"SumPreferPrice":1549006.00,"totalGuestNum":"0.0","CalcheCount":368},{"income":"1507008.16","notInCome":23821.64,"peopleCount":337,"avgPrice":"4542.52","zanBi":"2.80%","name":"何江波(西安)","PreferPrice":1530829.80,"SumPreferPrice":1530829.80,"totalGuestNum":"1.0","CalcheCount":411},{"income":"1503614.56","notInCome":0.00,"peopleCount":203,"avgPrice":"7404.01","zanBi":"1.34%","name":"周玲","PreferPrice":1503014.56,"SumPreferPrice":1503614.56,"totalGuestNum":"0.5","CalcheCount":6576},{"income":"1503402.00","notInCome":0.00,"peopleCount":191,"avgPrice":"7871.21","zanBi":"3.29%","name":"韩静(武汉)","PreferPrice":1503402.00,"SumPreferPrice":1503402.00,"totalGuestNum":"0.0","CalcheCount":308},{"income":"1456394.88","notInCome":0.00,"peopleCount":237,"avgPrice":"6141.75","zanBi":"3.18%","name":"苏伟(武汉)","PreferPrice":1455594.88,"SumPreferPrice":1456394.88,"totalGuestNum":"0.5","CalcheCount":652},{"income":"1425617.83","notInCome":15000.00,"peopleCount":319,"avgPrice":"4510.40","zanBi":"1.28%","name":"唐雪梅","PreferPrice":1438817.83,"SumPreferPrice":1440617.83,"totalGuestNum":"4.0","CalcheCount":145},{"income":"1407470.20","notInCome":0.00,"peopleCount":183,"avgPrice":"7687.82","zanBi":"18.97%","name":"叶智仁(厦门)","PreferPrice":1406870.20,"SumPreferPrice":1407470.20,"totalGuestNum":"1.0","CalcheCount":175},{"income":"1387612.06","notInCome":0.00,"peopleCount":259,"avgPrice":"5357.58","zanBi":"28.86%","name":"罗娟(南昌)","PreferPrice":1387612.06,"SumPreferPrice":1387612.06,"totalGuestNum":"0.0","CalcheCount":282},{"income":"1353086.00","notInCome":8285.00,"peopleCount":665,"avgPrice":"2047.17","zanBi":"100.00%","name":"王涛","PreferPrice":1361371.00,"SumPreferPrice":1361371.00,"totalGuestNum":"0.0","CalcheCount":204},{"income":"1336957.40","notInCome":0.00,"peopleCount":186,"avgPrice":"7187.94","zanBi":"2.45%","name":"赵世豪(西安)","PreferPrice":1336957.40,"SumPreferPrice":1336957.40,"totalGuestNum":"0.0","CalcheCount":270},{"income":"1292790.00","notInCome":0.00,"peopleCount":147,"avgPrice":"8794.49","zanBi":"1.15%","name":"王云桃","PreferPrice":1292790.00,"SumPreferPrice":1292790.00,"totalGuestNum":"0.0","CalcheCount":203},{"income":"1273058.00","notInCome":0.00,"peopleCount":216,"avgPrice":"5892.31","zanBi":"14.18%","name":"陈钰(合肥)","PreferPrice":1272738.00,"SumPreferPrice":1273058.00,"totalGuestNum":"0.5","CalcheCount":221},{"income":"1159906.00","notInCome":0.00,"peopleCount":164,"avgPrice":"7072.60","zanBi":"2.12%","name":"孙亚男(西安)","PreferPrice":1159906.00,"SumPreferPrice":1159906.00,"totalGuestNum":"0.0","CalcheCount":171},{"income":"1124321.60","notInCome":0.00,"peopleCount":167,"avgPrice":"6723.48","zanBi":"1.00%","name":"宋琳","PreferPrice":1122821.60,"SumPreferPrice":1124321.60,"totalGuestNum":"2.5","CalcheCount":251},{"income":"1092647.50","notInCome":0.00,"peopleCount":166,"avgPrice":"6582.21","zanBi":"12.18%","name":"吴淇(合肥)","PreferPrice":1092647.50,"SumPreferPrice":1092647.50,"totalGuestNum":"0.0","CalcheCount":153},{"income":"1072788.48","notInCome":0.00,"peopleCount":138,"avgPrice":"7773.83","zanBi":"11.82%","name":"李欢(重庆)","PreferPrice":1072788.48,"SumPreferPrice":1072788.48,"totalGuestNum":"0.0","CalcheCount":318},{"income":"1058796.00","notInCome":0.00,"peopleCount":184,"avgPrice":"5749.43","zanBi":"3.87%","name":"陈思杰(昆明)","PreferPrice":1057896.00,"SumPreferPrice":1058796.00,"totalGuestNum":"1.5","CalcheCount":215},{"income":"994892.80","notInCome":-600.00,"peopleCount":140,"avgPrice":"7102.09","zanBi":"10.95%","name":"张敏(重庆)","PreferPrice":994292.80,"SumPreferPrice":994292.80,"totalGuestNum":"0.0","CalcheCount":120},{"income":"993435.70","notInCome":0.00,"peopleCount":138,"avgPrice":"7198.81","zanBi":"7.29%","name":"杨思(长沙)","PreferPrice":993435.70,"SumPreferPrice":993435.70,"totalGuestNum":"0.0","CalcheCount":123},{"income":"925250.40","notInCome":0.00,"peopleCount":124,"avgPrice":"7461.70","zanBi":"2.02%","name":"李建波(武漢)","PreferPrice":925250.40,"SumPreferPrice":925250.40,"totalGuestNum":"0.0","CalcheCount":191},{"income":"901150.10","notInCome":0.00,"peopleCount":148,"avgPrice":"6088.85","zanBi":"1.65%","name":"穆尧(西安)","PreferPrice":901150.10,"SumPreferPrice":901150.10,"totalGuestNum":"0.0","CalcheCount":464},{"income":"436752.00","notInCome":462061.00,"peopleCount":103,"avgPrice":"5583.62","zanBi":"0.51%","name":"谢军","PreferPrice":575113.00,"SumPreferPrice":898813.00,"totalGuestNum":"5.5","CalcheCount":99},{"income":"864050.00","notInCome":0.00,"peopleCount":113,"avgPrice":"7596.46","zanBi":"0.77%","name":"蒋新芋","PreferPrice":858400.00,"SumPreferPrice":864050.00,"totalGuestNum":"8.0","CalcheCount":158},{"income":"824688.00","notInCome":0.00,"peopleCount":115,"avgPrice":"7171.20","zanBi":"6.05%","name":"陈雪琴(长沙)","PreferPrice":824688.00,"SumPreferPrice":824688.00,"totalGuestNum":"0.0","CalcheCount":174},{"income":"820468.80","notInCome":0.00,"peopleCount":126,"avgPrice":"6500.55","zanBi":"17.03%","name":"刘小勇(南昌)","PreferPrice":819068.80,"SumPreferPrice":820468.80,"totalGuestNum":"2.0","CalcheCount":91},{"income":"784548.00","notInCome":0.00,"peopleCount":85,"avgPrice":"9229.98","zanBi":"0.70%","name":"王培杰","PreferPrice":784548.00,"SumPreferPrice":784548.00,"totalGuestNum":"1.0","CalcheCount":81},{"income":"780115.00","notInCome":0.00,"peopleCount":112,"avgPrice":"6965.31","zanBi":"8.69%","name":"李星晨(合肥)","PreferPrice":780115.00,"SumPreferPrice":780115.00,"totalGuestNum":"0.0","CalcheCount":91},{"income":"737468.00","notInCome":0.00,"peopleCount":97,"avgPrice":"7602.76","zanBi":"1.35%","name":"常甜(西安)","PreferPrice":737468.00,"SumPreferPrice":737468.00,"totalGuestNum":"0.0","CalcheCount":119},{"income":"662990.00","notInCome":71540.00,"peopleCount":107,"avgPrice":"6864.77","zanBi":"9.90%","name":"黄芳杰(厦门)","PreferPrice":734530.00,"SumPreferPrice":734530.00,"totalGuestNum":"0.0","CalcheCount":124},{"income":"726860.00","notInCome":0.00,"peopleCount":122,"avgPrice":"5957.87","zanBi":"10.95%","name":"杨龙伟(重庆)","PreferPrice":726860.00,"SumPreferPrice":726860.00,"totalGuestNum":"0.0","CalcheCount":192},{"income":"706720.00","notInCome":0.00,"peopleCount":104,"avgPrice":"6795.38","zanBi":"1.55%","name":"蔡医红(武汉)","PreferPrice":706720.00,"SumPreferPrice":706720.00,"totalGuestNum":"0.0","CalcheCount":189},{"income":"700185.70","notInCome":0.00,"peopleCount":95,"avgPrice":"7360.90","zanBi":"0.62%","name":"郝苗苗","PreferPrice":699285.70,"SumPreferPrice":700185.70,"totalGuestNum":"1.5","CalcheCount":503},{"income":"678400.00","notInCome":0.00,"peopleCount":80,"avgPrice":"8480.00","zanBi":"4.98%","name":"周波(长沙)","PreferPrice":678400.00,"SumPreferPrice":678400.00,"totalGuestNum":"0.0","CalcheCount":100},{"income":"672361.60","notInCome":0.00,"peopleCount":88,"avgPrice":"7640.47","zanBi":"0.60%","name":"李欣","PreferPrice":672361.60,"SumPreferPrice":672361.60,"totalGuestNum":"0.0","CalcheCount":49},{"income":"656164.60","notInCome":0.00,"peopleCount":91,"avgPrice":"7204.01","zanBi":"0.58%","name":"樊静","PreferPrice":655564.60,"SumPreferPrice":656164.60,"totalGuestNum":"1.0","CalcheCount":130},{"income":"650594.00","notInCome":0.00,"peopleCount":95,"avgPrice":"6848.36","zanBi":"1.42%","name":"刘畅(武汉)","PreferPrice":650594.00,"SumPreferPrice":650594.00,"totalGuestNum":"0.0","CalcheCount":94},{"income":"647011.60","notInCome":0.00,"peopleCount":115,"avgPrice":"5604.97","zanBi":"0.58%","name":"郭倩","PreferPrice":644571.60,"SumPreferPrice":647011.60,"totalGuestNum":"3.0","CalcheCount":67},{"income":"632666.00","notInCome":0.00,"peopleCount":91,"avgPrice":"6952.37","zanBi":"13.16%","name":"曾兵(南昌)","PreferPrice":632666.00,"SumPreferPrice":632666.00,"totalGuestNum":"0.0","CalcheCount":108},{"income":"631761.00","notInCome":0.00,"peopleCount":86,"avgPrice":"7342.57","zanBi":"0.56%","name":"夏宇","PreferPrice":631461.00,"SumPreferPrice":631761.00,"totalGuestNum":"0.5","CalcheCount":184},{"income":"630970.00","notInCome":0.00,"peopleCount":80,"avgPrice":"7887.13","zanBi":"9.51%","name":"陀月扬(南宁)","PreferPrice":630970.00,"SumPreferPrice":630970.00,"totalGuestNum":"0.0","CalcheCount":105},{"income":"630120.00","notInCome":0.00,"peopleCount":83,"avgPrice":"7591.81","zanBi":"1.38%","name":"向玥如(武汉)","PreferPrice":630120.00,"SumPreferPrice":630120.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"625088.00","notInCome":0.00,"peopleCount":84,"avgPrice":"7437.95","zanBi":"11.50%","name":"陈欢(贵阳)","PreferPrice":624788.00,"SumPreferPrice":625088.00,"totalGuestNum":"0.5","CalcheCount":62},{"income":"615240.00","notInCome":0.00,"peopleCount":67,"avgPrice":"9182.69","zanBi":"0.55%","name":"罗洋","PreferPrice":615240.00,"SumPreferPrice":615240.00,"totalGuestNum":"0.0","CalcheCount":51},{"income":"603179.00","notInCome":0.00,"peopleCount":106,"avgPrice":"5690.37","zanBi":"12.54%","name":"朱佳丽(南昌)","PreferPrice":603179.00,"SumPreferPrice":603179.00,"totalGuestNum":"0.0","CalcheCount":125},{"income":"597590.00","notInCome":0.00,"peopleCount":92,"avgPrice":"6495.54","zanBi":"0.53%","name":"程磊(重庆)","PreferPrice":597590.00,"SumPreferPrice":597590.00,"totalGuestNum":"0.0","CalcheCount":58},{"income":"594570.00","notInCome":0.00,"peopleCount":100,"avgPrice":"5930.70","zanBi":"2.17%","name":"赵云波(昆明)","PreferPrice":593070.00,"SumPreferPrice":594570.00,"totalGuestNum":"2.5","CalcheCount":39},{"income":"589861.60","notInCome":0.00,"peopleCount":64,"avgPrice":"9216.59","zanBi":"6.50%","name":"常松(重庆)","PreferPrice":589861.60,"SumPreferPrice":589861.60,"totalGuestNum":"0.0","CalcheCount":95},{"income":"584002.00","notInCome":0.00,"peopleCount":119,"avgPrice":"4907.58","zanBi":"2.13%","name":"刘敬军(昆明)","PreferPrice":584002.00,"SumPreferPrice":584002.00,"totalGuestNum":"0.0","CalcheCount":151},{"income":"560553.00","notInCome":0.00,"peopleCount":85,"avgPrice":"6587.68","zanBi":"10.31%","name":"张维(贵阳)","PreferPrice":559953.00,"SumPreferPrice":560553.00,"totalGuestNum":"1.0","CalcheCount":70},{"income":"548249.60","notInCome":0.00,"peopleCount":83,"avgPrice":"6605.42","zanBi":"0.49%","name":"洪波","PreferPrice":548249.60,"SumPreferPrice":548249.60,"totalGuestNum":"0.0","CalcheCount":69},{"income":"503650.00","notInCome":0.00,"peopleCount":81,"avgPrice":"6217.90","zanBi":"7.59%","name":"黎宇宁(南宁)","PreferPrice":503650.00,"SumPreferPrice":503650.00,"totalGuestNum":"0.0","CalcheCount":131},{"income":"498504.00","notInCome":0.00,"peopleCount":84,"avgPrice":"5934.57","zanBi":"3.66%","name":"滕富升(长沙)","PreferPrice":498504.00,"SumPreferPrice":498504.00,"totalGuestNum":"0.0","CalcheCount":87},{"income":"483850.00","notInCome":0.00,"peopleCount":69,"avgPrice":"7012.32","zanBi":"1.06%","name":"袁婷(武汉)","PreferPrice":483850.00,"SumPreferPrice":483850.00,"totalGuestNum":"0.0","CalcheCount":317},{"income":"468603.60","notInCome":0.00,"peopleCount":71,"avgPrice":"6600.05","zanBi":"0.86%","name":"侯梦皎(西安)","PreferPrice":468603.60,"SumPreferPrice":468603.60,"totalGuestNum":"0.0","CalcheCount":109},{"income":"462722.00","notInCome":0.00,"peopleCount":63,"avgPrice":"7344.79","zanBi":"4.02%","name":"陈思(南京)","PreferPrice":462722.00,"SumPreferPrice":462722.00,"totalGuestNum":"0.0","CalcheCount":130},{"income":"448521.49","notInCome":1405.00,"peopleCount":128,"avgPrice":"3499.43","zanBi":"0.40%","name":"肖红霞","PreferPrice":447926.49,"SumPreferPrice":449926.49,"totalGuestNum":"0.5","CalcheCount":127},{"income":"188280.00","notInCome":248080.50,"peopleCount":75,"avgPrice":"5654.14","zanBi":"88.98%","name":"罗超","PreferPrice":424060.50,"SumPreferPrice":436360.50,"totalGuestNum":"0.0","CalcheCount":28},{"income":"429215.00","notInCome":0.00,"peopleCount":47,"avgPrice":"9132.23","zanBi":"0.79%","name":"李亮(西安)","PreferPrice":429215.00,"SumPreferPrice":429215.00,"totalGuestNum":"0.0","CalcheCount":27},{"income":"409490.00","notInCome":0.00,"peopleCount":63,"avgPrice":"6499.84","zanBi":"5.52%","name":"赖毅辉(厦门)","PreferPrice":409490.00,"SumPreferPrice":409490.00,"totalGuestNum":"0.0","CalcheCount":25},{"income":"397766.00","notInCome":0.00,"peopleCount":61,"avgPrice":"6451.90","zanBi":"0.35%","name":"刘海霞","PreferPrice":393566.00,"SumPreferPrice":397766.00,"totalGuestNum":"5.0","CalcheCount":118},{"income":"384140.00","notInCome":0.00,"peopleCount":64,"avgPrice":"6002.19","zanBi":"0.34%","name":"李成芳","PreferPrice":384140.00,"SumPreferPrice":384140.00,"totalGuestNum":"0.0","CalcheCount":84},{"income":"375261.00","notInCome":0.00,"peopleCount":55,"avgPrice":"6822.93","zanBi":"0.82%","name":"徐汉桃(武汉)","PreferPrice":375261.00,"SumPreferPrice":375261.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"366943.84","notInCome":0.00,"peopleCount":33,"avgPrice":"11119.51","zanBi":"0.80%","name":"詹传铭(武汉)","PreferPrice":366943.84,"SumPreferPrice":366943.84,"totalGuestNum":"0.0","CalcheCount":92},{"income":"361556.80","notInCome":0.00,"peopleCount":79,"avgPrice":"4576.67","zanBi":"0.32%","name":"刘东灵","PreferPrice":361556.80,"SumPreferPrice":361556.80,"totalGuestNum":"0.0","CalcheCount":86},{"income":"350209.60","notInCome":0.00,"peopleCount":45,"avgPrice":"7782.44","zanBi":"3.86%","name":"李航(重庆)","PreferPrice":350209.60,"SumPreferPrice":350209.60,"totalGuestNum":"0.0","CalcheCount":88},{"income":"334085.00","notInCome":-1140.00,"peopleCount":245,"avgPrice":"1358.96","zanBi":"0.30%","name":"任小蓉","PreferPrice":332945.00,"SumPreferPrice":332945.00,"totalGuestNum":"0.0","CalcheCount":313},{"income":"317292.70","notInCome":0.00,"peopleCount":63,"avgPrice":"5031.63","zanBi":"6.59%","name":"章冬冬(南昌)","PreferPrice":316992.70,"SumPreferPrice":317292.70,"totalGuestNum":"0.5","CalcheCount":52},{"income":"310010.00","notInCome":0.00,"peopleCount":44,"avgPrice":"7025.23","zanBi":"0.28%","name":"胡膑月","PreferPrice":309110.00,"SumPreferPrice":310010.00,"totalGuestNum":"1.5","CalcheCount":71},{"income":"237910.04","notInCome":70631.40,"peopleCount":456,"avgPrice":"517.17","zanBi":"0.21%","name":"滕林秀","PreferPrice":235831.44,"SumPreferPrice":308541.44,"totalGuestNum":"4.5","CalcheCount":173},{"income":"300800.00","notInCome":0.00,"peopleCount":48,"avgPrice":"6195.00","zanBi":"5.47%","name":"张莉(贵阳)","PreferPrice":297360.00,"SumPreferPrice":300800.00,"totalGuestNum":"4.5","CalcheCount":32},{"income":"300351.00","notInCome":0.00,"peopleCount":51,"avgPrice":"5889.24","zanBi":"6.25%","name":"徐铭新(南昌)","PreferPrice":300351.00,"SumPreferPrice":300351.00,"totalGuestNum":"0.0","CalcheCount":173},{"income":"294600.00","notInCome":1050.00,"peopleCount":30,"avgPrice":"9740.00","zanBi":"0.26%","name":"任月","PreferPrice":292200.00,"SumPreferPrice":295650.00,"totalGuestNum":"3.0","CalcheCount":2},{"income":"286361.50","notInCome":0.00,"peopleCount":44,"avgPrice":"6508.22","zanBi":"5.95%","name":"王靓(南昌)","PreferPrice":286361.50,"SumPreferPrice":286361.50,"totalGuestNum":"0.0","CalcheCount":48},{"income":"284005.00","notInCome":0.00,"peopleCount":51,"avgPrice":"5568.73","zanBi":"4.28%","name":"孙嘉敏(南宁)","PreferPrice":284005.00,"SumPreferPrice":284005.00,"totalGuestNum":"0.0","CalcheCount":38},{"income":"279460.00","notInCome":0.00,"peopleCount":39,"avgPrice":"7157.44","zanBi":"5.14%","name":"田荣胜(贵阳)","PreferPrice":279140.00,"SumPreferPrice":279460.00,"totalGuestNum":"0.5","CalcheCount":62},{"income":"278698.00","notInCome":0.00,"peopleCount":35,"avgPrice":"7962.80","zanBi":"0.51%","name":"崔琅(西安)","PreferPrice":278698.00,"SumPreferPrice":278698.00,"totalGuestNum":"0.0","CalcheCount":40},{"income":"270083.00","notInCome":0.00,"peopleCount":43,"avgPrice":"6281.00","zanBi":"0.24%","name":"肖雪莲","PreferPrice":270083.00,"SumPreferPrice":270083.00,"totalGuestNum":"0.0","CalcheCount":49},{"income":"263040.00","notInCome":0.00,"peopleCount":43,"avgPrice":"6117.21","zanBi":"0.58%","name":"王建(武汉)","PreferPrice":263040.00,"SumPreferPrice":263040.00,"totalGuestNum":"0.0","CalcheCount":105},{"income":"262919.00","notInCome":0.00,"peopleCount":37,"avgPrice":"7105.92","zanBi":"3.54%","name":"袁媛苑(厦门)","PreferPrice":262919.00,"SumPreferPrice":262919.00,"totalGuestNum":"0.0","CalcheCount":23},{"income":"259874.00","notInCome":0.00,"peopleCount":39,"avgPrice":"6663.44","zanBi":"1.91%","name":"邓盛富(长沙)","PreferPrice":259874.00,"SumPreferPrice":259874.00,"totalGuestNum":"0.0","CalcheCount":29},{"income":"253676.00","notInCome":0.00,"peopleCount":39,"avgPrice":"6495.54","zanBi":"1.86%","name":"周扬(长沙)","PreferPrice":253326.00,"SumPreferPrice":253676.00,"totalGuestNum":"0.5","CalcheCount":23},{"income":"251037.39","notInCome":0.00,"peopleCount":54,"avgPrice":"4631.25","zanBi":"5.20%","name":"刘攀(南昌)","PreferPrice":250087.39,"SumPreferPrice":251037.39,"totalGuestNum":"1.5","CalcheCount":25},{"income":"247780.00","notInCome":0.00,"peopleCount":31,"avgPrice":"7992.90","zanBi":"2.76%","name":"何琪(合肥)","PreferPrice":247780.00,"SumPreferPrice":247780.00,"totalGuestNum":"0.0","CalcheCount":89},{"income":"247430.00","notInCome":0.00,"peopleCount":33,"avgPrice":"7497.88","zanBi":"0.54%","name":"万颖(武汉)","PreferPrice":247430.00,"SumPreferPrice":247430.00,"totalGuestNum":"0.0","CalcheCount":108},{"income":"244600.00","notInCome":0.00,"peopleCount":40,"avgPrice":"6115.00","zanBi":"1.79%","name":"张含玉(长沙)","PreferPrice":244600.00,"SumPreferPrice":244600.00,"totalGuestNum":"0.0","CalcheCount":9},{"income":"242445.96","notInCome":0.00,"peopleCount":41,"avgPrice":"5913.32","zanBi":"2.67%","name":"张媛媛(重庆)","PreferPrice":242445.96,"SumPreferPrice":242445.96,"totalGuestNum":"0.0","CalcheCount":53},{"income":"231460.00","notInCome":0.00,"peopleCount":23,"avgPrice":"8963.48","zanBi":"0.18%","name":"邹林","PreferPrice":206160.00,"SumPreferPrice":231460.00,"totalGuestNum":"38.0","CalcheCount":66},{"income":"230420.00","notInCome":0.00,"peopleCount":21,"avgPrice":"10815.24","zanBi":"0.83%","name":"龙芳(昆明)","PreferPrice":227120.00,"SumPreferPrice":230420.00,"totalGuestNum":"4.0","CalcheCount":73},{"income":"221425.00","notInCome":0.00,"peopleCount":25,"avgPrice":"8829.00","zanBi":"1.62%","name":"陈诗瑶(长沙)","PreferPrice":220725.00,"SumPreferPrice":221425.00,"totalGuestNum":"1.0","CalcheCount":47},{"income":"200850.00","notInCome":0.00,"peopleCount":29,"avgPrice":"6925.86","zanBi":"3.03%","name":"黎碧坚(南宁)","PreferPrice":200850.00,"SumPreferPrice":200850.00,"totalGuestNum":"0.0","CalcheCount":10},{"income":"199180.00","notInCome":0.00,"peopleCount":35,"avgPrice":"5690.86","zanBi":"1.46%","name":"周瑶佳(长沙)","PreferPrice":199180.00,"SumPreferPrice":199180.00,"totalGuestNum":"0.0","CalcheCount":2},{"income":"195420.00","notInCome":0.00,"peopleCount":23,"avgPrice":"8496.52","zanBi":"1.70%","name":"陈子维(南京)","PreferPrice":195420.00,"SumPreferPrice":195420.00,"totalGuestNum":"0.0","CalcheCount":15},{"income":"0.00","notInCome":192000.00,"peopleCount":1,"avgPrice":"192000.00","zanBi":"0.17%","name":"徐总","PreferPrice":192000.00,"SumPreferPrice":192000.00,"totalGuestNum":"0.0","CalcheCount":5},{"income":"190586.40","notInCome":0.00,"peopleCount":26,"avgPrice":"7330.25","zanBi":"0.42%","name":"张雅楠(武汉)","PreferPrice":190586.40,"SumPreferPrice":190586.40,"totalGuestNum":"0.0","CalcheCount":30},{"income":"186520.00","notInCome":0.00,"peopleCount":22,"avgPrice":"8478.18","zanBi":"2.81%","name":"谢明错(南宁)","PreferPrice":186520.00,"SumPreferPrice":186520.00,"totalGuestNum":"0.0","CalcheCount":32},{"income":"226548.19","notInCome":-42519.92,"peopleCount":199,"avgPrice":"924.77","zanBi":"0.16%","name":"黄群","PreferPrice":184028.27,"SumPreferPrice":184028.27,"totalGuestNum":"0.0","CalcheCount":17},{"income":"179159.20","notInCome":0.00,"peopleCount":31,"avgPrice":"5779.33","zanBi":"3.73%","name":"吴国锌(南昌)","PreferPrice":179159.20,"SumPreferPrice":179159.20,"totalGuestNum":"0.0","CalcheCount":60},{"income":"161212.20","notInCome":0.00,"peopleCount":37,"avgPrice":"4357.09","zanBi":"1.78%","name":"曾紫欣(重庆)","PreferPrice":161212.20,"SumPreferPrice":161212.20,"totalGuestNum":"0.0","CalcheCount":117},{"income":"160159.60","notInCome":0.00,"peopleCount":20,"avgPrice":"8007.98","zanBi":"0.29%","name":"程博(西安)","PreferPrice":160159.60,"SumPreferPrice":160159.60,"totalGuestNum":"0.0","CalcheCount":37},{"income":"159433.00","notInCome":0.00,"peopleCount":47,"avgPrice":"3392.19","zanBi":"0.14%","name":"夏双艳","PreferPrice":159433.00,"SumPreferPrice":159433.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"151712.40","notInCome":0.00,"peopleCount":20,"avgPrice":"7585.62","zanBi":"1.11%","name":"丁洪锦(长沙)","PreferPrice":151712.40,"SumPreferPrice":151712.40,"totalGuestNum":"0.0","CalcheCount":21},{"income":"147178.00","notInCome":0.00,"peopleCount":29,"avgPrice":"5075.10","zanBi":"1.62%","name":"陈怡(重庆)","PreferPrice":147178.00,"SumPreferPrice":147178.00,"totalGuestNum":"0.0","CalcheCount":36},{"income":"142038.00","notInCome":0.00,"peopleCount":20,"avgPrice":"7101.90","zanBi":"0.26%","name":"张羽佳(西安)","PreferPrice":142038.00,"SumPreferPrice":142038.00,"totalGuestNum":"0.0","CalcheCount":20},{"income":"141760.00","notInCome":0.00,"peopleCount":23,"avgPrice":"6150.43","zanBi":"1.58%","name":"桂杨(合肥)","PreferPrice":141460.00,"SumPreferPrice":141760.00,"totalGuestNum":"0.5","CalcheCount":27},{"income":"141545.00","notInCome":0.00,"peopleCount":23,"avgPrice":"6108.48","zanBi":"1.03%","name":"桂翔宇(长沙)","PreferPrice":140495.00,"SumPreferPrice":141545.00,"totalGuestNum":"1.5","CalcheCount":5},{"income":"137060.00","notInCome":0.00,"peopleCount":13,"avgPrice":"10543.08","zanBi":"1.51%","name":"黄功磊(重庆)","PreferPrice":137060.00,"SumPreferPrice":137060.00,"totalGuestNum":"0.0","CalcheCount":18},{"income":"126200.00","notInCome":0.00,"peopleCount":15,"avgPrice":"8413.33","zanBi":"2.32%","name":"罗艳(贵阳)","PreferPrice":126200.00,"SumPreferPrice":126200.00,"totalGuestNum":"0.0","CalcheCount":12},{"income":"122960.00","notInCome":0.00,"peopleCount":12,"avgPrice":"10246.67","zanBi":"1.66%","name":"罗玉玲(厦门)","PreferPrice":122960.00,"SumPreferPrice":122960.00,"totalGuestNum":"0.0","CalcheCount":4},{"income":"118880.00","notInCome":0.00,"peopleCount":16,"avgPrice":"7430.00","zanBi":"1.60%","name":"孙宇霞(厦门)","PreferPrice":118880.00,"SumPreferPrice":118880.00,"totalGuestNum":"0.0","CalcheCount":47},{"income":"91498.65","notInCome":24268.16,"peopleCount":117,"avgPrice":"989.46","zanBi":"30.87%","name":"陈露伟","PreferPrice":115766.81,"SumPreferPrice":115766.81,"totalGuestNum":"0.0","CalcheCount":7},{"income":"114740.00","notInCome":0.00,"peopleCount":15,"avgPrice":"7649.33","zanBi":"0.25%","name":"胡芸(武汉)","PreferPrice":114740.00,"SumPreferPrice":114740.00,"totalGuestNum":"0.0","CalcheCount":30},{"income":"108560.00","notInCome":0.00,"peopleCount":13,"avgPrice":"8350.77","zanBi":"0.10%","name":"李欣悦","PreferPrice":108560.00,"SumPreferPrice":108560.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"106740.00","notInCome":0.00,"peopleCount":15,"avgPrice":"7116.00","zanBi":"0.20%","name":"第五剑(西安)","PreferPrice":106740.00,"SumPreferPrice":106740.00,"totalGuestNum":"0.0","CalcheCount":17},{"income":"106020.00","notInCome":0.00,"peopleCount":14,"avgPrice":"7572.86","zanBi":"0.39%","name":"荣星(昆明)","PreferPrice":106020.00,"SumPreferPrice":106020.00,"totalGuestNum":"0.0","CalcheCount":7},{"income":"97640.00","notInCome":0.00,"peopleCount":13,"avgPrice":"7510.77","zanBi":"0.72%","name":"黄浇红(长沙)","PreferPrice":97640.00,"SumPreferPrice":97640.00,"totalGuestNum":"0.0","CalcheCount":6},{"income":"87920.00","notInCome":0.00,"peopleCount":17,"avgPrice":"5171.76","zanBi":"0.98%","name":"邱磊(合肥)","PreferPrice":87920.00,"SumPreferPrice":87920.00,"totalGuestNum":"0.0","CalcheCount":24},{"income":"84500.00","notInCome":0.00,"peopleCount":10,"avgPrice":"8210.00","zanBi":"1.51%","name":"王华曲(贵阳)","PreferPrice":82100.00,"SumPreferPrice":84500.00,"totalGuestNum":"4.0","CalcheCount":13},{"income":"82801.00","notInCome":0.00,"peopleCount":19,"avgPrice":"4286.89","zanBi":"0.07%","name":"蒋敏","PreferPrice":81451.00,"SumPreferPrice":82801.00,"totalGuestNum":"2.5","CalcheCount":4},{"income":"81760.00","notInCome":0.00,"peopleCount":12,"avgPrice":"6813.33","zanBi":"1.10%","name":"王祉翔(厦门)","PreferPrice":81760.00,"SumPreferPrice":81760.00,"totalGuestNum":"0.0","CalcheCount":39},{"income":"0.00","notInCome":79920.00,"peopleCount":4,"avgPrice":"19980.00","zanBi":"50.00%","name":"程世明(重庆)","PreferPrice":79920.00,"SumPreferPrice":79920.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"0.00","notInCome":79920.00,"peopleCount":41,"avgPrice":"1949.27","zanBi":"50.00%","name":"马万敏(重庆)","PreferPrice":79920.00,"SumPreferPrice":79920.00,"totalGuestNum":"0.0","CalcheCount":9},{"income":"79420.00","notInCome":0.00,"peopleCount":18,"avgPrice":"4412.22","zanBi":"0.88%","name":"王旭升(合肥)","PreferPrice":79420.00,"SumPreferPrice":79420.00,"totalGuestNum":"0.0","CalcheCount":17},{"income":"64825.00","notInCome":0.00,"peopleCount":9,"avgPrice":"7202.78","zanBi":"0.48%","name":"黄茂兴(长沙)","PreferPrice":64825.00,"SumPreferPrice":64825.00,"totalGuestNum":"0.0","CalcheCount":3},{"income":"41590.48","notInCome":21505.92,"peopleCount":58,"avgPrice":"1087.87","zanBi":"16.82%","name":"谢茜","PreferPrice":63096.40,"SumPreferPrice":63096.40,"totalGuestNum":"0.0","CalcheCount":2},{"income":"60268.47","notInCome":1225.60,"peopleCount":98,"avgPrice":"627.49","zanBi":"16.40%","name":"廖宇翔","PreferPrice":61494.07,"SumPreferPrice":61494.07,"totalGuestNum":"0.0","CalcheCount":2},{"income":"59980.00","notInCome":0.00,"peopleCount":8,"avgPrice":"7422.50","zanBi":"0.65%","name":"周洁(重庆)","PreferPrice":59380.00,"SumPreferPrice":59980.00,"totalGuestNum":"0.5","CalcheCount":4},{"income":"59113.00","notInCome":0.00,"peopleCount":7,"avgPrice":"8444.71","zanBi":"0.43%","name":"傅敏(长沙)","PreferPrice":59113.00,"SumPreferPrice":59113.00,"totalGuestNum":"0.0","CalcheCount":6},{"income":"57600.00","notInCome":0.00,"peopleCount":9,"avgPrice":"6400.00","zanBi":"0.05%","name":"葛雯进","PreferPrice":57600.00,"SumPreferPrice":57600.00,"totalGuestNum":"0.0","CalcheCount":12},{"income":"57000.00","notInCome":0.00,"peopleCount":12,"avgPrice":"4700.00","zanBi":"0.05%","name":"李颖","PreferPrice":56400.00,"SumPreferPrice":57000.00,"totalGuestNum":"0.5","CalcheCount":47},{"income":"54980.00","notInCome":0.00,"peopleCount":9,"avgPrice":"5902.22","zanBi":"0.05%","name":"王帅","PreferPrice":53120.00,"SumPreferPrice":54980.00,"totalGuestNum":"3.0","CalcheCount":86},{"income":"54900.00","notInCome":0.00,"peopleCount":10,"avgPrice":"5490.00","zanBi":"1.01%","name":"曾小娟(贵阳)","PreferPrice":54900.00,"SumPreferPrice":54900.00,"totalGuestNum":"0.0","CalcheCount":24},{"income":"102184.11","notInCome":-49326.85,"peopleCount":110,"avgPrice":"480.52","zanBi":"14.09%","name":"杨诗逸","PreferPrice":52857.26,"SumPreferPrice":52857.26,"totalGuestNum":"0.0","CalcheCount":7},{"income":"52760.00","notInCome":0.00,"peopleCount":8,"avgPrice":"6595.00","zanBi":"0.58%","name":"熊粒雪(重庆)","PreferPrice":52760.00,"SumPreferPrice":52760.00,"totalGuestNum":"0.0","CalcheCount":13},{"income":"51840.00","notInCome":0.00,"peopleCount":8,"avgPrice":"6280.00","zanBi":"0.11%","name":"程思梅(武汉)","PreferPrice":50240.00,"SumPreferPrice":51840.00,"totalGuestNum":"2.0","CalcheCount":8},{"income":"49254.45","notInCome":1110.00,"peopleCount":48,"avgPrice":"1049.26","zanBi":"13.43%","name":"赖杨","PreferPrice":50364.45,"SumPreferPrice":50364.45,"totalGuestNum":"0.0","CalcheCount":4},{"income":"50280.00","notInCome":0.00,"peopleCount":6,"avgPrice":"8380.00","zanBi":"0.55%","name":"黄瑜佳(重庆)","PreferPrice":50280.00,"SumPreferPrice":50280.00,"totalGuestNum":"0.0","CalcheCount":20},{"income":"50140.00","notInCome":0.00,"peopleCount":9,"avgPrice":"5535.56","zanBi":"0.43%","name":"王蕾","PreferPrice":49820.00,"SumPreferPrice":50140.00,"totalGuestNum":"2.0","CalcheCount":0},{"income":"48960.00","notInCome":0.00,"peopleCount":4,"avgPrice":"12240.00","zanBi":"0.04%","name":"张桑语","PreferPrice":48960.00,"SumPreferPrice":48960.00,"totalGuestNum":"0.0","CalcheCount":8},{"income":"45040.00","notInCome":0.00,"peopleCount":13,"avgPrice":"3464.62","zanBi":"0.04%","name":"王蓓","PreferPrice":45040.00,"SumPreferPrice":45040.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"44240.00","notInCome":0.00,"peopleCount":7,"avgPrice":"6320.00","zanBi":"0.32%","name":"黄凌涛(长沙)","PreferPrice":44240.00,"SumPreferPrice":44240.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"42500.00","notInCome":0.00,"peopleCount":3,"avgPrice":"14166.67","zanBi":"0.78%","name":"周清菊(贵阳)","PreferPrice":42500.00,"SumPreferPrice":42500.00,"totalGuestNum":"0.0","CalcheCount":2},{"income":"40700.00","notInCome":0.00,"peopleCount":7,"avgPrice":"5600.00","zanBi":"0.72%","name":"韦志(贵阳)","PreferPrice":39200.00,"SumPreferPrice":40700.00,"totalGuestNum":"2.5","CalcheCount":22},{"income":"39100.00","notInCome":0.00,"peopleCount":4,"avgPrice":"9775.00","zanBi":"0.03%","name":"袁梦玲","PreferPrice":39100.00,"SumPreferPrice":39100.00,"totalGuestNum":"0.0","CalcheCount":12},{"income":"38960.00","notInCome":0.00,"peopleCount":4,"avgPrice":"9740.00","zanBi":"0.72%","name":"肖雪艳(贵阳)","PreferPrice":38960.00,"SumPreferPrice":38960.00,"totalGuestNum":"0.0","CalcheCount":38},{"income":"38700.00","notInCome":0.00,"peopleCount":5,"avgPrice":"7740.00","zanBi":"0.52%","name":"樊静(厦门)","PreferPrice":38700.00,"SumPreferPrice":38700.00,"totalGuestNum":"0.0","CalcheCount":9},{"income":"33600.00","notInCome":4480.00,"peopleCount":13,"avgPrice":"2806.15","zanBi":"7.65%","name":"刘东","PreferPrice":36480.00,"SumPreferPrice":38080.00,"totalGuestNum":"1.0","CalcheCount":1},{"income":"37218.00","notInCome":0.00,"peopleCount":1,"avgPrice":"78.00","zanBi":"0.00%","name":"李凡","PreferPrice":78.00,"SumPreferPrice":37218.00,"totalGuestNum":"35.5","CalcheCount":0},{"income":"37080.00","notInCome":0.00,"peopleCount":6,"avgPrice":"6180.00","zanBi":"0.07%","name":"许程杰(西安)","PreferPrice":37080.00,"SumPreferPrice":37080.00,"totalGuestNum":"0.0","CalcheCount":80},{"income":"35860.00","notInCome":0.00,"peopleCount":7,"avgPrice":"5122.86","zanBi":"0.07%","name":"孙静宇(西安)","PreferPrice":35860.00,"SumPreferPrice":35860.00,"totalGuestNum":"0.0","CalcheCount":22},{"income":"31900.00","notInCome":0.00,"peopleCount":3,"avgPrice":"10633.33","zanBi":"0.03%","name":"陈丽華","PreferPrice":31900.00,"SumPreferPrice":31900.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"31480.00","notInCome":0.00,"peopleCount":6,"avgPrice":"5246.67","zanBi":"0.42%","name":"沈小青(厦门)","PreferPrice":31480.00,"SumPreferPrice":31480.00,"totalGuestNum":"0.0","CalcheCount":14},{"income":"30920.00","notInCome":0.00,"peopleCount":4,"avgPrice":"7730.00","zanBi":"0.42%","name":"罗煜(厦门)","PreferPrice":30920.00,"SumPreferPrice":30920.00,"totalGuestNum":"0.0","CalcheCount":4},{"income":"26243.60","notInCome":0.00,"peopleCount":3,"avgPrice":"8746.67","zanBi":"0.48%","name":"王应洪(贵阳)","PreferPrice":26240.00,"SumPreferPrice":26243.60,"totalGuestNum":"1.0","CalcheCount":11},{"income":"23520.00","notInCome":0.00,"peopleCount":4,"avgPrice":"5880.00","zanBi":"0.17%","name":"肖博(长沙)","PreferPrice":23520.00,"SumPreferPrice":23520.00,"totalGuestNum":"0.0","CalcheCount":5},{"income":"23040.00","notInCome":0.00,"peopleCount":3,"avgPrice":"7680.00","zanBi":"0.02%","name":"田桉瑞","PreferPrice":23040.00,"SumPreferPrice":23040.00,"totalGuestNum":"0.0","CalcheCount":3},{"income":"19800.00","notInCome":0.00,"peopleCount":2,"avgPrice":"9900.00","zanBi":"0.15%","name":"李伟霜 (长沙)","PreferPrice":19800.00,"SumPreferPrice":19800.00,"totalGuestNum":"0.0","CalcheCount":2},{"income":"18900.00","notInCome":0.00,"peopleCount":3,"avgPrice":"6300.00","zanBi":"0.02%","name":"张大达","PreferPrice":18900.00,"SumPreferPrice":18900.00,"totalGuestNum":"0.0","CalcheCount":17},{"income":"18406.00","notInCome":0.00,"peopleCount":7,"avgPrice":"2543.71","zanBi":"0.02%","name":"陈兴梅","PreferPrice":17806.00,"SumPreferPrice":18406.00,"totalGuestNum":"1.0","CalcheCount":0},{"income":"32049.95","notInCome":-13937.45,"peopleCount":59,"avgPrice":"306.99","zanBi":"0.33%","name":"张兆峰(贵阳)","PreferPrice":18112.50,"SumPreferPrice":18112.50,"totalGuestNum":"0.0","CalcheCount":2},{"income":"18062.50","notInCome":0.00,"peopleCount":3,"avgPrice":"6020.83","zanBi":"0.38%","name":"卢星晨(南昌)","PreferPrice":18062.50,"SumPreferPrice":18062.50,"totalGuestNum":"0.0","CalcheCount":0},{"income":"17940.00","notInCome":0.00,"peopleCount":3,"avgPrice":"5980.00","zanBi":"0.03%","name":"张洁(西安)","PreferPrice":17940.00,"SumPreferPrice":17940.00,"totalGuestNum":"0.0","CalcheCount":2},{"income":"16200.00","notInCome":0.00,"peopleCount":5,"avgPrice":"3240.00","zanBi":"0.18%","name":"郑锐(合肥)","PreferPrice":16200.00,"SumPreferPrice":16200.00,"totalGuestNum":"0.0","CalcheCount":6},{"income":"15920.00","notInCome":0.00,"peopleCount":4,"avgPrice":"3980.00","zanBi":"0.01%","name":"周婷","PreferPrice":15920.00,"SumPreferPrice":15920.00,"totalGuestNum":"0.0","CalcheCount":80},{"income":"15720.00","notInCome":0.00,"peopleCount":4,"avgPrice":"3930.00","zanBi":"0.14%","name":"李婷(南京)","PreferPrice":15720.00,"SumPreferPrice":15720.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"15560.00","notInCome":0.00,"peopleCount":2,"avgPrice":"7780.00","zanBi":"0.11%","name":"李祥龙(长沙)","PreferPrice":15560.00,"SumPreferPrice":15560.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"15236.60","notInCome":0.00,"peopleCount":3,"avgPrice":"5078.87","zanBi":"0.17%","name":"王立学(重庆)","PreferPrice":15236.60,"SumPreferPrice":15236.60,"totalGuestNum":"0.0","CalcheCount":3},{"income":"14200.00","notInCome":0.00,"peopleCount":9,"avgPrice":"1577.78","zanBi":"0.01%","name":"羊三红","PreferPrice":14200.00,"SumPreferPrice":14200.00,"totalGuestNum":"0.5","CalcheCount":0},{"income":"14200.00","notInCome":0.00,"peopleCount":2,"avgPrice":"7100.00","zanBi":"0.26%","name":"文丹丹(贵阳)","PreferPrice":14200.00,"SumPreferPrice":14200.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"44211.16","notInCome":-31947.57,"peopleCount":83,"avgPrice":"147.75","zanBi":"3.27%","name":"孙冬瑞","PreferPrice":12263.59,"SumPreferPrice":12263.59,"totalGuestNum":"0.0","CalcheCount":8},{"income":"0.00","notInCome":11044.00,"peopleCount":2,"avgPrice":"5522.00","zanBi":"0.01%","name":"刘涛","PreferPrice":11044.00,"SumPreferPrice":11044.00,"totalGuestNum":"0.0","CalcheCount":30},{"income":"10360.00","notInCome":0.00,"peopleCount":2,"avgPrice":"5180.00","zanBi":"0.12%","name":"闪秀悦(合肥)","PreferPrice":10360.00,"SumPreferPrice":10360.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"5200.00","notInCome":4800.00,"peopleCount":2,"avgPrice":"2600.00","zanBi":"1.09%","name":"吴春","PreferPrice":5200.00,"SumPreferPrice":10000.00,"totalGuestNum":"1.0","CalcheCount":2},{"income":"9960.00","notInCome":0.00,"peopleCount":2,"avgPrice":"4980.00","zanBi":"0.09%","name":"姚源(南京)","PreferPrice":9960.00,"SumPreferPrice":9960.00,"totalGuestNum":"0.0","CalcheCount":8},{"income":"9116.00","notInCome":0.00,"peopleCount":3,"avgPrice":"3038.67","zanBi":"0.19%","name":"蔡捷(南昌)","PreferPrice":9116.00,"SumPreferPrice":9116.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"7980.00","notInCome":800.00,"peopleCount":8,"avgPrice":"922.50","zanBi":"0.01%","name":"何娟","PreferPrice":7380.00,"SumPreferPrice":8780.00,"totalGuestNum":"1.5","CalcheCount":0},{"income":"8000.00","notInCome":0.00,"peopleCount":1,"avgPrice":"8000.00","zanBi":"2.13%","name":"朱林栋","PreferPrice":8000.00,"SumPreferPrice":8000.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"7690.00","notInCome":0.00,"peopleCount":3,"avgPrice":"2563.33","zanBi":"1.61%","name":"王蕾钧","PreferPrice":7690.00,"SumPreferPrice":7690.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"6240.00","notInCome":0.00,"peopleCount":2,"avgPrice":"3120.00","zanBi":"0.13%","name":"涂林菲(南昌)","PreferPrice":6240.00,"SumPreferPrice":6240.00,"totalGuestNum":"0.0","CalcheCount":17},{"income":"0.00","notInCome":3356.00,"peopleCount":3,"avgPrice":"1118.67","zanBi":"0.00%","name":null,"PreferPrice":3356.00,"SumPreferPrice":3356.00,"totalGuestNum":"0.0","CalcheCount":11},{"income":"2600.00","notInCome":0.00,"peopleCount":3,"avgPrice":"866.67","zanBi":"0.69%","name":"何文瀚","PreferPrice":2600.00,"SumPreferPrice":2600.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"0.00","notInCome":2130.00,"peopleCount":7,"avgPrice":"304.29","zanBi":"0.45%","name":"沈良进","PreferPrice":2130.00,"SumPreferPrice":2130.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"0.00","notInCome":1000.00,"peopleCount":5,"avgPrice":"200.00","zanBi":"0.21%","name":"黄奎","PreferPrice":1000.00,"SumPreferPrice":1000.00,"totalGuestNum":"0.0","CalcheCount":52},{"income":"0.00","notInCome":300.00,"peopleCount":1,"avgPrice":"300.00","zanBi":"0.00%","name":"谢麟","PreferPrice":300.00,"SumPreferPrice":300.00,"totalGuestNum":"0.0","CalcheCount":0},{"income":"234.00","notInCome":0.00,"peopleCount":3,"avgPrice":"78.00","zanBi":"0.00%","name":"李琴","PreferPrice":234.00,"SumPreferPrice":234.00,"totalGuestNum":"0.0","CalcheCount":3},{"income":"234.00","notInCome":0.00,"peopleCount":3,"avgPrice":"78.00","zanBi":"0.00%","name":"唐藩","PreferPrice":234.00,"SumPreferPrice":234.00,"totalGuestNum":"0.0","CalcheCount":3},{"income":"204.00","notInCome":0.00,"peopleCount":4,"avgPrice":"51.00","zanBi":"0.00%","name":"蒋晓雪","PreferPrice":204.00,"SumPreferPrice":204.00,"totalGuestNum":"0.0","CalcheCount":36},{"income":"58.88","notInCome":0.00,"peopleCount":2,"avgPrice":"29.44","zanBi":"0.00%","name":"曾兰","PreferPrice":58.88,"SumPreferPrice":58.88,"totalGuestNum":"0.0","CalcheCount":7}]}
r.data.forEach(x => {
this.apipost("sellorder_get_sellvolumerankNew", param, r => {
r.data.data.forEach(x => {
x.incomeVal = parseFloat(x.income);
x.avgPrice = parseFloat(x.avgPrice);
});
this.tableData = r.data;
this.tableData = r.data.data;
this.loading = false;
// this.apipost("sellorder_get_sellvolumerankNew", param, r => {
// r.data.data.forEach(x => {
// x.incomeVal = parseFloat(x.income);
// x.avgPrice = parseFloat(x.avgPrice);
// });
// this.tableData = r.data.data;
// this.loading = false;
// });
});
},
getCompanyList() {
//获取公司列表
......
......@@ -4871,6 +4871,14 @@ export default {
title: '销售额排行榜'
}
},
{
path: '/salesVolumeRankEntryForm',
name: 'salesVolumeRankEntryForm',
component: resolve => require(['@/components/rank/entryForm'], resolve),
meta: {
title: '销售额排行榜报名表'
}
},
{
path: '/completionRate',
name: 'completionRate',
......
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