Commit 4b95c1e8 by 夏新然

客流统计页面完成

1 parent 9fc83ede
<template>
<view class="circleBarchart">
<div :id='bindId' class="chart"></div>
</view>
</template>
<script>
export default {
data () {
return {
yMax:0
}
},
mounted() {
},
watch:{
bindId:function(newValue,oldValue){
},
chartData:{
handler(newValue,oldValue){
this.drawCircleBarChart();
},
deep:true
},
},
props:{
bindId:{
type:String,
default:''
},
chartData: {
type: Object,
default: function(){
return {}
}
}
},
methods: {
drawCircleBarChart() {
var yMax=0;
let myChart = {};
let chartDom = document.getElementById(this.bindId);
myChart = this.echarts.init(chartDom);
myChart.showLoading('default', {
text: '',
color: '#409eff'
});
var option = {
title:{
show:true,
text:this.chartData.title,
left: uni.upx2px(18.11),
top: uni.upx2px(10.86),
textStyle: {
fontWeight: "normal",
fontSize: uni.upx2px(25.4),
color: '#4A4A4A'
}
},
color: ['#3BB8FF', '#87D14B', '#6784E3'],
tooltip:{
renderMode:'richText'
},
grid: {
left:uni.upx2px(76.08),
right: uni.upx2px(28.98),
top: uni.upx2px(83.33),
bottom: uni.upx2px(9.05)+uni.upx2px(21.74)+12+uni.upx2px(21.74)+12
},
animation: false,
yAxis: {
minInterval :1,
name:'人次',
type: 'value',
nameRotate: 1,
splitLine: {
lineStyle: {
color: '#EBEBEB'
}
},
axisLine: {
lineStyle: {
color: '#888'
}
},
axisTick: {
show: false
},
axisLabel: {
fontSize: uni.upx2px(21.74),
color: '#666',
formatter:function(value){
if(value>yMax){
yMax=value;
}
return value
}
}
},
xAxis: {
splitLine: {
show: false
},
axisLine: {
lineStyle: {
color: '#888'
}
},
axisTick: {
show: false
},
axisLabel: {
fontSize: uni.upx2px(21.74),
color: '#666'
},
data: []
},
legend : {
orient: "horizontal",
x: "center",
textStyle: {
fontSize: uni.upx2px(21.74),
color:'rgba(74,74,74,1)'
},
itemWidth: uni.upx2px(12.7),
itemHeight: uni.upx2px(12.7),
itemGap: uni.upx2px(5.62),
bottom: uni.upx2px(9.05),
data: [],
selected:{}
},
series:JSON.parse(JSON.stringify(this.chartData.series))
}
if(!option.series) return;
let seriesObj = {}, seriesData = [], totalData = [];
try {
seriesData = this.chartData.xaxis.data.map(item => {
return {
name: item,
data: []
}
});
if(option.series.length > 0) {
for(let i = 0; i < option.series.length; i++) {
option.xAxis.data.push(option.series[i].name);
for(let j = 0; j < option.series[i].data.length; j++) {
seriesObj[this.chartData.xaxis.data[j]] = option.series[i].data[j];
for(let k in seriesObj) {
if(seriesData[j].name == k) {
seriesData[j].data.push(seriesObj[k])
}
}
seriesObj = {};
}
}
}
for(let i = 0; i < seriesData.length; i++) {
seriesData[i].itemStyle = {
normal: {
barBorderRadius: 7
}
};
seriesData[i].type = 'bar';
seriesData[i].barWidth = 14;
option.legend.data.push({
name: seriesData[i].name,
icon: 'circle'
});
}
seriesData.forEach(item => {
item.data.forEach((k, i) => {
if(totalData[i]) {
totalData[i] += k;
} else {
totalData[i] = k;
}
})
})
option.series = seriesData;
if(!option.series.length) {
option.graphic = {
type: 'text',
left: 'center',
top: 'middle',
z: 100,
style: {
fill: '#333',
text: '暂无数据',
}
}
// option.xAxis.data = [];
myChart.clear();
setTimeout(() => {
myChart.hideLoading();
myChart.setOption(option);
}, 500);
}
} catch (error) {}
// myChart.clear();
setTimeout(() => {
myChart.hideLoading();
}, 500);
myChart.setOption(option);
// option.grid.left=uni.upx2px(String(yMax).length*uni.upx2px(21.74))+uni.upx2px(18.11)
console.log(yMax)
option.grid.left=uni.upx2px(18.11)+15+String(yMax).length*uni.upx2px(9.05)
myChart.setOption(option);
}
}
}
</script>
<style>
.chart{
width:706.52upx;
height:634.05upx;
margin: 0 auto;
background: #FFFFFF;
margin-bottom: 18.2upx;
border-radius:7.24upx;
overflow: hidden;
}
</style>
<template>
<view class="timechart">
<div :id='bindId' class="chart"></div>
</view>
</template>
<script>
export default {
data () {
return {
yMax:0
}
},
mounted() {
},
watch:{
bindId:function(newValue,oldValue){
},
chartData:{
handler(newValue,oldValue){
this.drawTimeChart();
},
deep:true
},
},
props:{
bindId:{
type:String,
default:''
},
chartData: {
type: Object,
default: function(){
return {}
}
}
},
methods: {
drawTimeChart() {
var yMax=0;
let myChart = {};
let chartDom = document.getElementById(this.bindId);
myChart = this.echarts.init(chartDom);
myChart.showLoading('default', {
text: '',
color: '#409eff'
});
let yAxisData = ['周一', '周二', '周三', '周四', '周五', '周六', '周日'];
var option = {
title:{
show:true,
text:this.chartData.title,
left: uni.upx2px(18.11),
top: uni.upx2px(10.86),
textStyle: {
fontWeight: "normal",
fontSize: uni.upx2px(25.4),
color: '#4A4A4A'
}
},
tooltip:{
renderMode:'richText'
},
grid: {
left:uni.upx2px(76.08),
right: uni.upx2px(28.98),
top: uni.upx2px(83.33),
bottom: uni.upx2px(9.05)+uni.upx2px(21.74)+12+uni.upx2px(21.74)+12
},
animation: false,
yAxis: {
type: 'category',
splitArea: {
show: true
},
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#535353'
}
},
data: yAxisData
},
xAxis: {
type: 'category',
data: [],
nameTextStyle: {
color: '#444',
fontSize: uni.upx2px(21.74)
},
axisLabel: {
width: 140
},
splitArea: {
show: true
},
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#535353'
}
}
},
visualMap: {
min: 0,
max: 20,
calculable: true,
orient: 'horizontal',
left: 'left',
itemWidth: 15,
color: ['#0068FF', '#fff'],
},
legend : {
orient: "horizontal",
x: "center",
textStyle: {
fontSize: uni.upx2px(21.74),
color:'rgba(74,74,74,1)'
},
itemWidth: uni.upx2px(12.7),
itemHeight: uni.upx2px(12.7),
itemGap: uni.upx2px(5.62),
bottom: uni.upx2px(9.05),
data: [],
selected:{}
},
series:JSON.parse(JSON.stringify(this.chartData.series))
}
if(!option.series) return;
try {
option.xAxis.data = this.chartData.xaxis.data;
} catch (error) { }
if(option.series.length > 0) {
let seriesData = [], yIndex = null;
let maxArr = [], onedimen = [], maxNum = null;
for(let i = 0, len = option.series.length; i < len; i++) {
option.series[i].type = 'heatmap';
option.series[i].itemStyle = {
emphasis: {
shadowBlur: 10,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
};
option.series[i].label = {
normal: {
show: true,
color: '#444'
}
};
}
// 处理series data
option.series.forEach((item, index) => {
yIndex = getIndex(item.name, yAxisData);
maxArr.push(item.data);
for(let i = 0; i < item.data.length; i++) {
seriesData.push([parseInt(yIndex), i, item.data[i]]);
}
});
try {
onedimen = maxArr.join(',').split(',');
maxNum = Math.max.apply(null, onedimen);
} catch (error) {
console.log('heatmap max value', error.message)
}
option.visualMap.max = maxNum;
seriesData = seriesData.map(function (item) {
return [item[1], item[0], item[2] || '-'];
});
for(let i in option.series) {
option.series[i].data = [];
option.series[i].data = seriesData.splice(0, option.xAxis.data.length);
}
// 获取在Y轴的值
function getIndex (val, arr) {
for(let i in arr) {
if(val == arr[i]) {
return i;
}
}
}
} else {
option.graphic = {
type: 'text',
left: 'center',
top: 'middle',
z: 100,
style: {
fill: '#444',
text:'暂无数据',
font: '14px '
}
}
option.visualMap.show = false;
option.yAxis.data = [];
// option.grid.height = 670;
myChart.clear();
setTimeout(() => {
myChart.hideLoading();
myChart.setOption(option);
}, 500);
}
// myChart.clear();
setTimeout(() => {
myChart.hideLoading();
}, 500);
myChart.setOption(option);
console.log('option', JSON.stringify(option))
// option.grid.left=uni.upx2px(String(yMax).length*uni.upx2px(21.74))+uni.upx2px(18.11)
// option.grid.left=uni.upx2px(18.11)+15+String(yMax).length*uni.upx2px(9.05)
// myChart.setOption(option);
}
}
}
</script>
<style>
.chart{
width:706.52upx;
height:634.05upx;
margin: 0 auto;
background: #FFFFFF;
margin-bottom: 18.2upx;
border-radius:7.24upx;
overflow: hidden;
}
</style>
...@@ -45,6 +45,11 @@ ...@@ -45,6 +45,11 @@
"navigationBarTitleText": "多选出入口列表" "navigationBarTitleText": "多选出入口列表"
} }
}, { }, {
"path": "pages/list/oneGateList",
"style": {
"navigationBarTitleText": "单选出入口列表"
}
}, {
"path": "pages/list/moreFloorList", "path": "pages/list/moreFloorList",
"style": { "style": {
"navigationBarTitleText": "多选楼层列表" "navigationBarTitleText": "多选楼层列表"
...@@ -59,12 +64,27 @@ ...@@ -59,12 +64,27 @@
"style": { "style": {
"navigationBarTitleText": "多选店铺列表" "navigationBarTitleText": "多选店铺列表"
} }
},{
"path": "pages/list/oneStoreList",
"style": {
"navigationBarTitleText": "单选店铺列表"
}
},{
"path": "pages/list/objList",
"style": {
"navigationBarTitleText": "对象列表"
}
}, { }, {
"path": "pages/list/floorList", "path": "pages/list/floorList",
"style": { "style": {
"navigationBarTitleText": "门店列表" "navigationBarTitleText": "门店列表"
} }
},{ },{
"path": "pages/list/eventList",
"style": {
"navigationBarTitleText": "活动列表"
}
},{
"path": "pages/analysis/staticReport/staticDayReport", "path": "pages/analysis/staticReport/staticDayReport",
"style": { "style": {
"navigationBarTitleText": "基础统计" "navigationBarTitleText": "基础统计"
...@@ -100,9 +120,39 @@ ...@@ -100,9 +120,39 @@
"navigationBarTitleText": "排行榜统计" "navigationBarTitleText": "排行榜统计"
} }
},{ },{
"path": "pages/analysis/staticReport/staticWeekReport", "path": "pages/analysis/yoyReport/yoyDayReport",
"style": { "style": {
"navigationBarTitleText": "基础统计周" "navigationBarTitleText": "同环比对比日"
}
},{
"path": "pages/analysis/yoyReport/yoyWeekReport",
"style": {
"navigationBarTitleText": "同环比对比周"
}
},{
"path": "pages/analysis/yoyReport/yoyMonthReport",
"style": {
"navigationBarTitleText": "同环比对比月"
}
},{
"path": "pages/analysis/yoyReport/yoyYearReport",
"style": {
"navigationBarTitleText": "同环比对比年"
}
},{
"path": "pages/analysis/timeFlowReport/timeFlowReport",
"style": {
"navigationBarTitleText": "时段客流分布"
}
},{
"path": "pages/analysis/holidayReport/holidayReport",
"style": {
"navigationBarTitleText": "节假日活动对比"
}
},{
"path": "pages/analysis/actObjReport/actObjReport",
"style": {
"navigationBarTitleText": "同节日对象对比"
} }
},{ },{
"path": "pages/analysis/condition", "path": "pages/analysis/condition",
......
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<linechart :chart-data="chartData.HolidayNear" bind-id='HolidayNear'></linechart>
<circlebar :chart-data="chartData.HolidayEffect" bind-id='HolidayEffect'></circlebar>
<linechart :chart-data="chartData.HolidayHourDetail" bind-id='HolidayHourDetail'></linechart>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import circlebar from '../../../components/circleBarChart'
import linechart from '../../../components/lineChart'
export default{
data(){
return{
titleStr:'节假日活动对比',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartData:{},
gateId:[],
floorId:[],
storeId:[]
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
var currentYear=[]
uni.getStorage({
key:'currentYear',
success:(res)=> {
currentYear=JSON.parse(res.data);
},
complete: (res) => {
}
})
var a1=0;
if(currentYear[0].index){
a1=currentYear[0].index;
}else{
a1=currentYear[0];
}
var from='',to='';
var year =1999+a1;
from=year+'-01-01';
to=year+'-12-31';
this.date=from+','+to;
uni.getStorage({
key:'selectDate',
success:(res)=> {
if(res.data.indexOf(',')!=-1){
this.date=res.data;
}else{
uni.setStorage({
key:'selectDate',
data:this.date
})
}
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,circlebar,linechart
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:7
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='holidayObject';
this.keyArr=['HolidayNear','HolidayEffect','HolidayHourDetail'];
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
getChartData(){
this.orgIds=''
var data={}
var holidayEventId='';
uni.getStorage({
key:'eventIdArr',
success:(res)=> {
holidayEventId=JSON.parse(res.data)[0];
},
complete: (res) => {
}
})
this.accountId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1);
if(holidayEventId==''){
uni.request({
url:window.url+'/events/getEvent',
data:{
mallId: this.orgIds,
year: this.date.split(',')[0],
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
holidayEventId=res.data.data[0].id;
var url=window.url+'/report/holidayObject/mall';
if(this.reportType=='mall'){
url=window.url+'/report/holidayObject/mall';
data={
orgIds:this.orgIds,
chartIds:this.chartIds,
date:this.date.split(',')[0],
holidayEventId:holidayEventId,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
}
})
}
})
}else{
var url=window.url+'/report/holidayObject/mall';
if(this.reportType=='mall'){
url=window.url+'/report/holidayObject/mall';
data={
orgIds:this.orgIds,
chartIds:this.chartIds,
date:this.date.split(',')[0],
holidayEventId:holidayEventId,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
}
})
}
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
...@@ -3,16 +3,31 @@ ...@@ -3,16 +3,31 @@
<headerComp :leftImgSrc="leftImg" @leftClick="backFun" :rightText="rightText" @rightClick="save"></headerComp> <headerComp :leftImgSrc="leftImg" @leftClick="backFun" :rightText="rightText" @rightClick="save"></headerComp>
<div class="headFlex" :style="{top:navheight+'px'}"> <div class="headFlex" :style="{top:navheight+'px'}">
<div class="headItems" :class="{'activeItem':activeType=='mall'}" @tap="itemClick('mall')">{{i18n.store}}</div> <div class="headItems" :class="{'activeItem':activeType=='mall'}" @tap="itemClick('mall')">{{i18n.store}}</div>
<div class="headItems" :class="{'activeItem':activeType=='gate'}" @tap="itemClick('gate')">出入口</div> <div class="headItems" v-show="showList['gateTab']||pageType=='mall'" :class="{'activeItem':activeType=='gate'}" @tap="itemClick('gate')">出入口</div>
<div class="headItems" v-show="pageType=='mall'" :class="{'activeItem':activeType=='floor'}" @tap="itemClick('floor')">楼层</div> <div class="headItems" v-show="pageType=='mall'" :class="{'activeItem':activeType=='floor'}" @tap="itemClick('floor')">楼层</div>
<div class="headItems" v-show="pageType=='mall'" :class="{'activeItem':activeType=='area'}" @tap="itemClick('area')">店铺</div> <div class="headItems" v-show="pageType=='mall'" :class="{'activeItem':activeType=='area'}" @tap="itemClick('area')">店铺</div>
</div> </div>
<div class="handleContent" v-show="activeType=='mall'"> <div class="handleContent" v-show="activeType=='mall'">
<div class="conditionItem" @tap="goStoreList"> <div class="conditionItem" @tap="goObjList" v-show="showList['mall']['obj']">
<span class="cTitle">对象个数</span>
<span class="selectItem">{{objText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="goMallList" v-show="showList['mall']['moreMall']">
<span class="cTitle">{{i18n.store}}</span> <span class="cTitle">{{i18n.store}}</span>
<span class="selectItem">{{accountText}}</span> <span class="selectItem">{{accountText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goOneMallList" v-show="showList['mall']['oneMall']">
<span class="cTitle">{{i18n.store}}</span>
<span class="selectItem">{{oneAccountText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="goEventList" v-show="showList['mall']['event']">
<span class="cTitle">活动</span>
<span class="selectItem">{{eventText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="dateShow"> <div class="conditionItem" @tap="dateShow">
<span class="cTitle">日期</span> <span class="cTitle">日期</span>
<span class="selectItem">{{dateText}}</span> <span class="selectItem">{{dateText}}</span>
...@@ -20,16 +35,26 @@ ...@@ -20,16 +35,26 @@
</div> </div>
</div> </div>
<div class="handleContent" v-show="activeType=='gate'"> <div class="handleContent" v-show="activeType=='gate'">
<div class="conditionItem" @tap="goOneStoreList"> <div class="conditionItem" @tap="goObjList" v-show="showList['gate']['obj']">
<span class="cTitle">对象个数</span>
<span class="selectItem">{{objText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="goOneMallList" v-show="showList['gate']['oneMall']">
<span class="cTitle">{{i18n.store}}</span> <span class="cTitle">{{i18n.store}}</span>
<span class="selectItem">{{oneAccountText}}</span> <span class="selectItem">{{oneAccountText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goMoreGateList"> <div class="conditionItem" @tap="goMoreGateList" v-show="showList['gate']['moreGate']">
<span class="cTitle">出入口</span> <span class="cTitle">出入口</span>
<span class="selectItem">{{gateText}}</span> <span class="selectItem">{{gateText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goOneGateList" v-show="showList['gate']['oneGate']">
<span class="cTitle">出入口</span>
<span class="selectItem">{{oneGateText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="dateShow"> <div class="conditionItem" @tap="dateShow">
<span class="cTitle">日期</span> <span class="cTitle">日期</span>
<span class="selectItem">{{dateText}}</span> <span class="selectItem">{{dateText}}</span>
...@@ -37,16 +62,26 @@ ...@@ -37,16 +62,26 @@
</div> </div>
</div> </div>
<div class="handleContent" v-show="activeType=='floor'"> <div class="handleContent" v-show="activeType=='floor'">
<div class="conditionItem" @tap="goOneStoreList"> <div class="conditionItem" @tap="goObjList" v-show="showList['floor']['obj']">
<span class="cTitle">对象个数</span>
<span class="selectItem">{{objText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="goOneMallList" v-show="showList['floor']['oneMall']">
<span class="cTitle">{{i18n.store}}</span> <span class="cTitle">{{i18n.store}}</span>
<span class="selectItem">{{oneAccountText}}</span> <span class="selectItem">{{oneAccountText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goMoreFloorList"> <div class="conditionItem" @tap="goMoreFloorList" v-show="showList['floor']['moreFloor']">
<span class="cTitle">楼层</span> <span class="cTitle">楼层</span>
<span class="selectItem">{{floorText}}</span> <span class="selectItem">{{floorText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goOneFloorList" v-show="showList['floor']['oneFloor']">
<span class="cTitle">楼层</span>
<span class="selectItem">{{oneFloorText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="dateShow"> <div class="conditionItem" @tap="dateShow">
<span class="cTitle">日期</span> <span class="cTitle">日期</span>
<span class="selectItem">{{dateText}}</span> <span class="selectItem">{{dateText}}</span>
...@@ -54,21 +89,26 @@ ...@@ -54,21 +89,26 @@
</div> </div>
</div> </div>
<div class="handleContent" v-show="activeType=='area'"> <div class="handleContent" v-show="activeType=='area'">
<div class="conditionItem" @tap="goOneStoreList"> <div class="conditionItem" @tap="goOneMallList" v-show="showList['area']['oneMall']">
<span class="cTitle">{{i18n.store}}</span> <span class="cTitle">{{i18n.store}}</span>
<span class="selectItem">{{oneAccountText}}</span> <span class="selectItem">{{oneAccountText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goOneFloorList"> <div class="conditionItem" @tap="goOneFloorList" v-show="showList['area']['oneFloor']">
<span class="cTitle">楼层</span> <span class="cTitle">楼层</span>
<span class="selectItem">{{oneFloorText}}</span> <span class="selectItem">{{oneFloorText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goMoreStoreList"> <div class="conditionItem" @tap="goMoreStoreList" v-show="showList['area']['moreStore']">
<span class="cTitle">店铺</span> <span class="cTitle">店铺</span>
<span class="selectItem">{{storeText}}</span> <span class="selectItem">{{storeText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image> <image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div> </div>
<div class="conditionItem" @tap="goOneStoreList" v-show="showList['area']['oneStore']">
<span class="cTitle">店铺</span>
<span class="selectItem">{{oneStoreText}}</span>
<image class="rArrow" src="../../static/analysis/rArrow.png" mode="widthFix"></image>
</div>
<div class="conditionItem" @tap="dateShow"> <div class="conditionItem" @tap="dateShow">
<span class="cTitle">日期</span> <span class="cTitle">日期</span>
<span class="selectItem">{{dateText}}</span> <span class="selectItem">{{dateText}}</span>
...@@ -85,10 +125,10 @@ ...@@ -85,10 +125,10 @@
:anchor="currentDate" :anchor="currentDate"
@confirm="dateConfirm"> @confirm="dateConfirm">
<div class="typeBox"> <div class="typeBox">
<span :class="{'activeDateType':currentDateType=='day'}" @tap="dateClick('day')">日</span> <span v-show="showList['date']['day']" :class="{'activeDateType':currentDateType=='day'}" @tap="dateClick('day')">日</span>
<span v-show="allShow=='true'" :class="{'activeDateType':currentDateType=='week'}" @tap="dateClick('week')">周</span> <span v-show="showList['date']['week']" :class="{'activeDateType':currentDateType=='week'}" @tap="dateClick('week')">周</span>
<span v-show="allShow=='true'" :class="{'activeDateType':currentDateType=='month'}" @tap="dateClick('month')">月</span> <span v-show="showList['date']['month']" :class="{'activeDateType':currentDateType=='month'}" @tap="dateClick('month')">月</span>
<span v-show="allShow=='true'" :class="{'activeDateType':currentDateType=='year'}" @tap="dateClick('year')">年</span> <span v-show="showList['date']['year']" :class="{'activeDateType':currentDateType=='year'}" @tap="dateClick('year')">年</span>
</div> </div>
</awesome-picker> </awesome-picker>
</div> </div>
...@@ -101,8 +141,10 @@ ...@@ -101,8 +141,10 @@
export default{ export default{
data(){ data(){
return{ return{
showList:{},
objText:'单对象',
objId:'one',
pageType:'mall', pageType:'mall',
allShow:true,
leftImg:leftImg, leftImg:leftImg,
rightText:'保存', rightText:'保存',
navheight:0, navheight:0,
...@@ -138,10 +180,76 @@ ...@@ -138,10 +180,76 @@
storeText:'', storeText:'',
id:'', id:'',
atoken:'', atoken:'',
backUrl:'' backUrl:'',
oneGateText:'',
oneStoreText:'',
eventText:'',
eventidArr:[]
} }
}, },
onLoad: function (option) { onLoad: function (option) {
uni.getStorage({
key:'objName',
success:(res)=> {
this.objText=JSON.parse(res.data)[0];
},
complete: (res) => {
}
})
uni.getStorage({
key:'objId',
success:(res)=> {
this.objId=JSON.parse(res.data)[0];
},
complete: (res) => {
}
})
uni.getStorage({
key:'showList',
success: (res) => {
this.showList=JSON.parse(res.data);
if(this.showList.mall.obj){
if(this.objId=='one'){
this.showList.mall.moreMall=false
this.showList.mall.oneMall=true
}else{
this.showList.mall.moreMall=true
this.showList.mall.oneMall=false
}
}
if(this.showList.gate.obj){
if(this.objId=='one'){
this.showList.gate.moreMall=false
this.showList.gate.oneMall=true
this.showList.gate.moreGate=false
this.showList.gate.oneGate=true
}else{
this.showList.gate.moreMall=false
this.showList.gate.oneMall=true
this.showList.gate.moreGate=true
this.showList.gate.oneGate=false
}
}
if(this.showList.floor.obj){
if(this.objId=='one'){
this.showList.floor.oneFloor=true;
this.showList.floor.moreFloor=false;
}else{
this.showList.floor.oneFloor=false;
this.showList.floor.moreFloor=true;
}
}
if(this.showList.area.obj){
if(this.objId=='one'){
this.showList.area.oneStore=true;
this.showList.area.moreStore=false;
}else{
this.showList.area.oneStore=false;
this.showList.area.moreStore=true;
}
}
}
})
if(option.type){ if(option.type){
this.activeType=option.type; this.activeType=option.type;
} }
...@@ -153,14 +261,9 @@ ...@@ -153,14 +261,9 @@
} }
}) })
uni.getStorage({ uni.getStorage({
key:'allShow',
success: (res) => {
this.allShow=res.data;
}
})
uni.getStorage({
key:'currentDateType', key:'currentDateType',
success: (res) => { success: (res) => {
console.log(res.data)
this.currentDateType2=res.data; this.currentDateType2=res.data;
} }
}) })
...@@ -213,6 +316,26 @@ ...@@ -213,6 +316,26 @@
key:'selectGateNameArr', key:'selectGateNameArr',
success:(res)=> { success:(res)=> {
this.gateText=JSON.parse(res.data)[0]; this.gateText=JSON.parse(res.data)[0];
if(this.gateText!='全部'){
this.oneGateText=this.gateText
}
},
complete: (res) => {
}
})
uni.getStorage({
key:'eventNameArr',
success:(res)=> {
this.eventText=JSON.parse(res.data)[0];
},
complete: (res) => {
}
})
uni.getStorage({
key:'eventIdArr',
success:(res)=> {
console.log('aaa',res)
this.eventidArr=JSON.parse(res.data)[0];
}, },
complete: (res) => { complete: (res) => {
} }
...@@ -242,6 +365,9 @@ ...@@ -242,6 +365,9 @@
key:'selectStoreNameArr', key:'selectStoreNameArr',
success:(res)=> { success:(res)=> {
this.storeText=JSON.parse(res.data)[0]; this.storeText=JSON.parse(res.data)[0];
if(this.storeText!='全部'){
this.oneStoreText=this.storeText;
}
}, },
complete: (res) => { complete: (res) => {
} }
...@@ -292,6 +418,8 @@ ...@@ -292,6 +418,8 @@
}, },
method:'GET', method:'GET',
success:(res) =>{ success:(res) =>{
this.oneGateText=res.data.data[0].name;
this.oneGateId=res.data.data[0].id;
this.gateText=res.data.data[0].name; this.gateText=res.data.data[0].name;
var gateidArr=[]; var gateidArr=[];
gateidArr.push(res.data.data[0].id) gateidArr.push(res.data.data[0].id)
...@@ -301,6 +429,25 @@ ...@@ -301,6 +429,25 @@
}) })
} }
}) })
}else if(this.gateText=='全部'){
uni.request({
url:window.url+'/gates',
data:{
accountId: this.id,
mallId: this.oneAccountId,
status: 1,
type_arr: '1,3',
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.oneGateText=res.data.data[0].name;
this.oneGateId=res.data.data[0].id;
}
})
} }
if(!this.floorText){ if(!this.floorText){
uni.request({ uni.request({
...@@ -344,6 +491,7 @@ ...@@ -344,6 +491,7 @@
method:'GET', method:'GET',
success:(res) =>{ success:(res) =>{
this.storeText=res.data.data[0].name; this.storeText=res.data.data[0].name;
this.oneStoreText=res.data.data[0].name;
var storeidArr=[]; var storeidArr=[];
storeidArr.push(res.data.data[0].id) storeidArr.push(res.data.data[0].id)
uni.setStorage({ uni.setStorage({
...@@ -352,8 +500,74 @@ ...@@ -352,8 +500,74 @@
}) })
} }
}) })
}else if(this.storeText=='全部'){
uni.request({
url:window.url+'/zones',
data:{
accountId: this.id,
mallId: this.oneAccountId,
floorId:this.oneFloorId,
status: 1,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.oneStoreText=res.data.data[0].name;
}
})
} }
this.getDateData(); this.getDateData();
if(!this.showList.date.day){
if(!this.showList.date.week){
this.currentDateType='year'
this.dateClick('year')
}else{
this.currentDateType='week'
this.dateClick('week')
}
}
if(!this.eventText){
var date='';
uni.getStorage({
key:'selectDate',
success:(res)=> {
if(res.data.indexOf(',')!=-1){
date=res.data.split(',')[0];
}
},
complete: (res) => {
}
})
uni.request({
url:window.url+'/events/getEvent',
data:{
mallId: this.oneAccountId,
year: date,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
if(res.data.data[0]){
this.eventText=res.data.data[0].name;
this.eventidArr=[];
this.eventidArr.push(res.data.data[0].id)
uni.setStorage({
key:'eventIdArr',
data:JSON.stringify(eventidArr)
})
}else{
this.eventText='';
this.eventidArr=[];
}
}
})
}
}, },
computed: { computed: {
i18n() { i18n() {
...@@ -370,7 +584,7 @@ ...@@ -370,7 +584,7 @@
save(){ save(){
uni.setStorage({ uni.setStorage({
key:'currentDateType', key:'currentDateType',
data:this.currentDateType data:this.currentDateType2
}) })
var urls='' var urls=''
switch (this.backUrl) switch (this.backUrl)
...@@ -394,30 +608,79 @@ ...@@ -394,30 +608,79 @@
case 3:{ case 3:{
if(this.currentDateType2=='day'){ if(this.currentDateType2=='day'){
urls='rankReport/rankDayReport' urls='rankReport/rankDayReport'
}else if(this.currentDateType2=='week'){ }else{
urls='rankReport/rankWeekReport' urls='rankReport/rankWeekReport'
} }
} }
break; break;
case 4:{
if(this.currentDateType2=='day'){
urls='yoyReport/yoyDayReport'
}else if(this.currentDateType2=='week'){
urls='yoyReport/yoyWeekReport'
}else if(this.currentDateType2=='month'){
urls='yoyReport/yoyMonthReport'
}else if(this.currentDateType2=='year'){
urls='yoyReport/yoyYearReport'
}
}
break;
case 5:{
urls='timeFlowReport/timeFlowReport'
}
break;
case 6:{
urls='holidayReport/holidayReport'
}
break;
case 7:{
if(this.eventText==''){
uni.showToast({
icon:'none',
title:'请至少选择一项活动'
});
return
}
uni.setStorage({
key:'eventIdArr',
data:JSON.stringify(this.eventidArr)
})
urls='actObjReport/actObjReport'
}
break;
} }
uni.navigateTo({ uni.navigateTo({
url:urls+"?types="+this.activeType, url:urls+"?types="+this.activeType,
}) })
}, },
goStoreList(){ goMallList(){
uni.navigateTo({ uni.navigateTo({
url:"../list/moreMallList?url=../analysis/condition&type="+this.activeType, url:"../list/moreMallList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right', animationType: 'slide-in-right',
animationDuration: 200 animationDuration: 200
}) })
}, },
goOneStoreList(){ goObjList(){
uni.navigateTo({
url:"../list/objList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right',
animationDuration: 200
})
},
goOneMallList(){
uni.navigateTo({ uni.navigateTo({
url:"../list/oneMallList?url=../analysis/condition&type="+this.activeType, url:"../list/oneMallList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right', animationType: 'slide-in-right',
animationDuration: 200 animationDuration: 200
}) })
}, },
goEventList(){
uni.navigateTo({
url:"../list/eventList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right',
animationDuration: 200
})
},
goMoreGateList(){ goMoreGateList(){
uni.navigateTo({ uni.navigateTo({
url:"../list/moreGateList?url=../analysis/condition&type="+this.activeType, url:"../list/moreGateList?url=../analysis/condition&type="+this.activeType,
...@@ -425,6 +688,13 @@ ...@@ -425,6 +688,13 @@
animationDuration: 200 animationDuration: 200
}) })
}, },
goOneGateList(){
uni.navigateTo({
url:"../list/oneGateList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right',
animationDuration: 200
})
},
goMoreFloorList(){ goMoreFloorList(){
uni.navigateTo({ uni.navigateTo({
url:"../list/moreFloorList?url=../analysis/condition&type="+this.activeType, url:"../list/moreFloorList?url=../analysis/condition&type="+this.activeType,
...@@ -446,6 +716,13 @@ ...@@ -446,6 +716,13 @@
animationDuration: 200 animationDuration: 200
}) })
}, },
goOneStoreList(){
uni.navigateTo({
url:"../list/oneStoreList?url=../analysis/condition&type="+this.activeType,
animationType: 'slide-in-right',
animationDuration: 200
})
},
itemClick(val){ itemClick(val){
this.activeType=val; this.activeType=val;
}, },
...@@ -463,6 +740,7 @@ ...@@ -463,6 +740,7 @@
} }
break; break;
case 'week':{ case 'week':{
console.log('aaaaa')
this.dateData=this.weekData; this.dateData=this.weekData;
this.currentDate=this.currentWeek; this.currentDate=this.currentWeek;
} }
...@@ -679,7 +957,7 @@ ...@@ -679,7 +957,7 @@
data:this.date data:this.date
}) })
uni.setStorage({ uni.setStorage({
key:'currentWeek', key:'currentMonth',
data:JSON.stringify(item) data:JSON.stringify(item)
}) })
}, },
...@@ -695,9 +973,43 @@ ...@@ -695,9 +973,43 @@
data:this.date data:this.date
}) })
uni.setStorage({ uni.setStorage({
key:'currentWeek', key:'currentYear',
data:JSON.stringify(item) data:JSON.stringify(item)
}) })
if(this.showList['mall']['event']){
uni.request({
url:window.url+'/events/getEvent',
data:{
mallId: this.oneAccountId,
year: this.date.split(',')[0],
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
var nameArr=[];
if(res.data.data[0]){
this.eventText=res.data.data[0].name;
this.eventidArr=[];
this.eventidArr.push(res.data.data[0].id)
nameArr.push(res.data.data[0].name)
}else{
this.eventText='';
this.eventidArr=[];
}
uni.setStorage({
key:'eventIdArr',
data:JSON.stringify(this.eventidArr)
})
uni.setStorage({
key:'eventNameArr',
data:JSON.stringify(this.nameArr)
})
}
})
}
} }
} }
} }
......
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<v-table v-if="columns2.length>0"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns2"
:table-data="tableData2"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<circlebar :chart-data="chartData.HolidayEffect" bind-id='HolidayEffect'></circlebar>
<v-table v-if="columns.length>0"
is-horizontal-resize
style="width:100%"
:columns="columns"
:table-data="tableData"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import circlebar from '../../../components/circleBarChart'
export default{
data(){
return{
titleStr:'节假日活动对比',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
chartDatas2:{},
chartData:{},
tableData:[],
tableData2:[],
columns:[],
columns2:[],
gateId:[],
floorId:[],
storeId:[]
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
var currentYear=[]
uni.getStorage({
key:'currentYear',
success:(res)=> {
currentYear=JSON.parse(res.data);
},
complete: (res) => {
}
})
var a1=0;
if(currentYear[0].index){
a1=currentYear[0].index;
}else{
a1=currentYear[0];
}
var from='',to='';
var year =1999+a1;
from=year+'-01-01';
to=year+'-12-31';
this.date=from+','+to;
uni.getStorage({
key:'selectDate',
success:(res)=> {
if(res.data.indexOf(',')!=-1){
this.date=res.data;
}else{
uni.setStorage({
key:'selectDate',
data:this.date
})
}
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,circlebar
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:6
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='holidayeEvent';
this.keyArr=['HolidayEvent','HolidayDetail','HolidayEffect'];
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
setTabelData(){
this.columns=[];
this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item;
})
this.tableData.push(obj)
})
this.columns2=[];
this.tableData2=[];
this.chartDatas2.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns2.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns2.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas2.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas2.xaxis.data[index]]=item;
})
this.tableData2.push(obj)
})
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/holidayeEvent/mall';
if(this.reportType=='mall'){
this.orgIds=this.accountId[0]
url=window.url+'/report/holidayeEvent/mall';
data={
orgIds:this.orgIds,
startDate:this.date.split(',')[0],
endDate:this.date.split(',')[1],
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
this.chartDatas=datas.body.HolidayDetail;
this.chartDatas2=datas.body.HolidayEvent
this.setTabelData()
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div> <div>
<headerComp :title="titleStr"></headerComp> <headerComp :title="titleStr"></headerComp>
<div class="listBox"> <div class="listBox">
<view class="itemBox" v-for="item in listData" @tap="goReport(item.src)"> <view class="itemBox" v-for="item in listData" @tap="goReport(item.src,item.showList)">
<img class="icons" :src="item.iconSrc"/> <img class="icons" :src="item.iconSrc"/>
<span class="texts">{{item.text}}</span> <span class="texts">{{item.text}}</span>
<img class="arrows" :src="item.rArrow" alt=""/> <img class="arrows" :src="item.rArrow" alt=""/>
...@@ -38,17 +38,306 @@ ...@@ -38,17 +38,306 @@
text:"基础统计", text:"基础统计",
iconSrc:baseIcon, iconSrc:baseIcon,
rArrow:arrow, rArrow:arrow,
src:'staticReport/staticDayReport' src:'staticReport/staticDayReport',
showList:{
gateTab:true,
mall:{
obj:false,
oneMall:false,
moreMall:true,
event:false
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:false,
moreGate:true
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:false,
moreFloor:true
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:false,
moreStore:true
},
date:{
day:true,
week:true,
month:true,
year:true
}
}
},{ },{
text:"进出客流对比", text:"进出客流对比",
iconSrc:inout, iconSrc:inout,
rArrow:arrow, rArrow:arrow,
src:'inoutReport/inoutDayReport' src:'inoutReport/inoutDayReport',
showList:{
gateTab:true,
mall:{
obj:false,
oneMall:false,
moreMall:true,
event:false
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:false,
moreGate:true
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:false,
moreFloor:true
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:false,
moreStore:true
},
date:{
day:true,
week:false,
month:false,
year:false
}
}
},{ },{
text:"排行榜统计", text:"排行榜统计",
iconSrc:rank, iconSrc:rank,
rArrow:arrow, rArrow:arrow,
src:'rankReport/rankDayReport' src:'rankReport/rankDayReport',
showList:{
gateTab:true,
mall:{
obj:false,
oneMall:false,
moreMall:true,
event:false
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:false,
moreGate:true
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:false,
moreFloor:true
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:false,
moreStore:true
},
date:{
day:true,
week:true,
month:true,
year:true
}
}
},{
text:"同环比分析",
iconSrc:yoy,
rArrow:arrow,
src:'yoyReport/yoyDayReport',
showList:{
gateTab:true,
mall:{
obj:true,
oneMall:true,
moreMall:false,
event:false
},
gate:{
obj:true,
oneMall:true,
moreMall:false,
oneGate:true,
moreGate:false
},
floor:{
obj:true,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false
},
area:{
obj:true,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:true,
moreStore:false
},
date:{
day:true,
week:true,
month:true,
year:true
}
}
},
{
text:"时段客流分布",
iconSrc:timeFlow,
rArrow:arrow,
src:'timeFlowReport/timeFlowReport',
showList:{
gateTab:true,
mall:{
obj:false,
oneMall:true,
moreMall:false,
event:false
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:true,
moreGate:false
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:true,
moreStore:false
},
date:{
day:false,
week:true,
month:true,
year:true
}
}
},
{
text:"节假日活动对比",
iconSrc:active,
rArrow:arrow,
src:'holidayReport/holidayReport',
showList:{
gateTab:false,
mall:{
obj:false,
oneMall:true,
moreMall:false,
event:false
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:true,
moreGate:false
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:true,
moreStore:false
},
date:{
day:false,
week:false,
month:false,
year:true
}
}
},
{
text:"同节日对象对比",
iconSrc:identical,
rArrow:arrow,
src:'actObjReport/actObjReport',
showList:{
gateTab:false,
mall:{
obj:false,
oneMall:false,
moreMall:true,
event:true
},
gate:{
obj:false,
oneMall:true,
moreMall:false,
oneGate:false,
moreGate:true
},
floor:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:false,
moreFloor:true
},
area:{
obj:false,
oneMall:true,
moreMall:false,
oneFloor:true,
moreFloor:false,
oneStore:false,
moreStore:true
},
date:{
day:false,
week:false,
month:false,
year:true
}
}
} }
// ,{ // ,{
// text:"同环比分析", // text:"同环比分析",
...@@ -59,10 +348,6 @@ ...@@ -59,10 +348,6 @@
// iconSrc:mainStore, // iconSrc:mainStore,
// rArrow:arrow // rArrow:arrow
// },{ // },{
// text:"时段客流分布",
// iconSrc:timeFlow,
// rArrow:arrow
// },{
// text:"周中周末对比分析", // text:"周中周末对比分析",
// iconSrc:week, // iconSrc:week,
// rArrow:arrow // rArrow:arrow
...@@ -71,14 +356,6 @@ ...@@ -71,14 +356,6 @@
// iconSrc:weather, // iconSrc:weather,
// rArrow:arrow // rArrow:arrow
// },{ // },{
// text:"节假日活动对比",
// iconSrc:active,
// rArrow:arrow
// },{
// text:"同节日对象对比",
// iconSrc:identical,
// rArrow:arrow
// },{
// text:"进店率统计", // text:"进店率统计",
// iconSrc:storeRate, // iconSrc:storeRate,
// rArrow:arrow // rArrow:arrow
...@@ -91,6 +368,12 @@ ...@@ -91,6 +368,12 @@
} }
}, },
onLoad: function (option) { onLoad: function (option) {
uni.removeStorage({
key: 'showList',
success: function (res) {
console.log('success');
}
});
this.initDate(); this.initDate();
}, },
computed: { computed: {
...@@ -102,7 +385,11 @@ ...@@ -102,7 +385,11 @@
headerComp headerComp
}, },
methods: { methods: {
goReport(url){ goReport(url,list){
uni.setStorage({
key:'showList',
data:JSON.stringify(list)
})
uni.navigateTo({ uni.navigateTo({
url:url, url:url,
animationType: 'slide-in-right', animationType: 'slide-in-right',
......
...@@ -160,10 +160,6 @@ ...@@ -160,10 +160,6 @@
key:'backUrl', key:'backUrl',
data:2 data:2
}) })
uni.setStorage({
key:'allShow',
data:'false'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -206,14 +202,14 @@ ...@@ -206,14 +202,14 @@
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){ if(index==0){
oneArr.push({fields:[item],title:item,titleAlign:'center',rowspan:2}) oneArr.push({fields:[item],title:item,titleAlign:'center',rowspan:2})
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true}) this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{ }else{
var headArr=eval(item); var headArr=eval(item);
oneArr.push({fields:[headArr[0]+headArr[1],headArr[0]+headArr[2]],title:headArr[0],titleAlign:'center',colspan:2}); oneArr.push({fields:[headArr[0]+headArr[1],headArr[0]+headArr[2]],title:headArr[0],titleAlign:'center',colspan:2});
twoArr.push( {fields: [headArr[0]+headArr[1]], title:headArr[1], width: 20, titleAlign: 'center'}) twoArr.push( {fields: [headArr[0]+headArr[1]], title:headArr[1], width: 20, titleAlign: 'center'})
twoArr.push( {fields: [headArr[0]+headArr[2]], title:headArr[2], width: 20, titleAlign: 'center'}) twoArr.push( {fields: [headArr[0]+headArr[2]], title:headArr[2], width: 20, titleAlign: 'center'})
this.columns.push( {field: headArr[0]+headArr[1], title:headArr[1], width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: headArr[0]+headArr[1], title:headArr[1], width: 60, titleAlign: 'center',columnAlign:'center',isResize:true})
this.columns.push( {field: headArr[0]+headArr[2], title:headArr[2], width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: headArr[0]+headArr[2], title:headArr[2], width: 60, titleAlign: 'center',columnAlign:'center',isResize:true})
} }
}) })
this.titleRows.push(oneArr) this.titleRows.push(oneArr)
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:3 data:3
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:3 data:3
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -213,18 +209,16 @@ ...@@ -213,18 +209,16 @@
setTabelData(){ setTabelData(){
this.columns=[]; this.columns=[];
this.tableData=[]; this.tableData=[];
this.columns.push({field: '名称', title:'名称', width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true})
}
}) })
this.chartDatas.series.forEach((item,index)=>{ this.chartDatas.series.forEach((item,index)=>{
var obj={} var obj={}
item.data.forEach((item,index)=>{ item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item; obj[this.chartDatas.xaxis.data[index]]=item;
}) })
obj['名称']=item.name;
this.tableData.push(obj) this.tableData.push(obj)
}) })
}, },
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:1 data:1
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -215,9 +211,9 @@ ...@@ -215,9 +211,9 @@
this.tableData=[]; this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){ if(index==0){
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true}) this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{ }else{
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
} }
}) })
this.chartDatas.series.forEach((item,index)=>{ this.chartDatas.series.forEach((item,index)=>{
...@@ -242,6 +238,7 @@ ...@@ -242,6 +238,7 @@
orgIds:this.orgIds, orgIds:this.orgIds,
date:this.date, date:this.date,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='gate'){ }else if(this.reportType=='gate'){
...@@ -254,6 +251,7 @@ ...@@ -254,6 +251,7 @@
orgIds:this.orgIds, orgIds:this.orgIds,
date:this.date, date:this.date,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='floor'){ }else if(this.reportType=='floor'){
...@@ -266,6 +264,7 @@ ...@@ -266,6 +264,7 @@
orgIds:this.orgIds, orgIds:this.orgIds,
date:this.date, date:this.date,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='area'){ }else if(this.reportType=='area'){
...@@ -278,6 +277,7 @@ ...@@ -278,6 +277,7 @@
orgIds:this.orgIds, orgIds:this.orgIds,
date:this.date, date:this.date,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
} }
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:1 data:1
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -215,9 +211,9 @@ ...@@ -215,9 +211,9 @@
this.tableData=[]; this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){ if(index==0){
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true}) this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{ }else{
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
} }
}) })
console.log(JSON.stringify(this.columns)) console.log(JSON.stringify(this.columns))
...@@ -246,6 +242,7 @@ ...@@ -246,6 +242,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='gate'){ }else if(this.reportType=='gate'){
...@@ -261,6 +258,7 @@ ...@@ -261,6 +258,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='floor'){ }else if(this.reportType=='floor'){
...@@ -276,6 +274,7 @@ ...@@ -276,6 +274,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='area'){ }else if(this.reportType=='area'){
...@@ -291,6 +290,7 @@ ...@@ -291,6 +290,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
} }
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:1 data:1
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -215,9 +211,9 @@ ...@@ -215,9 +211,9 @@
this.tableData=[]; this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){ if(index==0){
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true}) this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{ }else{
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
} }
}) })
console.log(JSON.stringify(this.columns)) console.log(JSON.stringify(this.columns))
...@@ -246,6 +242,7 @@ ...@@ -246,6 +242,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='gate'){ }else if(this.reportType=='gate'){
...@@ -261,6 +258,7 @@ ...@@ -261,6 +258,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='floor'){ }else if(this.reportType=='floor'){
...@@ -276,6 +274,7 @@ ...@@ -276,6 +274,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='area'){ }else if(this.reportType=='area'){
...@@ -291,6 +290,7 @@ ...@@ -291,6 +290,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
} }
......
...@@ -173,10 +173,6 @@ ...@@ -173,10 +173,6 @@
key:'backUrl', key:'backUrl',
data:1 data:1
}) })
uni.setStorage({
key:'allShow',
data:'true'
})
uni.navigateTo({ uni.navigateTo({
url:'../condition' url:'../condition'
}) })
...@@ -215,9 +211,9 @@ ...@@ -215,9 +211,9 @@
this.tableData=[]; this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{ this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){ if(index==0){
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true}) this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{ }else{
this.columns.push( {field: item, title:item, width: 20, titleAlign: 'center',columnAlign:'center',isResize:true}) this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
} }
}) })
console.log(JSON.stringify(this.columns)) console.log(JSON.stringify(this.columns))
...@@ -246,6 +242,7 @@ ...@@ -246,6 +242,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='gate'){ }else if(this.reportType=='gate'){
...@@ -261,6 +258,7 @@ ...@@ -261,6 +258,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='floor'){ }else if(this.reportType=='floor'){
...@@ -276,6 +274,7 @@ ...@@ -276,6 +274,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
}else if(this.reportType=='area'){ }else if(this.reportType=='area'){
...@@ -291,6 +290,7 @@ ...@@ -291,6 +290,7 @@
startDate:startDate, startDate:startDate,
endDate: endDate, endDate: endDate,
chartIds:this.chartIds, chartIds:this.chartIds,
option:'TAB_TABLE',
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
} }
} }
......
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<timechart :chart-data="chartDatas.TimeThermodynamic" bind-id='TimeThermodynamic'></timechart>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import tables from '../../../components/table'
import timechart from '../../../components/timeChart'
export default{
data(){
return{
titleStr:'时段客流分布',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
gateId:[],
floorId:[],
storeId:[],
objId:'one'
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'objId',
success:(res)=>{
this.objId=JSON.parse(res.data)[0];
console.log(this.objId)
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
var currentWeek=[]
uni.getStorage({
key:'currentWeek',
success:(res)=> {
currentWeek=JSON.parse(res.data);
},
complete: (res) => {
}
})
var a1=0,a2=0,a3=0;
if(currentWeek[0].index){
a1=currentWeek[0].index;
a2=currentWeek[1].index;
a3=currentWeek[2].index;
}else{
a1=currentWeek[0];
a2=currentWeek[1];
a3=currentWeek[2];
}
var year =1999+a1;
var month=a2+1;
month=month>9?month:'0'+month;
var d = new Date();
// 该月第一天
d.setFullYear(year, month-1, 1);
var w1 = d.getDay();
// 该月天数
d.setFullYear(year, month, 0);
var dd = d.getDate();
// 第一个周一
let week1;
//当月第一周有几天
week1=7 - w1+1;
var from='',to='';
if(a3==0){
from=year+"-"+month+"-01";
var toDay=week1>9?week1:'0'+week1;
to=year+'-'+month+'-'+toDay
}else{
var fromDay=week1+7*(a3-1)+1;
var toDay=week1+7*a3;
if(fromDay>dd){
for(var i=(a3-1);i>=0;i--){
fromDay=week1+7*(i-1);
toDay=week1+7*i;
if(fromDay<=dd){
if(toDay>dd){
toDay=dd;
}
break;
}
}
}else if(fromDay<=dd&&toDay>dd){
toDay=dd;
}
fromDay=fromDay>9?fromDay:'0'+fromDay;
toDay=toDay>9?toDay:'0'+toDay;
from=year+"-"+month+"-"+fromDay;
to=year+"-"+month+"-"+toDay;
}
this.date=from+','+to;
uni.getStorage({
key:'selectDate',
success:(res)=> {
if(res.data.indexOf(',')!=-1){
this.date=res.data;
}else{
console.log(this.date)
uni.setStorage({
key:'selectDate',
data:this.date
})
}
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,tables,timechart
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:5
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='TimeThermodynamic';
this.keyArr=['TimeThermodynamic'];
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/thermodynamic/mall';
var startDate='';
var endDate='';
startDate=this.date.split(',')[0];
endDate=this.date.split(',')[1];
if(this.reportType=='mall'){
this.orgIds=this.accountId[0];
url=window.url+'/report/thermodynamic/mall';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='gate'){
this.orgIds=this.gateId[0];
url=window.url+'/report/thermodynamic/gate';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='floor'){
this.floorId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/thermodynamic/floor';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='area'){
this.storeId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/thermodynamic/zone';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartDatas=datas.body;
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<v-table v-if="columns.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns"
:table-data="tableData"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns2.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns2"
:table-data="tableData2"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns3.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns3"
:table-data="tableData3"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns4.length>0&&objId=='more'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns4"
:table-data="tableData4"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import tables from '../../../components/table'
export default{
data(){
return{
titleStr:'同环比分析',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
chartDatas2:{},
chartDatas3:{},
chartDatas4:{},
chartData:{},
tableData:[],
columns:[],
tableData2:[],
columns2:[],
tableData3:[],
columns3:[],
tableData4:[],
columns4:[],
gateId:[],
floorId:[],
storeId:[],
objId:'one'
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'objId',
success:(res)=>{
this.objId=JSON.parse(res.data)[0];
console.log(this.objId)
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
const date = new Date();
var year = date.getFullYear();
var monthIndex = date.getMonth();
var month = monthIndex+1 > 9 ? monthIndex+1 : '0' + (monthIndex+1);
const d = date.getDate();
var day= d > 9 ? d : '0' + d;
this.date=year+'-'+month+'-'+day;
uni.getStorage({
key:'selectDate',
success:(res)=> {
this.date=res.data
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,tables
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:4
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='DayYoYMoM';
if(this.objId=='one'){
this.keyArr=['15DayCountingYoY','DayCountingYoY','DayAddYoY'];
}else{
this.keyArr=['moreObjectTable'];
}
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
setTabelData(){
if(this.objId=='one'){
this.columns=[];
this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item;
})
this.tableData.push(obj)
})
this.columns2=[];
this.tableData2=[];
this.chartDatas2.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns2.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns2.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas2.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas2.xaxis.data[index]]=item;
})
this.tableData2.push(obj)
})
this.columns3=[];
this.tableData3=[];
this.chartDatas3.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns3.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns3.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas3.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas3.xaxis.data[index]]=item;
})
this.tableData3.push(obj)
})
}else{
this.columns4=[];
this.tableData4=[];
this.chartDatas4.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns4.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns4.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas4.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas4.xaxis.data[index]]=item;
})
this.tableData4.push(obj)
})
}
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/yoyOrMom/day/mall';
var startDate='';
var endDate='';
startDate=this.date;
endDate=this.date;
if(this.reportType=='mall'){
if(this.objId=='one'){
this.orgIds=this.accountId[0];
}else{
this.accountId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/day/mall';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='gate'){
if(this.objId=='one'){
this.orgIds=this.gateId[0];
}else{
this.gateId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/day/gate';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='floor'){
this.floorId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/day/floor';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='area'){
this.storeId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/day/zone';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
if(this.objId=='one'){
this.chartDatas=datas.body['15DayCountingYoY'];
this.chartDatas2=datas.body['DayCountingYoY'];
this.chartDatas3=datas.body['DayAddYoY'];
}else{
this.chartDatas4=datas.body['moreObjectTable'];
}
this.setTabelData()
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<v-table v-if="columns.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns"
:table-data="tableData"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns2.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns2"
:table-data="tableData2"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns3.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns3"
:table-data="tableData3"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns4.length>0&&objId=='more'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns4"
:table-data="tableData4"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import tables from '../../../components/table'
export default{
data(){
return{
titleStr:'同环比分析',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
chartDatas2:{},
chartDatas3:{},
chartDatas4:{},
chartData:{},
tableData:[],
columns:[],
tableData2:[],
columns2:[],
tableData3:[],
columns3:[],
tableData4:[],
columns4:[],
gateId:[],
floorId:[],
storeId:[],
objId:'one'
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'objId',
success:(res)=>{
this.objId=JSON.parse(res.data)[0];
console.log(this.objId)
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
const date = new Date();
var year = date.getFullYear();
var monthIndex = date.getMonth();
var month = monthIndex+1 > 9 ? monthIndex+1 : '0' + (monthIndex+1);
const d = date.getDate();
var day= d > 9 ? d : '0' + d;
this.date=year+'-'+month+'-'+day;
uni.getStorage({
key:'selectDate',
success:(res)=> {
this.date=res.data
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,tables
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:4
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='MonthYoYMoM';
if(this.objId=='one'){
this.keyArr=['Near3MonthYoY','WeekDayOrEndYoY','DayOfMonthYoY'];
}else{
this.keyArr=['moreObjectTable'];
}
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
setTabelData(){
if(this.objId=='one'){
this.columns=[];
this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item;
})
this.tableData.push(obj)
})
this.columns2=[];
this.tableData2=[];
this.chartDatas2.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns2.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns2.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas2.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas2.xaxis.data[index]]=item;
})
this.tableData2.push(obj)
})
this.columns3=[];
this.tableData3=[];
this.chartDatas3.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns3.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns3.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas3.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas3.xaxis.data[index]]=item;
})
this.tableData3.push(obj)
})
}else{
this.columns4=[];
this.tableData4=[];
this.chartDatas4.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns4.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns4.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas4.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas4.xaxis.data[index]]=item;
})
this.tableData4.push(obj)
})
}
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/yoyOrMom/month/mall';
var startDate='';
var endDate='';
startDate=this.date.split(',')[0];
endDate=this.date.split(',')[1];
if(this.reportType=='mall'){
if(this.objId=='one'){
this.orgIds=this.accountId[0];
}else{
this.accountId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/month/mall';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='gate'){
if(this.objId=='one'){
this.orgIds=this.gateId[0];
}else{
this.gateId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/month/gate';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='floor'){
this.floorId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/month/floor';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='area'){
this.storeId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/month/zone';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
if(this.objId=='one'){
this.chartDatas=datas.body['Near3MonthYoY'];
this.chartDatas2=datas.body['DayOfMonthYoY'];
this.chartDatas3=datas.body['WeekDayOrEndYoY'];
}else{
this.chartDatas4=datas.body['moreObjectTable'];
}
this.setTabelData()
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<v-table v-if="columns.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns"
:table-data="tableData"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns2.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns2"
:table-data="tableData2"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns3.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns3"
:table-data="tableData3"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns4.length>0&&objId=='more'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns4"
:table-data="tableData4"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import tables from '../../../components/table'
export default{
data(){
return{
titleStr:'同环比分析',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
chartDatas2:{},
chartDatas3:{},
chartDatas4:{},
chartData:{},
tableData:[],
columns:[],
tableData2:[],
columns2:[],
tableData3:[],
columns3:[],
tableData4:[],
columns4:[],
gateId:[],
floorId:[],
storeId:[],
objId:'one'
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'objId',
success:(res)=>{
this.objId=JSON.parse(res.data)[0];
console.log(this.objId)
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
const date = new Date();
var year = date.getFullYear();
var monthIndex = date.getMonth();
var month = monthIndex+1 > 9 ? monthIndex+1 : '0' + (monthIndex+1);
const d = date.getDate();
var day= d > 9 ? d : '0' + d;
this.date=year+'-'+month+'-'+day;
uni.getStorage({
key:'selectDate',
success:(res)=> {
this.date=res.data
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,tables
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:4
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='WeekYoYMoM';
if(this.objId=='one'){
this.keyArr=['Near3WeekYoY','DayOfWeekYoY','WeekDayOrEndYoY'];
}else{
this.keyArr=['moreObjectTable'];
}
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
setTabelData(){
if(this.objId=='one'){
this.columns=[];
this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item;
})
this.tableData.push(obj)
})
this.columns2=[];
this.tableData2=[];
this.chartDatas2.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns2.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns2.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas2.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas2.xaxis.data[index]]=item;
})
this.tableData2.push(obj)
})
this.columns3=[];
this.tableData3=[];
this.chartDatas3.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns3.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns3.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas3.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas3.xaxis.data[index]]=item;
})
this.tableData3.push(obj)
})
}else{
this.columns4=[];
this.tableData4=[];
this.chartDatas4.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns4.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns4.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas4.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas4.xaxis.data[index]]=item;
})
this.tableData4.push(obj)
})
}
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/yoyOrMom/week/mall';
var startDate='';
var endDate='';
startDate=this.date.split(',')[0];
endDate=this.date.split(',')[1];
if(this.reportType=='mall'){
if(this.objId=='one'){
this.orgIds=this.accountId[0];
}else{
this.accountId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/week/mall';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='gate'){
if(this.objId=='one'){
this.orgIds=this.gateId[0];
}else{
this.gateId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/week/gate';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='floor'){
this.floorId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/week/floor';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='area'){
this.storeId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/week/zone';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
if(this.objId=='one'){
this.chartDatas=datas.body['Near3WeekYoY'];
this.chartDatas2=datas.body['DayOfWeekYoY'];
this.chartDatas3=datas.body['WeekDayOrEndYoY'];
}else{
this.chartDatas4=datas.body['moreObjectTable'];
}
this.setTabelData()
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
<template>
<div>
<headerComp :leftImgSrc="leftImg" :title="titleStr" :rightImgSrc="rightImg" @leftClick="backFun" @rightClick="conditionFun"></headerComp>
<div style="height: 18.11upx;"></div>
<v-table v-if="columns.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns"
:table-data="tableData"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns2.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns2"
:table-data="tableData2"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns3.length>0&&objId=='one'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns3"
:table-data="tableData3"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
<v-table v-if="columns4.length>0&&objId=='more'"
is-horizontal-resize
style="width:100%;margin-bottom: 16.3upx;"
:columns="columns4"
:table-data="tableData4"
row-hover-color="#eee"
row-click-color="#edf7ff"
:height='500'
></v-table>
</div>
</template>
<script>
import headerComp from '../../../components/header'
import backArrow from '../../../static/header/backArrow.png'
import other from '../../../static/header/other.png'
import tables from '../../../components/table'
export default{
data(){
return{
titleStr:'同环比分析',
leftImg:backArrow,
rightImg:other,
atoken:'',
keyArr:[],
chartIds:'',
reportType:'mall',
accountId:[],
orgIds:'',
date:'',
isDay:true,
isHour:false,
isMin:false,
chartDatas:{},
chartDatas2:{},
chartDatas3:{},
chartDatas4:{},
chartData:{},
tableData:[],
columns:[],
tableData2:[],
columns2:[],
tableData3:[],
columns3:[],
tableData4:[],
columns4:[],
gateId:[],
floorId:[],
storeId:[],
objId:'one'
}
},
onLoad: function (option) {
if(option.types){
this.reportType=option.types;
}
uni.getStorage({
key:'objId',
success:(res)=>{
this.objId=JSON.parse(res.data)[0];
console.log(this.objId)
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
uni.getStorage({
key:'accountList',
success:(res)=>{
if(res.data){
var list=JSON.parse(res.data);
list.forEach((item,index)=>{
if(index==0){
this.accountId.push(item.id)
}
})
}
}
})
uni.getStorage({
key:'selectAccountIdArr',
success:(res)=> {
this.accountId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectGateIdArr',
success:(res)=> {
this.gateId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectFloorIdArr',
success:(res)=> {
this.floorId=JSON.parse(res.data);
},
complete: (res) => {
}
})
uni.getStorage({
key:'selectStoreIdArr',
success:(res)=> {
this.storeId=JSON.parse(res.data);
},
complete: (res) => {
}
})
const date = new Date();
var year = date.getFullYear();
var monthIndex = date.getMonth();
var month = monthIndex+1 > 9 ? monthIndex+1 : '0' + (monthIndex+1);
const d = date.getDate();
var day= d > 9 ? d : '0' + d;
this.date=year+'-'+month+'-'+day;
uni.getStorage({
key:'selectDate',
success:(res)=> {
this.date=res.data
},
complete: (res) => {
}
})
this.getReportKey();
},
computed: {
i18n() {
return this.$t("index")
}
},
components:{
headerComp,tables
},
methods: {
backFun(){
uni.reLaunch({
url:"../index",
})
},
conditionFun(){
uni.setStorage({
key:'backUrl',
data:4
})
uni.navigateTo({
url:'../condition'
})
},
getReportKey(){
var report='YearYoYMoM';
if(this.objId=='one'){
this.keyArr=['Near3YearYoY','MonthOfYearYoY','WeekDayOrEndYoY'];
}else{
this.keyArr=['moreObjectTable'];
}
uni.showLoading({
title: '加载中'
});
uni.request({
url:window.url+'/reportCharts',
data:{
report:report,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.chartIds='';
res.data.data.forEach(item=>{
if(this.keyArr.indexOf(item.key)!='-1'){
this.chartIds+=item.id+','
}
})
this.chartIds=this.chartIds.substring(0,this.chartIds.length-1);
this.getChartData();
}
})
},
setTabelData(){
if(this.objId=='one'){
this.columns=[];
this.tableData=[];
this.chartDatas.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas.xaxis.data[index]]=item;
})
this.tableData.push(obj)
})
this.columns2=[];
this.tableData2=[];
this.chartDatas2.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns2.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns2.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas2.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas2.xaxis.data[index]]=item;
})
this.tableData2.push(obj)
})
this.columns3=[];
this.tableData3=[];
this.chartDatas3.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns3.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns3.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas3.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas3.xaxis.data[index]]=item;
})
this.tableData3.push(obj)
})
}else{
this.columns4=[];
this.tableData4=[];
this.chartDatas4.xaxis.data.forEach((item,index)=>{
if(index==0){
this.columns4.push( {field: item, title:item, width: 100, titleAlign: 'center',columnAlign:'center',isResize:true,isFrozen: true})
}else{
this.columns4.push( {field: item, title:item, width: 80, titleAlign: 'center',columnAlign:'center',isResize:true})
}
})
this.chartDatas4.series.forEach((item,index)=>{
var obj={}
item.data.forEach((item,index)=>{
obj[this.chartDatas4.xaxis.data[index]]=item;
})
this.tableData4.push(obj)
})
}
},
getChartData(){
this.orgIds=''
var data={}
var url=window.url+'/report/yoyOrMom/year/mall';
var startDate='';
var endDate='';
startDate=this.date.split(',')[0];
endDate=this.date.split(',')[1];
if(this.reportType=='mall'){
if(this.objId=='one'){
this.orgIds=this.accountId[0];
}else{
this.accountId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/year/mall';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='gate'){
if(this.objId=='one'){
this.orgIds=this.gateId[0];
}else{
this.gateId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
}
url=window.url+'/report/yoyOrMom/year/gate';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='floor'){
this.floorId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/year/floor';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}else if(this.reportType=='area'){
this.storeId.forEach(item=>{
this.orgIds+=item+','
})
this.orgIds=this.orgIds.substring(0,this.orgIds.length-1)
url=window.url+'/report/yoyOrMom/year/zone';
data={
orgIds:this.orgIds,
startDate:startDate,
endDate:endDate,
chartIds:this.chartIds,
kpiType:'TRAFFIC',
_t:Date.parse(new Date())/1000
}
}
uni.request({
url:url,
header: {
'Authorization': this.atoken //自定义请求头信息
},
data:data,
method:'GET',
success:(res) =>{
uni.hideLoading()
var datas=res.data.data;
this.chartData=datas.body;
if(this.objId=='one'){
this.chartDatas=datas.body['Near3YearYoY'];
this.chartDatas2=datas.body['MonthOfYearYoY'];
this.chartDatas3=datas.body['WeekDayOrEndYoY'];
}else{
this.chartDatas4=datas.body['moreObjectTable'];
}
this.setTabelData()
}
})
}
},
}
</script>
<style>
.selectBox{
width: 646.73upx;
height: 61.59upx;
font-size:21.74upx;
line-height: 61.59upx;
display: flex;
flex-direction: row;
margin: 0 auto;
margin-bottom: 18.11upx;
}
.sItem{
flex: 1;
background:#FFFFFF;
text-align: center;
cursor: pointer;
border-right:1px solid #DBDBDB ;
}
.sItem:last-of-type{
border-right:none
}
.checkedItem{
background: #0069FF;
color: #FFFFFF;
border: #0069FF;
}
</style>
<template>
<view>
<headerComp :leftImgSrc="leftSrc" @leftClick="backClick" :title="titleStr"></headerComp>
<searchBox @handleEvent="searchFun"></searchBox>
<view class="list">
<view class="listItem" @tap="itemFun(item)" v-for="item in list">
<text>{{item.name}}</text>
</view>
</view>
<!-- <uni-list>
<uni-list-item :title="this.$t('index').allStore" @click="selectStore(id)"></uni-list-item>
<uni-list-item :title="item.name" @click="selectStore(item.id,item.name)" v-for="item in list"></uni-list-item>
</uni-list> -->
</view>
</template>
<script>
import headerComp from '../../components/header'
import searchBox from '../../components/search'
export default{
data(){
return{
aa:"aa",
leftSrc:'../../static/header/backArrow.png',
titleStr:this.$t('index').storeSelect,
id:'',
atoken:'',
list:[],
allList:[],
accountName:'',
url:'',
selectSrc:'../../static/list/select.png',
unSelectSrc:'../../static/list/unselect.png',
selectIdArr:[],
selectNameArr:[],
type:'',
showList:{}
}
},
onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数
// this.atoken=option.atoken;
// this.id=option.accountId;
this.url=option.url;
this.type=option.type;
uni.getStorage({
key:'showList',
success:(res)=>{
this.showList=JSON.parse(res.data)
}
})
uni.getStorage({
key:'accountName',
success:(res)=>{
this.accountName=res.data;
}
})
uni.getStorage({
key:'accountId',
success:(res)=>{
this.id=res.data;
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
this.getListData();
},
computed: {
i18n(){
return this.$t('index')
}
},
components:{
headerComp,searchBox
},
methods: {
searchFun(val){
this.list=[];
this.allList.forEach(item=>{
if(item.name.indexOf(val)!=-1){
this.list.push(item)
}
})
},
itemFun(item){
this.selectIdArr=[];
this.selectNameArr=[]
this.selectNameArr.push(item.name)
this.selectIdArr.push(item.id)
this.confirmFun();
},
confirmFun(){
uni.setStorage({
key:'eventIdArr',
data:JSON.stringify(this.selectIdArr)
})
uni.setStorage({
key:'eventNameArr',
data:JSON.stringify(this.selectNameArr)
})
uni.reLaunch({
url:this.url+'?type='+this.type,
})
},
getListData(){
var mallid='';
var year=''
uni.getStorage({
key:"selectAccountIdArr",
success: (res) => {
mallid=JSON.parse(res.data)[0];
}
})
uni.getStorage({
key:"selectDate",
success: (res) => {
year=res.data.split(',')[0];
}
})
uni.request({
url:window.url+'/events/getEvent',
data:{
mallId:mallid,
year:year,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.allList=JSON.parse(JSON.stringify(res.data.data));
this.list=JSON.parse(JSON.stringify(res.data.data));
}
})
},
backClick() {
uni.navigateBack({
delta:1
})
}
},
}
</script>
<style>
.listItem{
border-bottom: 1px solid #979797;
height: 72.46upx;
line-height: 72.46upx;
font-size: 25.37upx;
background: #FFFFFF;
position: relative;
}
.listItem>image{
width: 28.99upx;
height: 28.99upx;
position: absolute;
top:23.55upx;
left: 25.36upx;
}
.listItem text{
margin-left: 77.89upx;
}
</style>
<template>
<view>
<headerComp :leftImgSrc="leftSrc" @leftClick="backClick" :title="titleStr"></headerComp>
<searchBox @handleEvent="searchFun"></searchBox>
<view class="list">
<view class="listItem" @tap="itemFun(item)" v-for="item in list">
<text>{{item.name}}</text>
</view>
</view>
<!-- <uni-list>
<uni-list-item :title="this.$t('index').allStore" @click="selectStore(id)"></uni-list-item>
<uni-list-item :title="item.name" @click="selectStore(item.id,item.name)" v-for="item in list"></uni-list-item>
</uni-list> -->
</view>
</template>
<script>
import headerComp from '../../components/header'
import searchBox from '../../components/search'
export default{
data(){
return{
aa:"aa",
leftSrc:'../../static/header/backArrow.png',
titleStr:'选择对象',
id:'',
atoken:'',
list:[],
allList:[],
accountName:'',
url:'',
selectSrc:'../../static/list/select.png',
unSelectSrc:'../../static/list/unselect.png',
selectIdArr:[],
selectNameArr:[],
type:''
}
},
onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数
// this.atoken=option.atoken;
// this.id=option.accountId;
this.url=option.url;
this.type=option.type;
this.getListData();
},
computed: {
i18n(){
return this.$t('index')
}
},
components:{
headerComp,searchBox
},
methods: {
searchFun(val){
this.list=[];
this.allList.forEach(item=>{
if(item.name.indexOf(val)!=-1){
this.list.push(item)
}
})
},
itemFun(item){
this.selectIdArr=[];
this.selectNameArr=[]
this.selectNameArr.push(item.name)
this.selectIdArr.push(item.id)
this.confirmFun();
},
confirmFun(){
uni.setStorage({
key:'objId',
data:JSON.stringify(this.selectIdArr)
})
uni.setStorage({
key:'objName',
data:JSON.stringify(this.selectNameArr)
})
uni.reLaunch({
url:this.url+'?type='+this.type,
})
},
getListData(){
this.allList=[{
name:"单对象",
id:"one"
},{
name:"多对象",
id:"more"
}];
this.list=[{
name:"单对象",
id:"one"
},{
name:"多对象",
id:"more"
}];
},
backClick() {
uni.navigateBack({
delta:1
})
}
},
}
</script>
<style>
.listItem{
border-bottom: 1px solid #979797;
height: 72.46upx;
line-height: 72.46upx;
font-size: 25.37upx;
background: #FFFFFF;
position: relative;
}
.listItem>image{
width: 28.99upx;
height: 28.99upx;
position: absolute;
top:23.55upx;
left: 25.36upx;
}
.listItem text{
margin-left: 77.89upx;
}
</style>
...@@ -34,7 +34,8 @@ ...@@ -34,7 +34,8 @@
unSelectSrc:'../../static/list/unselect.png', unSelectSrc:'../../static/list/unselect.png',
selectIdArr:[], selectIdArr:[],
selectNameArr:[], selectNameArr:[],
type:'' type:'',
showList:{}
} }
}, },
onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数 onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数
...@@ -43,6 +44,12 @@ ...@@ -43,6 +44,12 @@
this.url=option.url; this.url=option.url;
this.type=option.type; this.type=option.type;
uni.getStorage({ uni.getStorage({
key:'showList',
success:(res)=>{
this.showList=JSON.parse(res.data)
}
})
uni.getStorage({
key:'accountName', key:'accountName',
success:(res)=>{ success:(res)=>{
this.accountName=res.data; this.accountName=res.data;
...@@ -106,14 +113,6 @@ ...@@ -106,14 +113,6 @@
}) })
}, },
getListData(){ getListData(){
uni.getStorage({
key:'accountList',
success:(res)=>{
this.allList=JSON.parse(res.data);
this.list=JSON.parse(res.data);
}
})
var mallid=''; var mallid='';
uni.getStorage({ uni.getStorage({
key:"selectAccountIdArr", key:"selectAccountIdArr",
...@@ -135,16 +134,17 @@ ...@@ -135,16 +134,17 @@
method:'GET', method:'GET',
success:(res) =>{ success:(res) =>{
this.allList=JSON.parse(JSON.stringify(res.data.data)); this.allList=JSON.parse(JSON.stringify(res.data.data));
this.list=JSON.parse(JSON.stringify(res.data.data));
if(!this.showList['floor']['obj']){
this.allList.unshift({ this.allList.unshift({
name:'全部', name:'全部',
id:'all'
}) })
this.list=JSON.parse(JSON.stringify(res.data.data));
this.list.unshift({ this.list.unshift({
name:'全部', name:'全部',
id:'all' id:'all'
}) })
} }
}
}) })
}, },
backClick() { backClick() {
......
<template>
<view>
<headerComp :leftImgSrc="leftSrc" @leftClick="backClick" :title="titleStr"></headerComp>
<searchBox @handleEvent="searchFun"></searchBox>
<view class="list">
<view class="listItem" @tap="itemFun(item)" v-for="item in list">
<text>{{item.name}}</text>
</view>
</view>
<!-- <uni-list>
<uni-list-item :title="this.$t('index').allStore" @click="selectStore(id)"></uni-list-item>
<uni-list-item :title="item.name" @click="selectStore(item.id,item.name)" v-for="item in list"></uni-list-item>
</uni-list> -->
</view>
</template>
<script>
import headerComp from '../../components/header'
import searchBox from '../../components/search'
export default{
data(){
return{
aa:"aa",
leftSrc:'../../static/header/backArrow.png',
titleStr:this.$t('index').storeSelect,
id:'',
atoken:'',
list:[],
allList:[],
accountName:'',
url:'',
selectSrc:'../../static/list/select.png',
unSelectSrc:'../../static/list/unselect.png',
selectIdArr:[],
selectNameArr:[],
type:''
}
},
onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数
// this.atoken=option.atoken;
// this.id=option.accountId;
this.url=option.url;
this.type=option.type;
uni.getStorage({
key:'accountName',
success:(res)=>{
this.accountName=res.data;
}
})
uni.getStorage({
key:'accountId',
success:(res)=>{
this.id=res.data;
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
this.getListData();
},
computed: {
i18n(){
return this.$t('index')
}
},
components:{
headerComp,searchBox
},
methods: {
searchFun(val){
this.list=[];
this.allList.forEach(item=>{
if(item.name.indexOf(val)!=-1){
this.list.push(item)
}
})
},
itemFun(item){
this.selectIdArr=[];
this.selectNameArr=[]
this.selectNameArr.push(item.name)
this.selectIdArr.push(item.id)
this.confirmFun();
},
confirmFun(){
uni.removeStorage({
key: 'selectStoreNameArr',
success: function (res) {
console.log('success');
}
});
uni.setStorage({
key:'selectGateIdArr',
data:JSON.stringify(this.selectIdArr)
})
uni.setStorage({
key:'selectGateNameArr',
data:JSON.stringify(this.selectNameArr)
})
uni.reLaunch({
url:this.url+'?type='+this.type,
})
},
getListData(){
uni.getStorage({
key:'accountList',
success:(res)=>{
this.allList=JSON.parse(res.data);
this.list=JSON.parse(res.data);
}
})
var mallid='';
uni.getStorage({
key:"selectAccountIdArr",
success: (res) => {
mallid=JSON.parse(res.data)[0];
}
})
uni.request({
url:window.url+'/gates',
data:{
accountId: this.id,
mallId:mallid,
status: 1,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.allList=JSON.parse(JSON.stringify(res.data.data));
this.list=JSON.parse(JSON.stringify(res.data.data));
if(!this.showList['gate']['obj']){
this.allList.unshift({
name:'全部',
})
this.list.unshift({
name:'全部',
id:'all'
})
}
}
})
},
backClick() {
uni.navigateBack({
delta:1
})
}
},
}
</script>
<style>
.listItem{
border-bottom: 1px solid #979797;
height: 72.46upx;
line-height: 72.46upx;
font-size: 25.37upx;
background: #FFFFFF;
position: relative;
}
.listItem>image{
width: 28.99upx;
height: 28.99upx;
position: absolute;
top:23.55upx;
left: 25.36upx;
}
.listItem text{
margin-left: 77.89upx;
}
</style>
<template>
<view>
<headerComp :leftImgSrc="leftSrc" @leftClick="backClick" :title="titleStr"></headerComp>
<searchBox @handleEvent="searchFun"></searchBox>
<view class="list">
<view class="listItem" @tap="itemFun(item)" v-for="item in list">
<text>{{item.name}}</text>
</view>
</view>
<!-- <uni-list>
<uni-list-item :title="this.$t('index').allStore" @click="selectStore(id)"></uni-list-item>
<uni-list-item :title="item.name" @click="selectStore(item.id,item.name)" v-for="item in list"></uni-list-item>
</uni-list> -->
</view>
</template>
<script>
import headerComp from '../../components/header'
import searchBox from '../../components/search'
export default{
data(){
return{
aa:"aa",
leftSrc:'../../static/header/backArrow.png',
titleStr:this.$t('index').storeSelect,
id:'',
atoken:'',
list:[],
allList:[],
accountName:'',
url:'',
selectSrc:'../../static/list/select.png',
unSelectSrc:'../../static/list/unselect.png',
selectIdArr:[],
selectNameArr:[],
type:'',
showList:{}
}
},
onLoad: function (option) { //option为object类型,会序列化上个页面传递的参数
// this.atoken=option.atoken;
// this.id=option.accountId;
this.url=option.url;
this.type=option.type;
uni.getStorage({
key:'showList',
success:(res)=>{
this.showList=JSON.parse(res.data)
}
})
uni.getStorage({
key:'accountName',
success:(res)=>{
this.accountName=res.data;
}
})
uni.getStorage({
key:'accountId',
success:(res)=>{
this.id=res.data;
}
})
uni.getStorage({
key:'atoken',
success:(res)=>{
this.atoken=res.data;
}
})
this.getListData();
},
computed: {
i18n(){
return this.$t('index')
}
},
components:{
headerComp,searchBox
},
methods: {
searchFun(val){
this.list=[];
this.allList.forEach(item=>{
if(item.name.indexOf(val)!=-1){
this.list.push(item)
}
})
},
itemFun(item){
this.selectIdArr=[];
this.selectNameArr=[]
this.selectNameArr.push(item.name)
this.selectIdArr.push(item.id)
this.confirmFun();
},
confirmFun(){
uni.setStorage({
key:'selectStoreIdArr',
data:JSON.stringify(this.selectIdArr)
})
uni.setStorage({
key:'selectStoreNameArr',
data:JSON.stringify(this.selectNameArr)
})
uni.reLaunch({
url:this.url+'?type='+this.type,
})
},
getListData(){
uni.getStorage({
key:'accountList',
success:(res)=>{
this.allList=JSON.parse(res.data);
this.list=JSON.parse(res.data);
}
})
var mallid='';
uni.getStorage({
key:"selectAccountIdArr",
success: (res) => {
mallid=JSON.parse(res.data)[0];
}
})
var floorid='';
uni.getStorage({
key:"selectFloorIdArr",
success: (res) => {
floorid=JSON.parse(res.data)[0];
}
})
uni.request({
url:window.url+'/zones',
data:{
accountId: this.id,
mallId:mallid,
floorId:floorid,
status: 1,
_t:Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
this.allList=JSON.parse(JSON.stringify(res.data.data));
this.list=JSON.parse(JSON.stringify(res.data.data));
}
})
},
backClick() {
uni.navigateBack({
delta:1
})
}
},
}
</script>
<style>
.listItem{
border-bottom: 1px solid #979797;
height: 72.46upx;
line-height: 72.46upx;
font-size: 25.37upx;
background: #FFFFFF;
position: relative;
}
.listItem>image{
width: 28.99upx;
height: 28.99upx;
position: absolute;
top:23.55upx;
left: 25.36upx;
}
.listItem text{
margin-left: 77.89upx;
}
</style>
...@@ -29,6 +29,20 @@ ...@@ -29,6 +29,20 @@
} }
}, },
onLoad() { onLoad() {
console.log('aaa')
uni.getStorage({
key:'user',
success: (res) => {
console.log(res)
this.username=res.data;
}
})
uni.getStorage({
key:'pwd',
success: (res) => {
this.password=res.data;
}
})
this.getDate() this.getDate()
this.dateArr() this.dateArr()
}, },
...@@ -183,16 +197,34 @@ ...@@ -183,16 +197,34 @@
password:this.password password:this.password
}, },
method:'POST', method:'POST',
success(res) { success:(res)=> {
uni.hideLoading(); uni.hideLoading();
var data=res.data; var data=res.data;
if(data.code==200){ if(data.code==200){
Object.keys(window.localStorage).forEach(item => {
if(item!='user'&&item!='pwd'){
uni.removeStorage({
key: item,
success: function (res) {
}
});
}
})
uni.setStorage({
key:'user',
data:this.username
})
uni.setStorage({
key:'pwd',
data:this.password
})
this.atoken=data.data.atoken; this.atoken=data.data.atoken;
this.id=data.data.user.accountId this.id=data.data.user.accountId
uni.request({ uni.request({
url:window.url+'/malls', url:window.url+'/malls',
data:{ data:{
accountId:this.id, accountId:this.id,
status:1,
_t:Date.parse(new Date())/1000 _t:Date.parse(new Date())/1000
}, },
header: { header: {
......
...@@ -61,7 +61,13 @@ ...@@ -61,7 +61,13 @@
}, },
clearCache() { clearCache() {
Object.keys(window.localStorage).forEach(item => { Object.keys(window.localStorage).forEach(item => {
window.localStorage.removeItem(item) if(item!='user'&&item!='pwd'){
uni.removeStorage({
key: item,
success: function (res) {
}
});
}
}) })
} }
}, },
......
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><title>智慧商业6.0</title><link rel=stylesheet href=https://unpkg.com/vue-easytable/umd/css/index.css><script src=https://unpkg.com/vue/dist/vue.js></script><script src=https://unpkg.com/vue-easytable/umd/js/index.js></script><script src=static/common.js></script><script>document.addEventListener('DOMContentLoaded', function() { <!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><title>智慧商业6.0</title><link rel=stylesheet href=https://unpkg.com/vue-easytable/umd/css/index.css><script src=https://unpkg.com/vue/dist/vue.js></script><script src=https://unpkg.com/vue-easytable/umd/js/index.js></script><script src=static/common.js></script><script>document.addEventListener('DOMContentLoaded', function() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px' document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})</script><link rel=stylesheet href=/appweb/static/index.css><link href=/appweb/static/js/pages-analysis-condition.c6bad10e.js rel=prefetch><link href=/appweb/static/js/pages-analysis-index.58b5238c.js rel=prefetch><link href=/appweb/static/js/pages-analysis-inoutReport-inoutDayReport.d77c4e32.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankDayReport.06c1c5aa.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankWeekReport.273c4132.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticDayReport.9787e524.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticMonthReport.9cc82807.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticWeekReport.cc1b9218.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticYearReport.8892aab3.js rel=prefetch><link href=/appweb/static/js/pages-index-index.411e1229.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList.b8902ab3.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList~pages-list-mallList.f83c189c.js rel=prefetch><link href=/appweb/static/js/pages-list-mallList.eff90261.js rel=prefetch><link href=/appweb/static/js/pages-list-moreFloorList.6aed2968.js rel=prefetch><link href=/appweb/static/js/pages-list-moreGateList.ade2178b.js rel=prefetch><link href=/appweb/static/js/pages-list-moreMallList.7753462d.js rel=prefetch><link href=/appweb/static/js/pages-list-moreStoreList.80136219.js rel=prefetch><link href=/appweb/static/js/pages-list-oneFloorList.6bfb7f76.js rel=prefetch><link href=/appweb/static/js/pages-list-oneMallList.95181e70.js rel=prefetch><link href=/appweb/static/js/pages-login-login.e654a8cd.js rel=prefetch><link href=/appweb/static/js/pages-passenger-index.36b2f28d.js rel=prefetch><link href=/appweb/static/js/pages-profile-index.5daf406b.js rel=prefetch><link href=/appweb/static/js/chunk-vendors.895813db.js rel=preload as=script><link href=/appweb/static/js/index.f6621918.js rel=preload as=script></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/appweb/static/js/chunk-vendors.895813db.js></script><script src=/appweb/static/js/index.f6621918.js></script></body></html>
\ No newline at end of file \ No newline at end of file
})</script><link rel=stylesheet href=/appweb/static/index.css><link href=/appweb/static/js/pages-analysis-condition.e9bd80f2.js rel=prefetch><link href=/appweb/static/js/pages-analysis-index.58b5238c.js rel=prefetch><link href=/appweb/static/js/pages-analysis-inoutReport-inoutDayReport.d77c4e32.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankDayReport.06c1c5aa.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankWeekReport.273c4132.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticDayReport.9787e524.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticMonthReport.9cc82807.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticWeekReport.cc1b9218.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticYearReport.8892aab3.js rel=prefetch><link href=/appweb/static/js/pages-index-index.411e1229.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList.b8902ab3.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList~pages-list-mallList.f83c189c.js rel=prefetch><link href=/appweb/static/js/pages-list-mallList.eff90261.js rel=prefetch><link href=/appweb/static/js/pages-list-moreFloorList.6aed2968.js rel=prefetch><link href=/appweb/static/js/pages-list-moreGateList.ade2178b.js rel=prefetch><link href=/appweb/static/js/pages-list-moreMallList.7753462d.js rel=prefetch><link href=/appweb/static/js/pages-list-moreStoreList.80136219.js rel=prefetch><link href=/appweb/static/js/pages-list-oneFloorList.6bfb7f76.js rel=prefetch><link href=/appweb/static/js/pages-list-oneMallList.95181e70.js rel=prefetch><link href=/appweb/static/js/pages-login-login.e654a8cd.js rel=prefetch><link href=/appweb/static/js/pages-passenger-index.36b2f28d.js rel=prefetch><link href=/appweb/static/js/pages-profile-index.aded5936.js rel=prefetch><link href=/appweb/static/js/chunk-vendors.895813db.js rel=preload as=script><link href=/appweb/static/js/index.fb66af39.js rel=preload as=script></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/appweb/static/js/chunk-vendors.895813db.js></script><script src=/appweb/static/js/index.fb66af39.js></script></body></html>
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-analysis-condition"],{"02a4":function(t,e,a){"use strict";var i=a("1781"),n=a.n(i);n.a},1781:function(t,e,a){var i=a("990b5");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var n=a("4f06").default;n("8cc45004",i,!0,{sourceMap:!1,shadowMode:!1})},2205:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={data:function(){return{navheight:0}},created:function(){var t=this;uni.getStorage({key:"statusBarH",success:function(e){e.data&&(t.navheight=e.data)}})},props:{leftText:{type:String,default:""},rightText:{type:String,default:""},leftImgSrc:{type:String,default:""},rightImgSrc:{type:String,default:""},title:{type:String,default:""}},methods:{rClick:function(){this.$emit("rightClick")},lClick:function(){this.$emit("leftClick")}}};e.default=i},3595:function(t,e,a){e=t.exports=a("2350")(!1),e.push([t.i,".indexNav[data-v-fc06f43a]{height:%?77.89?%;line-height:%?77.89?%;text-align:center;background:#0069ff;position:fixed;font-size:%?33?%;color:#fff;width:100%;z-index:9}.blanks[data-v-fc06f43a]{height:%?77.89?%}.left[data-v-fc06f43a]{float:left;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;padding-left:%?23.55?%}.right[data-v-fc06f43a]{position:absolute;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;right:%?21.73?%}.lImg[data-v-fc06f43a]{width:%?12.68?%;height:%?23.55?%;float:left;position:relative;top:%?27.17?%}.rImg[data-v-fc06f43a]{width:%?28.98?%;height:%?28.98?%;top:%?27.17?%;right:%?18.12?%;position:absolute}",""])},4407:function(t,e,a){"use strict";a.r(e);var i=a("2205"),n=a.n(i);for(var s in i)"default"!==s&&function(t){a.d(e,t,function(){return i[t]})}(s);e["default"]=n.a},"770d":function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=s(a("d448")),n=s(a("ce42"));function s(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{pageType:"mall",allShow:!0,leftImg:i.default,rightText:"保存",navheight:0,activeType:"mall",picker:{textTitle:"选择",textConfirm:"确定",textCancel:"取消",colorConfirm:"#ffffff",colorCancel:"#ffffff"},currentDateType:"day",currentDateType2:"day",yearData:[],monthData:[],weekData:[],dayData:[],dateData:[],currentDate:[],currentMonth:[],currentWeek:[],currentYear:[],currentDay:[],date:"",dateText:"",accountText:"",oneAccountText:"",oneAccountId:"",oneFloorText:"",oneFloorId:"",gateText:"",floorText:"",storeText:"",id:"",atoken:"",backUrl:""}},onLoad:function(t){var e=this;t.type&&(this.activeType=t.type),this.pageType=window.pageType,uni.getStorage({key:"backUrl",success:function(t){e.backUrl=t.data}}),uni.getStorage({key:"allShow",success:function(t){e.allShow=t.data}}),uni.getStorage({key:"currentDateType",success:function(t){e.currentDateType2=t.data}}),uni.getStorage({key:"statusBarH",success:function(t){t.data&&(e.navheight=t.data)}}),uni.getStorage({key:"atoken",success:function(t){t.data&&(e.atoken=t.data)}}),uni.getStorage({key:"accountId",success:function(t){t.data&&(e.id=t.data)}}),uni.getStorage({key:"selectAccountNameArr",success:function(t){e.accountText=JSON.parse(t.data)[0],"全部"!=e.accountText&&(e.oneAccountText=e.accountText)},complete:function(t){}}),uni.getStorage({key:"selectAccountIdArr",success:function(t){"全部"!=e.accountText&&(e.oneAccountId=JSON.parse(t.data)[0])},complete:function(t){}}),uni.getStorage({key:"selectGateNameArr",success:function(t){e.gateText=JSON.parse(t.data)[0]},complete:function(t){}}),uni.getStorage({key:"selectFloorNameArr",success:function(t){e.floorText=JSON.parse(t.data)[0],e.oneFloorText=e.floorText},complete:function(t){}}),uni.getStorage({key:"selectFloorIdArr",success:function(t){"全部"!=e.floorText?e.oneFloorId=JSON.parse(t.data)[0]:e.oneFloorId=""},complete:function(t){}}),uni.getStorage({key:"selectStoreNameArr",success:function(t){e.storeText=JSON.parse(t.data)[0]},complete:function(t){}}),this.accountText||uni.getStorage({key:"accountList",success:function(t){if(t.data){var a=JSON.parse(t.data);a.forEach(function(t,a){0==a&&(e.accountText=t.name)})}}}),this.oneAccountText||uni.getStorage({key:"accountList",success:function(t){if(t.data){var a=JSON.parse(t.data);a.forEach(function(t,a){0==a&&(e.oneAccountText=t.name,e.oneAccountId=t.id)})}}}),this.gateText||uni.request({url:window.url+"/gates",data:{accountId:this.id,mallId:this.oneAccountId,status:1,type_arr:"1,3",_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.gateText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectGateIdArr",data:JSON.stringify(a)})}}),this.floorText||uni.request({url:window.url+"/floors",data:{accountId:this.id,mallId:this.oneAccountId,status:1,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.oneFloorText=t.data.data[0].name,e.oneFloorId=t.data.data[0].id,e.floorText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectFloorIdArr",data:JSON.stringify(a)})}}),this.storeText||uni.request({url:window.url+"/zones",data:{accountId:this.id,mallId:this.oneAccountId,floorId:this.oneFloorId,status:1,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.storeText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectStoreIdArr",data:JSON.stringify(a)})}}),this.getDateData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:n.default},methods:{backFun:function(){uni.navigateBack({delta:1})},save:function(){uni.setStorage({key:"currentDateType",data:this.currentDateType});var t="";switch(this.backUrl){case 1:"day"==this.currentDateType2?t="staticReport/staticDayReport":"week"==this.currentDateType2?t="staticReport/staticWeekReport":"month"==this.currentDateType2?t="staticReport/staticMonthReport":"year"==this.currentDateType2&&(t="staticReport/staticYearReport");break;case 2:t="inoutReport/inoutDayReport";break;case 3:"day"==this.currentDateType2?t="rankReport/rankDayReport":"week"==this.currentDateType2&&(t="rankReport/rankWeekReport");break}uni.navigateTo({url:t+"?types="+this.activeType})},goStoreList:function(){uni.navigateTo({url:"../list/moreMallList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goOneStoreList:function(){uni.navigateTo({url:"../list/oneMallList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreGateList:function(){uni.navigateTo({url:"../list/moreGateList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreFloorList:function(){uni.navigateTo({url:"../list/moreFloorList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goOneFloorList:function(){uni.navigateTo({url:"../list/oneFloorList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreStoreList:function(){uni.navigateTo({url:"../list/moreStoreList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},itemClick:function(t){this.activeType=t},dateShow:function(){this.$refs.picker.show()},dateClick:function(t){switch(this.currentDateType=t,this.currentDateType2=t,t){case"day":this.dateData=this.dayData,console.log("currentDay",this.currentDay),this.currentDate=this.currentDay;break;case"week":this.dateData=this.weekData,this.currentDate=this.currentWeek;break;case"month":this.dateData=this.monthData,this.currentDate=this.currentMonth;break;case"year":this.dateData=this.yearData,this.currentDate=this.currentYear;break}},getDateData:function(){var t=this;uni.getStorage({key:"dayData",success:function(e){e.data&&(t.dayData=JSON.parse(e.data))}}),uni.getStorage({key:"weekData",success:function(e){e.data&&(t.weekData=JSON.parse(e.data))}}),uni.getStorage({key:"monthData",success:function(e){e.data&&(t.monthData=JSON.parse(e.data))}}),uni.getStorage({key:"yearData",success:function(e){e.data&&(t.yearData=JSON.parse(e.data))}}),uni.getStorage({key:"currentDay",success:function(e){e.data&&(t.currentDay=JSON.parse(e.data))}}),uni.getStorage({key:"currentWeek",success:function(e){e.data&&(t.currentWeek=JSON.parse(e.data))}}),uni.getStorage({key:"currentMonth",success:function(e){e.data&&(t.currentMonth=JSON.parse(e.data))}}),uni.getStorage({key:"currentYear",success:function(e){e.data&&(t.currentYear=JSON.parse(e.data))}}),this.dateData=JSON.parse(JSON.stringify(this.dayData)),this.currentDate=this.currentDay;var e=new Date,a=e.getFullYear(),i=e.getMonth(),n=i+1>9?i+1:"0"+(i+1),s=e.getDate(),o=s>9?s:"0"+s;this.dateText=a+"-"+n+"-"+o,uni.getStorage({key:"selectDate",success:function(e){-1!=e.data.indexOf(",")?t.dateText=e.data.split(",")[0]+"至"+e.data.split(",")[1]:t.dateText=e.data},complete:function(t){}})},dateConfirm:function(t){this.currentDateType2=this.currentDateType,"day"==this.currentDateType?this.handleDayConfirm(t):"week"==this.currentDateType?this.handleWeekConfirm(t):"month"==this.currentDateType?this.handleMonthConfirm(t):"year"==this.currentDateType&&this.handleYearConfirm(t)},handleDayConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1,i=t[2].index+1;a=a>9?a:"0"+a,i=i>9?i:"0"+i,this.date=e+"-"+a+"-"+i,this.dateText=this.date,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentDay",data:JSON.stringify(t)}),console.log(t)},handleWeekConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1;a=a>9?a:"0"+a;var i=new Date;i.setFullYear(e,a-1,1);var n=i.getDay();i.setFullYear(e,a,0);var s,o=i.getDate();s=7-n+1;var r="",c="";if(0==t[2].index){r=e+"-"+a+"-01";var l=s>9?s:"0"+s;c=e+"-"+a+"-"+l}else{var u=s+7*(t[2].index-1)+1;l=s+7*t[2].index;if(u>o){for(var d=t[2].index-1;d>=0;d--)if(u=s+7*(d-1),l=s+7*d,u<=o){l>o&&(l=o);break}}else u<=o&&l>o&&(l=o);u=u>9?u:"0"+u,l=l>9?l:"0"+l,r=e+"-"+a+"-"+u,c=e+"-"+a+"-"+l}this.date=r+","+c,this.dateText=r+"至"+c,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})},handleMonthConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1,i=(new Date).getFullYear(),n=(new Date).getMonth()+1,s="",o="";if(e==i&&a==n){a=a>9?a:"0"+a,s=e+"-"+a+"-01";var r=(new Date).getDate();r=r>9?r:"0"+r,o=e+"-"+a+"-"+r}else{a=a>9?a:"0"+a,s=e+"-"+a+"-01";r=new Date(e,a,0).getDate();r=r>9?r:"0"+r,o=e+"-"+a+"-"+r}this.date=s+","+o,this.dateText=s+"至"+o,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})},handleYearConfirm:function(t){var e="",a="",i=1999+t[0].index;e=i+"-01-01",a=i+"-12-31",this.date=e+","+a,this.dateText=e+"至"+a,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})}}};e.default=o},"7cd4":function(t,e,a){"use strict";var i=a("9f6a"),n=a.n(i);n.a},"990b5":function(t,e,a){e=t.exports=a("2350")(!1),e.push([t.i,".headFlex[data-v-5387e6b3]{width:%?543.47?%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:%?32.6?%;color:#80b4ff;position:absolute;top:0;left:0;z-index:10;height:%?77.89?%;line-height:%?77.89?%;right:0;margin:auto}.headItems[data-v-5387e6b3]{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;cursor:pointer}.activeItem[data-v-5387e6b3]{color:#fff}.conditionItem[data-v-5387e6b3]{height:%?90.57?%;line-height:%?90.57?%;background:#fff;border-bottom:1px solid #979797;position:relative}.cTitle[data-v-5387e6b3]{font-size:%?25.36?%;color:#333;position:absolute;top:0;left:%?23.55?%}.selectItem[data-v-5387e6b3]{font-size:%?25.36?%;color:#9b9b9b;position:absolute;top:0;right:%?45.28?%}.rArrow[data-v-5387e6b3]{width:%?10.86?%;height:%?19.92?%;position:absolute!important;top:%?38.04?%;right:%?23.55?%}",""])},"9eff":function(t,e,a){"use strict";var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticStyle:{position:"relative"}},[a("headerComp",{attrs:{leftImgSrc:t.leftImg,rightText:t.rightText},on:{leftClick:function(e){e=t.$handleEvent(e),t.backFun(e)},rightClick:function(e){e=t.$handleEvent(e),t.save(e)}}}),a("div",{staticClass:"headFlex",style:{top:t.navheight+"px"}},[a("div",{staticClass:"headItems",class:{activeItem:"mall"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("mall")}}},[t._v(t._s(t.i18n.store))]),a("div",{staticClass:"headItems",class:{activeItem:"gate"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("gate")}}},[t._v("出入口")]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.pageType,expression:"pageType=='mall'"}],staticClass:"headItems",class:{activeItem:"floor"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("floor")}}},[t._v("楼层")]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.pageType,expression:"pageType=='mall'"}],staticClass:"headItems",class:{activeItem:"area"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("area")}}},[t._v("店铺")])]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.activeType,expression:"activeType=='mall'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.accountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"gate"==t.activeType,expression:"activeType=='gate'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreGateList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("出入口")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.gateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"floor"==t.activeType,expression:"activeType=='floor'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreFloorList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("楼层")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.floorText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"area"==t.activeType,expression:"activeType=='area'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneFloorList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("楼层")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneFloorText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("店铺")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.storeText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("awesome-picker",{ref:"picker",attrs:{data:t.dateData,textConfirm:t.picker.textConfirm,colorConfirm:t.picker.colorConfirm,textCancel:t.picker.textCancel,colorCancel:t.picker.colorCancel,anchor:t.currentDate},on:{confirm:function(e){e=t.$handleEvent(e),t.dateConfirm(e)}}},[a("div",{staticClass:"typeBox"},[a("span",{class:{activeDateType:"day"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("day")}}},[t._v("日")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"week"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("week")}}},[t._v("周")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"month"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("month")}}},[t._v("月")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"year"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("year")}}},[t._v("年")])])])],1)},n=[];a.d(e,"a",function(){return i}),a.d(e,"b",function(){return n})},"9f6a":function(t,e,a){var i=a("3595");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var n=a("4f06").default;n("5f4529cb",i,!0,{sourceMap:!1,shadowMode:!1})},ce42:function(t,e,a){"use strict";a.r(e);var i=a("f0fa"),n=a("4407");for(var s in n)"default"!==s&&function(t){a.d(e,t,function(){return n[t]})}(s);a("7cd4");var o=a("2877"),r=Object(o["a"])(n["default"],i["a"],i["b"],!1,null,"fc06f43a",null);e["default"]=r.exports},d448:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAaCAYAAAHwCF3KAAAABGdBTUEAALGPC/xhBQAAANtJREFUOBHtVDsOwjAMDTvXoUdiZWBB4lIcgp25B2DvxmjeM7HlBEeCAQkkLLV23nt2nE9byosmInPBa1E9AvHEfuCS2SUxaOSR0Bis53twcxnoNZ4jgRVfBOB2jNUIKGOAeRCPggbQE3wiUrCqOTtNO4iVPAb5nmjU7YSSWy9rAcpPbAC2MUw9gA8QbKI1nRpztWgdgTxTkJIEv0hwHTbZE2iaW8ubQsvvdUyCKCYwsT2sKGb8Gwn5mSdrOWE9ZuMvpU+sG8GvRy9RrfAvILJPfxLZBtomwh/wXO6bsa0ZxbdJWQAAAABJRU5ErkJggg=="},e0ac:function(t,e,a){"use strict";a.r(e);var i=a("9eff"),n=a("f08d");for(var s in n)"default"!==s&&function(t){a.d(e,t,function(){return n[t]})}(s);a("02a4");var o=a("2877"),r=Object(o["a"])(n["default"],i["a"],i["b"],!1,null,"5387e6b3",null);e["default"]=r.exports},f08d:function(t,e,a){"use strict";a.r(e);var i=a("770d"),n=a.n(i);for(var s in i)"default"!==s&&function(t){a.d(e,t,function(){return i[t]})}(s);e["default"]=n.a},f0fa:function(t,e,a){"use strict";var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",[a("div",{style:{height:t.navheight+"px",background:"#0069FF"}}),a("v-uni-view",{staticClass:"indexNav"},[a("v-uni-text",{staticClass:"left",on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}},[t._v(t._s(t.leftText))]),a("v-uni-image",{staticClass:"lImg",attrs:{src:t.leftImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}}),t._v(t._s(t.title)),a("span",{staticClass:"right",on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}},[t._v(t._s(t.rightText))]),a("v-uni-image",{staticClass:"rImg",attrs:{src:t.rightImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}})],1),a("v-uni-view",{staticClass:"blanks"})],1)},n=[];a.d(e,"a",function(){return i}),a.d(e,"b",function(){return n})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-analysis-condition"],{"059b":function(t,e,a){var i=a("f34d");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var n=a("4f06").default;n("29c7f94a",i,!0,{sourceMap:!1,shadowMode:!1})},2205:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={data:function(){return{navheight:0}},created:function(){var t=this;uni.getStorage({key:"statusBarH",success:function(e){e.data&&(t.navheight=e.data)}})},props:{leftText:{type:String,default:""},rightText:{type:String,default:""},leftImgSrc:{type:String,default:""},rightImgSrc:{type:String,default:""},title:{type:String,default:""}},methods:{rClick:function(){this.$emit("rightClick")},lClick:function(){this.$emit("leftClick")}}};e.default=i},3595:function(t,e,a){e=t.exports=a("2350")(!1),e.push([t.i,".indexNav[data-v-fc06f43a]{height:%?77.89?%;line-height:%?77.89?%;text-align:center;background:#0069ff;position:fixed;font-size:%?33?%;color:#fff;width:100%;z-index:9}.blanks[data-v-fc06f43a]{height:%?77.89?%}.left[data-v-fc06f43a]{float:left;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;padding-left:%?23.55?%}.right[data-v-fc06f43a]{position:absolute;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;right:%?21.73?%}.lImg[data-v-fc06f43a]{width:%?12.68?%;height:%?23.55?%;float:left;position:relative;top:%?27.17?%}.rImg[data-v-fc06f43a]{width:%?28.98?%;height:%?28.98?%;top:%?27.17?%;right:%?18.12?%;position:absolute}",""])},"3e5d":function(t,e,a){"use strict";var i=a("059b"),n=a.n(i);n.a},4407:function(t,e,a){"use strict";a.r(e);var i=a("2205"),n=a.n(i);for(var s in i)"default"!==s&&function(t){a.d(e,t,function(){return i[t]})}(s);e["default"]=n.a},"5b2d":function(t,e,a){"use strict";var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticStyle:{position:"relative"}},[a("headerComp",{attrs:{leftImgSrc:t.leftImg,rightText:t.rightText},on:{leftClick:function(e){e=t.$handleEvent(e),t.backFun(e)},rightClick:function(e){e=t.$handleEvent(e),t.save(e)}}}),a("div",{staticClass:"headFlex",style:{top:t.navheight+"px"}},[a("div",{staticClass:"headItems",class:{activeItem:"mall"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("mall")}}},[t._v(t._s(t.i18n.store))]),a("div",{staticClass:"headItems",class:{activeItem:"gate"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("gate")}}},[t._v("出入口")]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.pageType,expression:"pageType=='mall'"}],staticClass:"headItems",class:{activeItem:"floor"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("floor")}}},[t._v("楼层")]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.pageType,expression:"pageType=='mall'"}],staticClass:"headItems",class:{activeItem:"area"==t.activeType},on:{click:function(e){e=t.$handleEvent(e),t.itemClick("area")}}},[t._v("店铺")])]),a("div",{directives:[{name:"show",rawName:"v-show",value:"mall"==t.activeType,expression:"activeType=='mall'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.accountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"gate"==t.activeType,expression:"activeType=='gate'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreGateList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("出入口")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.gateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"floor"==t.activeType,expression:"activeType=='floor'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreFloorList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("楼层")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.floorText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("div",{directives:[{name:"show",rawName:"v-show",value:"area"==t.activeType,expression:"activeType=='area'"}],staticClass:"handleContent"},[a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v(t._s(t.i18n.store))]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneAccountText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goOneFloorList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("楼层")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.oneFloorText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.goMoreStoreList(e)}}},[a("span",{staticClass:"cTitle"},[t._v("店铺")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.storeText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1),a("div",{staticClass:"conditionItem",on:{click:function(e){e=t.$handleEvent(e),t.dateShow(e)}}},[a("span",{staticClass:"cTitle"},[t._v("日期")]),a("span",{staticClass:"selectItem"},[t._v(t._s(t.dateText))]),a("v-uni-image",{staticClass:"rArrow",attrs:{src:"../../static/analysis/rArrow.png",mode:"widthFix"}})],1)]),a("awesome-picker",{ref:"picker",attrs:{data:t.dateData,textConfirm:t.picker.textConfirm,colorConfirm:t.picker.colorConfirm,textCancel:t.picker.textCancel,colorCancel:t.picker.colorCancel,anchor:t.currentDate},on:{confirm:function(e){e=t.$handleEvent(e),t.dateConfirm(e)}}},[a("div",{staticClass:"typeBox"},[a("span",{class:{activeDateType:"day"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("day")}}},[t._v("日")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"week"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("week")}}},[t._v("周")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"month"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("month")}}},[t._v("月")]),a("span",{directives:[{name:"show",rawName:"v-show",value:"true"==t.allShow,expression:"allShow=='true'"}],class:{activeDateType:"year"==t.currentDateType},on:{click:function(e){e=t.$handleEvent(e),t.dateClick("year")}}},[t._v("年")])])])],1)},n=[];a.d(e,"a",function(){return i}),a.d(e,"b",function(){return n})},"770d":function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=s(a("d448")),n=s(a("ce42"));function s(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{pageType:"mall",allShow:!0,leftImg:i.default,rightText:"保存",navheight:0,activeType:"mall",picker:{textTitle:"选择",textConfirm:"确定",textCancel:"取消",colorConfirm:"#ffffff",colorCancel:"#ffffff"},currentDateType:"day",currentDateType2:"day",yearData:[],monthData:[],weekData:[],dayData:[],dateData:[],currentDate:[],currentMonth:[],currentWeek:[],currentYear:[],currentDay:[],date:"",dateText:"",accountText:"",oneAccountText:"",oneAccountId:"",oneFloorText:"",oneFloorId:"",gateText:"",floorText:"",storeText:"",id:"",atoken:"",backUrl:""}},onLoad:function(t){var e=this;t.type&&(this.activeType=t.type),this.pageType=window.pageType,uni.getStorage({key:"backUrl",success:function(t){e.backUrl=t.data}}),uni.getStorage({key:"allShow",success:function(t){e.allShow=t.data}}),uni.getStorage({key:"currentDateType",success:function(t){e.currentDateType2=t.data}}),uni.getStorage({key:"statusBarH",success:function(t){t.data&&(e.navheight=t.data)}}),uni.getStorage({key:"atoken",success:function(t){t.data&&(e.atoken=t.data)}}),uni.getStorage({key:"accountId",success:function(t){t.data&&(e.id=t.data)}}),uni.getStorage({key:"selectAccountNameArr",success:function(t){e.accountText=JSON.parse(t.data)[0],"全部"!=e.accountText&&(e.oneAccountText=e.accountText)},complete:function(t){}}),uni.getStorage({key:"selectAccountIdArr",success:function(t){"全部"!=e.accountText&&(e.oneAccountId=JSON.parse(t.data)[0])},complete:function(t){}}),uni.getStorage({key:"selectGateNameArr",success:function(t){e.gateText=JSON.parse(t.data)[0]},complete:function(t){}}),uni.getStorage({key:"selectFloorNameArr",success:function(t){e.floorText=JSON.parse(t.data)[0],e.oneFloorText=e.floorText},complete:function(t){}}),uni.getStorage({key:"selectFloorIdArr",success:function(t){"全部"!=e.floorText?e.oneFloorId=JSON.parse(t.data)[0]:e.oneFloorId=""},complete:function(t){}}),uni.getStorage({key:"selectStoreNameArr",success:function(t){e.storeText=JSON.parse(t.data)[0]},complete:function(t){}}),this.accountText||uni.getStorage({key:"accountList",success:function(t){if(t.data){var a=JSON.parse(t.data);a.forEach(function(t,a){0==a&&(e.accountText=t.name)})}}}),this.oneAccountText||uni.getStorage({key:"accountList",success:function(t){if(t.data){var a=JSON.parse(t.data);a.forEach(function(t,a){0==a&&(e.oneAccountText=t.name,e.oneAccountId=t.id)})}}}),this.gateText||uni.request({url:window.url+"/gates",data:{accountId:this.id,mallId:this.oneAccountId,status:1,type_arr:"1,3",_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.gateText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectGateIdArr",data:JSON.stringify(a)})}}),this.floorText||uni.request({url:window.url+"/floors",data:{accountId:this.id,mallId:this.oneAccountId,status:1,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.oneFloorText=t.data.data[0].name,e.oneFloorId=t.data.data[0].id,e.floorText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectFloorIdArr",data:JSON.stringify(a)})}}),this.storeText||uni.request({url:window.url+"/zones",data:{accountId:this.id,mallId:this.oneAccountId,floorId:this.oneFloorId,status:1,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){e.storeText=t.data.data[0].name;var a=[];a.push(t.data.data[0].id),uni.setStorage({key:"selectStoreIdArr",data:JSON.stringify(a)})}}),this.getDateData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:n.default},methods:{backFun:function(){this.save()},save:function(){uni.setStorage({key:"currentDateType",data:this.currentDateType});var t="";switch(this.backUrl){case 1:"day"==this.currentDateType2?t="staticReport/staticDayReport":"week"==this.currentDateType2?t="staticReport/staticWeekReport":"month"==this.currentDateType2?t="staticReport/staticMonthReport":"year"==this.currentDateType2&&(t="staticReport/staticYearReport");break;case 2:t="inoutReport/inoutDayReport";break;case 3:"day"==this.currentDateType2?t="rankReport/rankDayReport":"week"==this.currentDateType2&&(t="rankReport/rankWeekReport");break}uni.navigateTo({url:t+"?types="+this.activeType})},goStoreList:function(){uni.navigateTo({url:"../list/moreMallList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goOneStoreList:function(){uni.navigateTo({url:"../list/oneMallList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreGateList:function(){uni.navigateTo({url:"../list/moreGateList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreFloorList:function(){uni.navigateTo({url:"../list/moreFloorList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goOneFloorList:function(){uni.navigateTo({url:"../list/oneFloorList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},goMoreStoreList:function(){uni.navigateTo({url:"../list/moreStoreList?url=../analysis/condition&type="+this.activeType,animationType:"slide-in-right",animationDuration:200})},itemClick:function(t){this.activeType=t},dateShow:function(){this.$refs.picker.show()},dateClick:function(t){switch(this.currentDateType=t,this.currentDateType2=t,t){case"day":this.dateData=this.dayData,console.log("currentDay",this.currentDay),this.currentDate=this.currentDay;break;case"week":this.dateData=this.weekData,this.currentDate=this.currentWeek;break;case"month":this.dateData=this.monthData,this.currentDate=this.currentMonth;break;case"year":this.dateData=this.yearData,this.currentDate=this.currentYear;break}},getDateData:function(){var t=this;uni.getStorage({key:"dayData",success:function(e){e.data&&(t.dayData=JSON.parse(e.data))}}),uni.getStorage({key:"weekData",success:function(e){e.data&&(t.weekData=JSON.parse(e.data))}}),uni.getStorage({key:"monthData",success:function(e){e.data&&(t.monthData=JSON.parse(e.data))}}),uni.getStorage({key:"yearData",success:function(e){e.data&&(t.yearData=JSON.parse(e.data))}}),uni.getStorage({key:"currentDay",success:function(e){e.data&&(t.currentDay=JSON.parse(e.data))}}),uni.getStorage({key:"currentWeek",success:function(e){e.data&&(t.currentWeek=JSON.parse(e.data))}}),uni.getStorage({key:"currentMonth",success:function(e){e.data&&(t.currentMonth=JSON.parse(e.data))}}),uni.getStorage({key:"currentYear",success:function(e){e.data&&(t.currentYear=JSON.parse(e.data))}}),this.dateData=JSON.parse(JSON.stringify(this.dayData)),this.currentDate=this.currentDay;var e=new Date,a=e.getFullYear(),i=e.getMonth(),n=i+1>9?i+1:"0"+(i+1),s=e.getDate(),o=s>9?s:"0"+s;this.dateText=a+"-"+n+"-"+o,uni.getStorage({key:"selectDate",success:function(e){-1!=e.data.indexOf(",")?t.dateText=e.data.split(",")[0]+"至"+e.data.split(",")[1]:t.dateText=e.data},complete:function(t){}})},dateConfirm:function(t){this.currentDateType2=this.currentDateType,"day"==this.currentDateType?this.handleDayConfirm(t):"week"==this.currentDateType?this.handleWeekConfirm(t):"month"==this.currentDateType?this.handleMonthConfirm(t):"year"==this.currentDateType&&this.handleYearConfirm(t)},handleDayConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1,i=t[2].index+1;a=a>9?a:"0"+a,i=i>9?i:"0"+i,this.date=e+"-"+a+"-"+i,this.dateText=this.date,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentDay",data:JSON.stringify(t)}),console.log(t)},handleWeekConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1;a=a>9?a:"0"+a;var i=new Date;i.setFullYear(e,a-1,1);var n=i.getDay();i.setFullYear(e,a,0);var s,o=i.getDate();s=7-n+1;var r="",c="";if(0==t[2].index){r=e+"-"+a+"-01";var l=s>9?s:"0"+s;c=e+"-"+a+"-"+l}else{var u=s+7*(t[2].index-1)+1;l=s+7*t[2].index;if(u>o){for(var d=t[2].index-1;d>=0;d--)if(u=s+7*(d-1),l=s+7*d,u<=o){l>o&&(l=o);break}}else u<=o&&l>o&&(l=o);u=u>9?u:"0"+u,l=l>9?l:"0"+l,r=e+"-"+a+"-"+u,c=e+"-"+a+"-"+l}this.date=r+","+c,this.dateText=r+"至"+c,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})},handleMonthConfirm:function(t){var e=1999+t[0].index,a=t[1].index+1,i=(new Date).getFullYear(),n=(new Date).getMonth()+1,s="",o="";if(e==i&&a==n){a=a>9?a:"0"+a,s=e+"-"+a+"-01";var r=(new Date).getDate();r=r>9?r:"0"+r,o=e+"-"+a+"-"+r}else{a=a>9?a:"0"+a,s=e+"-"+a+"-01";r=new Date(e,a,0).getDate();r=r>9?r:"0"+r,o=e+"-"+a+"-"+r}this.date=s+","+o,this.dateText=s+"至"+o,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})},handleYearConfirm:function(t){var e="",a="",i=1999+t[0].index;e=i+"-01-01",a=i+"-12-31",this.date=e+","+a,this.dateText=e+"至"+a,uni.setStorage({key:"selectDate",data:this.date}),uni.setStorage({key:"currentWeek",data:JSON.stringify(t)})}}};e.default=o},"7cd4":function(t,e,a){"use strict";var i=a("9f6a"),n=a.n(i);n.a},"9f6a":function(t,e,a){var i=a("3595");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var n=a("4f06").default;n("5f4529cb",i,!0,{sourceMap:!1,shadowMode:!1})},ce42:function(t,e,a){"use strict";a.r(e);var i=a("f0fa"),n=a("4407");for(var s in n)"default"!==s&&function(t){a.d(e,t,function(){return n[t]})}(s);a("7cd4");var o=a("2877"),r=Object(o["a"])(n["default"],i["a"],i["b"],!1,null,"fc06f43a",null);e["default"]=r.exports},d448:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAaCAYAAAHwCF3KAAAABGdBTUEAALGPC/xhBQAAANtJREFUOBHtVDsOwjAMDTvXoUdiZWBB4lIcgp25B2DvxmjeM7HlBEeCAQkkLLV23nt2nE9byosmInPBa1E9AvHEfuCS2SUxaOSR0Bis53twcxnoNZ4jgRVfBOB2jNUIKGOAeRCPggbQE3wiUrCqOTtNO4iVPAb5nmjU7YSSWy9rAcpPbAC2MUw9gA8QbKI1nRpztWgdgTxTkJIEv0hwHTbZE2iaW8ubQsvvdUyCKCYwsT2sKGb8Gwn5mSdrOWE9ZuMvpU+sG8GvRy9RrfAvILJPfxLZBtomwh/wXO6bsa0ZxbdJWQAAAABJRU5ErkJggg=="},e0ac:function(t,e,a){"use strict";a.r(e);var i=a("5b2d"),n=a("f08d");for(var s in n)"default"!==s&&function(t){a.d(e,t,function(){return n[t]})}(s);a("3e5d");var o=a("2877"),r=Object(o["a"])(n["default"],i["a"],i["b"],!1,null,"51f4accb",null);e["default"]=r.exports},f08d:function(t,e,a){"use strict";a.r(e);var i=a("770d"),n=a.n(i);for(var s in i)"default"!==s&&function(t){a.d(e,t,function(){return i[t]})}(s);e["default"]=n.a},f0fa:function(t,e,a){"use strict";var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",[a("div",{style:{height:t.navheight+"px",background:"#0069FF"}}),a("v-uni-view",{staticClass:"indexNav"},[a("v-uni-text",{staticClass:"left",on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}},[t._v(t._s(t.leftText))]),a("v-uni-image",{staticClass:"lImg",attrs:{src:t.leftImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}}),t._v(t._s(t.title)),a("span",{staticClass:"right",on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}},[t._v(t._s(t.rightText))]),a("v-uni-image",{staticClass:"rImg",attrs:{src:t.rightImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}})],1),a("v-uni-view",{staticClass:"blanks"})],1)},n=[];a.d(e,"a",function(){return i}),a.d(e,"b",function(){return n})},f34d:function(t,e,a){e=t.exports=a("2350")(!1),e.push([t.i,".headFlex[data-v-51f4accb]{width:%?543.47?%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:%?32.6?%;color:#80b4ff;position:absolute;top:0;left:0;z-index:10;height:%?77.89?%;line-height:%?77.89?%;right:0;margin:auto}.headItems[data-v-51f4accb]{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;cursor:pointer}.activeItem[data-v-51f4accb]{color:#fff}.conditionItem[data-v-51f4accb]{height:%?90.57?%;line-height:%?90.57?%;background:#fff;border-bottom:1px solid #979797;position:relative}.cTitle[data-v-51f4accb]{font-size:%?25.36?%;color:#333;position:absolute;top:0;left:%?23.55?%}.selectItem[data-v-51f4accb]{font-size:%?25.36?%;color:#9b9b9b;position:absolute;top:0;right:%?45.28?%}.rArrow[data-v-51f4accb]{width:%?10.86?%;height:%?19.92?%;position:absolute!important;top:%?38.04?%;right:%?23.55?%}",""])}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-profile-index"],{2205:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a={data:function(){return{navheight:0}},created:function(){var t=this;uni.getStorage({key:"statusBarH",success:function(e){e.data&&(t.navheight=e.data)}})},props:{leftText:{type:String,default:""},rightText:{type:String,default:""},leftImgSrc:{type:String,default:""},rightImgSrc:{type:String,default:""},title:{type:String,default:""}},methods:{rClick:function(){this.$emit("rightClick")},lClick:function(){this.$emit("leftClick")}}};e.default=a},"291b":function(t,e,i){"use strict";i.r(e);var a=i("3955"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,function(){return a[t]})}(o);e["default"]=n.a},3595:function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".indexNav[data-v-fc06f43a]{height:%?77.89?%;line-height:%?77.89?%;text-align:center;background:#0069ff;position:fixed;font-size:%?33?%;color:#fff;width:100%;z-index:9}.blanks[data-v-fc06f43a]{height:%?77.89?%}.left[data-v-fc06f43a]{float:left;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;padding-left:%?23.55?%}.right[data-v-fc06f43a]{position:absolute;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;right:%?21.73?%}.lImg[data-v-fc06f43a]{width:%?12.68?%;height:%?23.55?%;float:left;position:relative;top:%?27.17?%}.rImg[data-v-fc06f43a]{width:%?28.98?%;height:%?28.98?%;top:%?27.17?%;right:%?18.12?%;position:absolute}",""])},3955:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=r(i("ce42")),n=r(i("d448")),o=r(i("a718"));function r(t){return t&&t.__esModule?t:{default:t}}var l={onLoad:function(t){console.log(t)},components:{headerComp:a.default},data:function(){return{titleStr:"我的",backArrow:n.default,rArrow:o.default}},methods:{switchConnect:function(){this.$message.confirm('<div class="dialog-content" style="color: #333; font-size: 17px;text-align: center;">确认切换该服务器地址?</div>',function(t,e){},[{className:"dialog-btn",label:"取消",callback:function(t,e){return!0}},{className:"dialog-btn",label:"确定",callback:function(t,e){console.log(t,e)}}],"提示")},logoutHandle:function(){Object.keys(window.localStorage).forEach(function(t){window.localStorage.removeItem(t)}),uni.reLaunch({url:"../login/login"})}}};e.default=l},4407:function(t,e,i){"use strict";i.r(e);var a=i("2205"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,function(){return a[t]})}(o);e["default"]=n.a},"4d4a":function(t,e,i){"use strict";var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("headerComp",{attrs:{title:t.titleStr}}),i("v-uni-view",{staticStyle:{height:"25.36upx"}}),i("v-uni-view",{staticClass:"profile-item",on:{click:function(e){e=t.$handleEvent(e),t.switchConnect(e)}}},[i("span",{staticClass:"texts"},[t._v("切换服务器地址")]),i("img",{staticClass:"arrows",attrs:{src:t.rArrow,alt:""}})]),i("v-uni-view",{staticClass:"profile-item"},[i("span",{staticClass:"texts"},[t._v("修改密码")]),i("img",{staticClass:"arrows",attrs:{src:t.rArrow,alt:""}})]),i("v-uni-view",{staticClass:"logout"},[i("v-uni-button",{staticClass:"primary logout-btn",attrs:{type:"primary"},on:{click:function(e){e=t.$handleEvent(e),t.logoutHandle(e)}}},[t._v("退出登录")])],1)],1)},n=[];i.d(e,"a",function(){return a}),i.d(e,"b",function(){return n})},"7cd4":function(t,e,i){"use strict";var a=i("9f6a"),n=i.n(a);n.a},8192:function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".profile-item[data-v-0738b88a]{background:#fff;position:relative}.texts[data-v-0738b88a]{display:block;height:%?90.57?%;line-height:%?90.57?%;margin-left:%?23.55?%;font-size:%?28.98?%;color:#333;border-bottom:%?1.81?% solid hsla(0,0%,59.2%,.2);-webkit-box-sizing:border-box;box-sizing:border-box}.profile-item:last-of-type .texts[data-v-0738b88a]{border-bottom:none}.arrows[data-v-0738b88a]{width:%?14.49?%;height:%?25.36?%;position:absolute;right:%?23.55?%;top:%?32.6?%}.logout[data-v-0738b88a]{margin-top:%?255.43?%;padding:0 %?41.66?%}.logout-btn[data-v-0738b88a]{background-color:rgba(0,0,0,0);border:1px solid #0069ff;color:#0069ff;border-radius:%?41.66?%}",""])},"9f6a":function(t,e,i){var a=i("3595");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("5f4529cb",a,!0,{sourceMap:!1,shadowMode:!1})},a718:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAAEfNg+MAAAABGdBTUEAALGPC/xhBQAAArNJREFUOBGNlE1rE1EUhpPJJNqotRAXwZjPRREEF4KCiNDWagt24UKwC/+Bf0qwKGKhYBULLkRXKoIiiFJtPpqEpIYoSZAYYojPmeSMd5o0eGFyPt73vOfm3Dvjy+fzd3y6stls3/H7/X7Ql8vlZhQZYx2yWyEET2BWuECxWJxyA/RfmiyLIAhaMJOyi2ckv0vSrwjJB+zxuq0JglW/33/RiaVDoVA44wbQU8oUwS1hYL+5ScMxm7xAdw7dSjqdPmlwvC5KG0PFH4K4CiYNpQDEPyMEgEMAvwWwLOtcKpV67yjUarVjrVarKUAwGJyNx+NfxZflp18DOw1wCqDsZM0fISAbNXOmL9OepnelXC7HTUB96zhLgk6ns8s4MwqotSKRSDMcDh+VRK/X26HdaQXFSgtfNBr9xQSnxKfdZ67AWfFleQYFGEKhI4Bt2+cTicQ7D0EASDakrvgM65LTQgJdtJIRr0kMeW1Egbk8ArvJ08hkMjMeAuAmwAoqdY78BL7PvWOAz4kXefYA3ck6CoCvAC7zlJD1TFQO6w3ABWRzVI5OUkCe7XEg+X/HLQFrm2NfGHvsA3zk16J1kuzbITLb7XZLDDLLkxphj0m4Yxreyqdw5M/qKg135N5QBdS6ApqQbwG7eEwsI9W1FwgEriSTyU+aUDsioADHLC/QOvGK5uQAea7Ky+Tm1DnIIhRE6D64XA9dDYSWOZnXB+5AmWoRknf9LvFtzSGS+y8Bim2+yvewq1qMbXHdlyYKUBCi8CH2hhbS9ScDvSYvk+TGCrDVw2AbFC5rIbbGkS5yyT4aOa9AtVo90m63n1A4pyQ6VvAXGNgXzZnW2UG9Xp9uNptbFA4+2QPGLlud5+yzZsF+3892pXBJATruhEKh+VgsVtTcJGtTsCmdsR8g3mKr1UkF+7G/C+1UeAo9hYIAAAAASUVORK5CYII="},b409:function(t,e,i){var a=i("8192");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("dda60c1e",a,!0,{sourceMap:!1,shadowMode:!1})},c1c7:function(t,e,i){"use strict";var a=i("b409"),n=i.n(a);n.a},ce42:function(t,e,i){"use strict";i.r(e);var a=i("f0fa"),n=i("4407");for(var o in n)"default"!==o&&function(t){i.d(e,t,function(){return n[t]})}(o);i("7cd4");var r=i("2877"),l=Object(r["a"])(n["default"],a["a"],a["b"],!1,null,"fc06f43a",null);e["default"]=l.exports},d448:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAaCAYAAAHwCF3KAAAABGdBTUEAALGPC/xhBQAAANtJREFUOBHtVDsOwjAMDTvXoUdiZWBB4lIcgp25B2DvxmjeM7HlBEeCAQkkLLV23nt2nE9byosmInPBa1E9AvHEfuCS2SUxaOSR0Bis53twcxnoNZ4jgRVfBOB2jNUIKGOAeRCPggbQE3wiUrCqOTtNO4iVPAb5nmjU7YSSWy9rAcpPbAC2MUw9gA8QbKI1nRpztWgdgTxTkJIEv0hwHTbZE2iaW8ubQsvvdUyCKCYwsT2sKGb8Gwn5mSdrOWE9ZuMvpU+sG8GvRy9RrfAvILJPfxLZBtomwh/wXO6bsa0ZxbdJWQAAAABJRU5ErkJggg=="},ef6f:function(t,e,i){"use strict";i.r(e);var a=i("4d4a"),n=i("291b");for(var o in n)"default"!==o&&function(t){i.d(e,t,function(){return n[t]})}(o);i("c1c7");var r=i("2877"),l=Object(r["a"])(n["default"],a["a"],a["b"],!1,null,"0738b88a",null);e["default"]=l.exports},f0fa:function(t,e,i){"use strict";var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("div",{style:{height:t.navheight+"px",background:"#0069FF"}}),i("v-uni-view",{staticClass:"indexNav"},[i("v-uni-text",{staticClass:"left",on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}},[t._v(t._s(t.leftText))]),i("v-uni-image",{staticClass:"lImg",attrs:{src:t.leftImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}}),t._v(t._s(t.title)),i("span",{staticClass:"right",on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}},[t._v(t._s(t.rightText))]),i("v-uni-image",{staticClass:"rImg",attrs:{src:t.rightImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}})],1),i("v-uni-view",{staticClass:"blanks"})],1)},n=[];i.d(e,"a",function(){return a}),i.d(e,"b",function(){return n})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-profile-index"],{2205:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a={data:function(){return{navheight:0}},created:function(){var t=this;uni.getStorage({key:"statusBarH",success:function(e){e.data&&(t.navheight=e.data)}})},props:{leftText:{type:String,default:""},rightText:{type:String,default:""},leftImgSrc:{type:String,default:""},rightImgSrc:{type:String,default:""},title:{type:String,default:""}},methods:{rClick:function(){this.$emit("rightClick")},lClick:function(){this.$emit("leftClick")}}};e.default=a},"291b":function(t,e,i){"use strict";i.r(e);var a=i("3955"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,function(){return a[t]})}(o);e["default"]=n.a},3595:function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".indexNav[data-v-fc06f43a]{height:%?77.89?%;line-height:%?77.89?%;text-align:center;background:#0069ff;position:fixed;font-size:%?33?%;color:#fff;width:100%;z-index:9}.blanks[data-v-fc06f43a]{height:%?77.89?%}.left[data-v-fc06f43a]{float:left;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;padding-left:%?23.55?%}.right[data-v-fc06f43a]{position:absolute;font-size:%?25.37?%;display:inline-block;height:%?77.89?%;line-height:%?77.89?%;right:%?21.73?%}.lImg[data-v-fc06f43a]{width:%?12.68?%;height:%?23.55?%;float:left;position:relative;top:%?27.17?%}.rImg[data-v-fc06f43a]{width:%?28.98?%;height:%?28.98?%;top:%?27.17?%;right:%?18.12?%;position:absolute}",""])},3955:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=r(i("ce42")),n=r(i("d448")),o=r(i("a718"));function r(t){return t&&t.__esModule?t:{default:t}}var l={onLoad:function(t){console.log(t)},components:{headerComp:a.default},data:function(){return{titleStr:"我的",backArrow:n.default,rArrow:o.default}},methods:{switchConnect:function(){this.$message.confirm('<div class="dialog-content" style="color: #333; font-size: 17px;text-align: center;">确认切换该服务器地址?</div>',function(t,e){},[{className:"dialog-btn",label:"取消",callback:function(t,e){return!0}},{className:"dialog-btn",label:"确定",callback:function(t,e){this.clearCache(),model.switchConnectType()}}],"提示")},logoutHandle:function(){this.clearCache(),uni.reLaunch({url:"../login/login"})},clearCache:function(){Object.keys(window.localStorage).forEach(function(t){window.localStorage.removeItem(t)})}}};e.default=l},4407:function(t,e,i){"use strict";i.r(e);var a=i("2205"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,function(){return a[t]})}(o);e["default"]=n.a},"5f28":function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".profile-item[data-v-ba6e4802]{background:#fff;position:relative}.texts[data-v-ba6e4802]{display:block;height:%?90.57?%;line-height:%?90.57?%;margin-left:%?23.55?%;font-size:%?28.98?%;color:#333;border-bottom:%?1.81?% solid hsla(0,0%,59.2%,.2);-webkit-box-sizing:border-box;box-sizing:border-box}.profile-item:last-of-type .texts[data-v-ba6e4802]{border-bottom:none}.arrows[data-v-ba6e4802]{width:%?14.49?%;height:%?25.36?%;position:absolute;right:%?23.55?%;top:%?32.6?%}.logout[data-v-ba6e4802]{margin-top:%?255.43?%;padding:0 %?41.66?%}.logout-btn[data-v-ba6e4802]{background-color:rgba(0,0,0,0);border:1px solid #0069ff;color:#0069ff;border-radius:%?41.66?%}",""])},"7cd4":function(t,e,i){"use strict";var a=i("9f6a"),n=i.n(a);n.a},"7f7d":function(t,e,i){var a=i("5f28");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("79402f48",a,!0,{sourceMap:!1,shadowMode:!1})},"9f6a":function(t,e,i){var a=i("3595");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("5f4529cb",a,!0,{sourceMap:!1,shadowMode:!1})},a718:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAAEfNg+MAAAABGdBTUEAALGPC/xhBQAAArNJREFUOBGNlE1rE1EUhpPJJNqotRAXwZjPRREEF4KCiNDWagt24UKwC/+Bf0qwKGKhYBULLkRXKoIiiFJtPpqEpIYoSZAYYojPmeSMd5o0eGFyPt73vOfm3Dvjy+fzd3y6stls3/H7/X7Ql8vlZhQZYx2yWyEET2BWuECxWJxyA/RfmiyLIAhaMJOyi2ckv0vSrwjJB+zxuq0JglW/33/RiaVDoVA44wbQU8oUwS1hYL+5ScMxm7xAdw7dSjqdPmlwvC5KG0PFH4K4CiYNpQDEPyMEgEMAvwWwLOtcKpV67yjUarVjrVarKUAwGJyNx+NfxZflp18DOw1wCqDsZM0fISAbNXOmL9OepnelXC7HTUB96zhLgk6ns8s4MwqotSKRSDMcDh+VRK/X26HdaQXFSgtfNBr9xQSnxKfdZ67AWfFleQYFGEKhI4Bt2+cTicQ7D0EASDakrvgM65LTQgJdtJIRr0kMeW1Egbk8ArvJ08hkMjMeAuAmwAoqdY78BL7PvWOAz4kXefYA3ck6CoCvAC7zlJD1TFQO6w3ABWRzVI5OUkCe7XEg+X/HLQFrm2NfGHvsA3zk16J1kuzbITLb7XZLDDLLkxphj0m4Yxreyqdw5M/qKg135N5QBdS6ApqQbwG7eEwsI9W1FwgEriSTyU+aUDsioADHLC/QOvGK5uQAea7Ky+Tm1DnIIhRE6D64XA9dDYSWOZnXB+5AmWoRknf9LvFtzSGS+y8Bim2+yvewq1qMbXHdlyYKUBCi8CH2hhbS9ScDvSYvk+TGCrDVw2AbFC5rIbbGkS5yyT4aOa9AtVo90m63n1A4pyQ6VvAXGNgXzZnW2UG9Xp9uNptbFA4+2QPGLlud5+yzZsF+3892pXBJATruhEKh+VgsVtTcJGtTsCmdsR8g3mKr1UkF+7G/C+1UeAo9hYIAAAAASUVORK5CYII="},ce42:function(t,e,i){"use strict";i.r(e);var a=i("f0fa"),n=i("4407");for(var o in n)"default"!==o&&function(t){i.d(e,t,function(){return n[t]})}(o);i("7cd4");var r=i("2877"),l=Object(r["a"])(n["default"],a["a"],a["b"],!1,null,"fc06f43a",null);e["default"]=l.exports},d448:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAaCAYAAAHwCF3KAAAABGdBTUEAALGPC/xhBQAAANtJREFUOBHtVDsOwjAMDTvXoUdiZWBB4lIcgp25B2DvxmjeM7HlBEeCAQkkLLV23nt2nE9byosmInPBa1E9AvHEfuCS2SUxaOSR0Bis53twcxnoNZ4jgRVfBOB2jNUIKGOAeRCPggbQE3wiUrCqOTtNO4iVPAb5nmjU7YSSWy9rAcpPbAC2MUw9gA8QbKI1nRpztWgdgTxTkJIEv0hwHTbZE2iaW8ubQsvvdUyCKCYwsT2sKGb8Gwn5mSdrOWE9ZuMvpU+sG8GvRy9RrfAvILJPfxLZBtomwh/wXO6bsa0ZxbdJWQAAAABJRU5ErkJggg=="},ef6f:function(t,e,i){"use strict";i.r(e);var a=i("fe3d"),n=i("291b");for(var o in n)"default"!==o&&function(t){i.d(e,t,function(){return n[t]})}(o);i("ef74");var r=i("2877"),l=Object(r["a"])(n["default"],a["a"],a["b"],!1,null,"ba6e4802",null);e["default"]=l.exports},ef74:function(t,e,i){"use strict";var a=i("7f7d"),n=i.n(a);n.a},f0fa:function(t,e,i){"use strict";var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("div",{style:{height:t.navheight+"px",background:"#0069FF"}}),i("v-uni-view",{staticClass:"indexNav"},[i("v-uni-text",{staticClass:"left",on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}},[t._v(t._s(t.leftText))]),i("v-uni-image",{staticClass:"lImg",attrs:{src:t.leftImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}}),t._v(t._s(t.title)),i("span",{staticClass:"right",on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}},[t._v(t._s(t.rightText))]),i("v-uni-image",{staticClass:"rImg",attrs:{src:t.rightImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}})],1),i("v-uni-view",{staticClass:"blanks"})],1)},n=[];i.d(e,"a",function(){return a}),i.d(e,"b",function(){return n})},fe3d:function(t,e,i){"use strict";var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("headerComp",{attrs:{title:t.titleStr}}),i("v-uni-view",{staticStyle:{height:"25.36upx"}}),i("v-uni-view",{staticClass:"profile-item",on:{click:function(e){e=t.$handleEvent(e),t.switchConnect(e)}}},[i("span",{staticClass:"texts"},[t._v("切换服务器地址")]),i("img",{staticClass:"arrows",attrs:{src:t.rArrow,alt:""}})]),i("v-uni-view",{staticClass:"profile-item"},[i("span",{staticClass:"texts"},[t._v("修改密码")]),i("img",{staticClass:"arrows",attrs:{src:t.rArrow,alt:""}})]),i("v-uni-view",{staticClass:"logout"},[i("v-uni-button",{staticClass:"primary logout-btn",attrs:{type:"primary"},on:{click:function(e){e=t.$handleEvent(e),t.logoutHandle(e)}}},[t._v("退出登录")])],1)],1)},n=[];i.d(e,"a",function(){return a}),i.d(e,"b",function(){return n})}}]);
\ No newline at end of file \ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!