Commit cfdb161c by 周志凯

状态管理

1 parent 5f1ec7ba
Showing 33 changed files with 598 additions and 21 deletions
...@@ -7,12 +7,6 @@ ...@@ -7,12 +7,6 @@
<title> <title>
<%= htmlWebpackPlugin.options.title %> <%= htmlWebpackPlugin.options.title %>
</title> </title>
<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/vue-easytable/umd/css/index.css">
<!-- 引入Vue -->
<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 src="static/common.js"></script>
<script> <script>
document.addEventListener('DOMContentLoaded', function() { document.addEventListener('DOMContentLoaded', function() {
......
import Vue from 'vue' import Vue from 'vue'
import store from './store'
import App from './App' import App from './App'
import echarts from 'echarts/' import echarts from 'echarts/'
import MiniRefreshTools from 'module/minirefresh'; import MiniRefreshTools from 'module/minirefresh';
...@@ -24,6 +25,7 @@ Vue.use(MobileMessage) ...@@ -24,6 +25,7 @@ Vue.use(MobileMessage)
Vue.config.productionTip = false Vue.config.productionTip = false
Vue.prototype.echarts=echarts; Vue.prototype.echarts=echarts;
App.mpType = 'app' App.mpType = 'app'
Vue.prototype.$store = store
console.log(window.url) console.log(window.url)
window.getNavHeight=function(val){ window.getNavHeight=function(val){
uni.setStorage({ uni.setStorage({
...@@ -39,8 +41,8 @@ if(window.pageType=="store"){ ...@@ -39,8 +41,8 @@ if(window.pageType=="store"){
} }
// var src='./i18n/langs/mallCN' // var src='./i18n/langs/mallCN'
var src='./i18n/langs/storeCN' var src='./i18n/langs/storeCN'
console.log(window.pageType)
const i18n=new VueI18n({ const i18n = new VueI18n({
locale:locale, locale:locale,
messages:{ messages:{
// 'en':{...require(src)}, // 'en':{...require(src)},
...@@ -51,6 +53,7 @@ const i18n=new VueI18n({ ...@@ -51,6 +53,7 @@ const i18n=new VueI18n({
Vue.prototype._i18n=i18n; Vue.prototype._i18n=i18n;
const app = new Vue({ const app = new Vue({
i18n, i18n,
store,
...App ...App
}) })
app.$mount() app.$mount()
...@@ -115,10 +115,45 @@ ...@@ -115,10 +115,45 @@
"navigationBarTitleText": "抓拍记录" "navigationBarTitleText": "抓拍记录"
} }
},{ },{
"path": "pages/passenger/condition",
"style": {
"navigationBarTitleText": ""
}
},{
"path": "pages/passenger/groupTimeReport/groupTime", "path": "pages/passenger/groupTimeReport/groupTime",
"style": { "style": {
"navigationBarTitleText": "客群分时统计" "navigationBarTitleText": "客群分时统计"
} }
}, {
"path":"pages/passenger/groupTimeCondition",
"style": {
"navigationBarTitleText": ""
}
}, {
"path": "pages/conditionList/mallList",
"style": {
"navigationBarTitleText": "门店列表"
}
}, {
"path": "pages/conditionList/multiMallList",
"style": {
"navigationBarTitleText": "多选门店列表"
}
}, {
"path": "pages/conditionList/gateList",
"style": {
"navigationBarTitleText": "出入口列表"
}
}, {
"path": "pages/conditionList/multiGateList",
"style": {
"navigationBarTitleText": "多选出入口列表"
}
}, {
"path": "pages/conditionList/typeList",
"style": {
"navigationBarTitleText": "类型列表"
}
}], }],
"condition": { //模式配置,仅开发期间生效 "condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项) "current": 0, //当前激活的模式(list 的索引项)
......
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
currentDay.push(yearIndex); currentDay.push(yearIndex);
currentDay.push(monthIndex); currentDay.push(monthIndex);
currentDay.push(dayIndex); currentDay.push(dayIndex);
console.log('login set current day:', currentDay)
uni.setStorage({ uni.setStorage({
key:'yearData', key:'yearData',
data:JSON.stringify(yearData) data:JSON.stringify(yearData)
......
<template> <template>
<view>抓拍记录</view> <view>
<headerComp
:leftImgSrc="leftImg"
:title="titleStr"
:rightImgSrc="rightImg"
@leftClick="backFun"
@rightClick="conditionFun"></headerComp>
<view class="prefix-elem"></view>
<view class="capture-main">
<view class="capture-item" v-for="item in captureList" :key="item.pic">
<view class="capture-image">
<span class="capture-date">{{ item.counttime }}</span>
<image class="capture-img" ref="imageRef" :src="item.pic" @error="imageError" :lazy-load="true" mode="widthFix"></image>
</view>
<view class="capture-info">
<span class="capture-text__left">年龄: {{ item.age }}</span>
<span class="capture-text__right">性别: {{ item.genderText }}</span>
</view>
<view class="capture-info">
<span class="capture-text__left">类型: {{ item.personType }}</span>
<span class="capture-text__right">表情: {{ item.mood }}</span>
</view>
</view>
</view>
<uniPagination
class="pagination-wrapper"
v-show="captureList.length > 0"
:current="pagination.current"
:total="pagination.total"
:pageSize="pagination.pageSize"
@change="paginationChangeHandle">
</uniPagination>
</view>
</template> </template>
<script> <script>
import headerComp from '../../../components/header.vue'
import leftImg from '../../../static/header/backArrow.png'
import rightImg from '../../../static/header/other.png'
import defaultImg from '../img/default.png'
import defaultMaleImg from '../img/male.png'
import defaultFemaleImg from '../img/female.png'
import { mapState } from 'vuex'
import uniPagination from '@/components/uni-pagination/uni-pagination.vue'
export default {
components: {
headerComp,
uniPagination
},
data() {
return {
titleStr: '抓拍记录',
leftImg: leftImg,
rightImg: rightImg,
curCustomDate: [], // 当前自定义事件
captureList: [],
pagination: {
total: 0,
current: 1,
pageSize: 50
},
canLoadGateId: false,
personType: {}
}
},
onLoad(options) {
if(options.type) {
this.canLoadGateId = true;
}
this.personType = this.getStorage('personType');
this.getCaptureList();
},
created() {
},
computed: {
...mapState({
checkedMallId: state => state.malls.checkedMallId,
checkedGateId: state => state.malls.checkedGateId,
selectedStartTime: state => state.malls.startDayTime,
selectedEndTime: state => state.malls.endDayTime
})
},
methods: {
backFun() {
uni.reLaunch({
url:"../passenger",
})
},
getStorage(key) {
let storageVal = '';
uni.getStorage({
key: key,
success: (res) => {
console.log('storage', res)
storageVal = res.data;
}
})
return storageVal
},
getCaptureList() {
console.log('getCaptureList:', this.selectedTime, this.checkedMallId, this.checkedGateId)
let atoken = this.getStorage('atoken');
this.captureList = [];
uni.showLoading({
title: '加载中'
})
uni.request({
url: window.url + '/faceRecognitions',
data: {
counttime_gte: `${this.selectedStartTime} 00:00:00`,
counttime_lte: `${this.selectedEndTime} 23:59:59`,
accountId: this.getStorage('accountId'),
mallId: this.checkedMallId.id,
gateId: this.canLoadGateId ? (this.checkedGateId.id || '') : '',
personType: this.personType.value || '',
age_gt: 0,
direction: 1,
page: this.pagination.current,
pageSize: this.pagination.pageSize,
sortName: 'counttime',
sortOrder: 'DESC'
},
header: {
'Authorization': atoken
},
method: 'GET',
success: (res) => {
uni.hideLoading()
let result = res.data;
console.log(result);
this.pagination.total = result.data.total;
this.captureList = result.data.list.map((item, index) => {
// let dateStr = item.counttime.match(/^\d{4}\-\d{2}\-\d{2}/)[0].replace('-', '');
item.pic = 'https://vion-retail.oss-cn-beijing.aliyuncs.com/picture/' + (item.facePath && item.facePic
? item.facePath + item.facePic
: item.bodyPath + item.bodyPic);
item.orderIdx = ++index;
item.faceImagePath = item.pic || this.dealDefaultImg(item.gender);
item.age = item.age && item.age >= 0 ? item.age : 'unknown';
item.genderText = typeof(item.gender) === 'number' ? this.dealGender(item.gender) : 'unknown';
item.mood = typeof(item.mood) === 'number' ? item.mood : 'unknown';
item.counttime = item.counttime || 'unknown';
item.personType = item.personType == 0 ? '顾客' : '店员'
return item;
})
}
})
// setTimeout(() => {
// uni.hideLoading()
// }, 1000)
},
dealGender(genderCode) {
return genderCode == 1 ? '男' : (genderCode == 0 ? '女' : 'unknown');
},
dealDefaultImg(genderCode) {
let imagePath = '';
imagePath = genderCode == 1
? defaultMaleImg : genderCode == 0
? defaultFemaleImg : defaultImg;
return imagePath;
},
imageError(e) {
console.log(e)
console.error('image发生error事件,携带值为' + e.detail.errMsg)
// this.$refs.imageRef.src = defaultImg;
},
paginationChangeHandle(backVal) {
console.log('paginationChangeHandle', backVal)
console.log(this.pagination)
let { current } = backVal;
this.pagination.current = current;
this.getCaptureList()
},
conditionFun() {
// console.log(this.mallList)
console.log('condition function:', uni)
uni.navigateTo({
url: '../condition'
})
}
},
}
</script> </script>
<style> <style>
.prefix-elem {
height: 18.11upx;
}
.capture-info:after,
.capture-info:before,
.capture-main:after,
.capture-main:before {
content: '';
display: table;
}
.capture-info:after,
.capture-main:after {
clear: both;
}
.capture-main {
/* padding: 0 18.11upx; */
box-sizing: border-box;
}
.capture-item {
float: left;
width: 48%;
background-color: rgba(255, 255, 255, 1);
box-shadow: 0 0 7.24upx 0 rgba(200, 200, 200, .64);
border-radius: 3.62upx;
margin: 0 5.43upx 10.86upx;
box-sizing: border-box;
}
.capture-image {
position: relative;
}
.capture-date {
position: absolute;
top: 7.24upx;
left: 50%;
margin-left: -123.18upx;
font-size: 21.73upx;
color: #fff;
z-index: 1;
}
.capture-img {
max-width: 100%;
max-height: 100%;
width: 100%;
}
.capture-info {
font-size: 21.73upx;
color: #555;
text-align: left;
padding-left: 7.24upx;
padding-right: 7.24upx;
margin-top: 18.11upx;
margin-bottom: 18.11upx;
box-sizing: border-box;
}
.capture-text__left {
float: left;
width: 50%;
}
.capture-text__right {
float: right;
width: 50%;
}
.pagination-wrapper {
}
</style> </style>
<template> <template>
<view> <view>
客群分时统计 <headerComp
:leftImgSrc="leftImg"
:title="titleStr"
:rightImgSrc="rightImg"
@leftClick="backFun"
@rightClick="conditionFun"></headerComp>
<view class="prefix-elem"></view>
<view class="main-content">
<scroll-view
:scroll-y="true"
class="content-table">
<!-- 人脸性别统计详情 -->
<text class="table-title" v-show="genderColumns.length > 0">{{ genderTitle }}</text>
<v-table
v-if="genderColumns.length > 0"
is-horizontal-resize
style="width: 100%;"
:columns="genderColumns"
:table-data="genderTableData"
row-hover-color="#eee"
row-click-color="#edf7ff">
</v-table>
<!-- 人脸年龄统计详情 -->
<text class="table-title" v-show="ageColumns.length > 0">{{ ageTitle }}</text>
<v-table
v-if="ageColumns.length > 0"
is-horizontal-resize
style="width: 100%;"
:columns="ageColumns"
:table-data="ageTableData"
row-hover-color="#eee"
row-click-color="#edf7ff">
</v-table>
</scroll-view>
</view>
</view> </view>
</template> </template>
<script> <script>
import headerComp from '../../../components/header.vue'
import leftImg from '../../../static/header/backArrow.png'
import rightImg from '../../../static/header/other.png'
import { mapState } from 'vuex'
export default {
components: {
headerComp,
},
data() {
return {
titleStr: '客流分时统计',
leftImg: leftImg,
rightImg: rightImg,
// 性别统计报表
genderTitle: '',
genderTableData: [],
genderColumns: [],
// 年龄统计报表
ageTitle: '',
ageTableData: [],
ageColumns: [],
accountId: null,
atoken: '',
chartIds: '',
reportLevel: '',
params: {}
}
},
onLoad(options) {
this.atoken = this.getStorage('atoken')
// this.getReportKey(options.analysisLevel)
console.log('onload', options)
this.reportLevel = options.analysisLevel || 'mall';
this.getReportKey(this.reportLevel)
},
created() {
this.accountId = this.getStorage('accountId');
// this.$store.dispatch('malls/getMallList', {
// data: {
// accountId:this.accountId,
// _t:Date.parse(new Date()) / 1000
// },
// header: {
// 'Authorization': this.atoken //自定义请求头信息
// },
// isMultiple: true
// })
// this.$store.dispatch('malls/getDateData', 15)
},
computed: {
i18n() {
return this.$t("index")
},
...mapState({
mallList: state => state.malls.list,
checkedMallId: state => state.malls.checkedMallId,
multiCheckedMallId: state => state.malls.multiCheckedMallId,
timeData: state => state.malls.customTimeData,
selectedTime: state => state.malls.selectedDayTime
})
},
watch: {
checkedMallId(val) {
if(this.reportLevel !== 'mall') {
this.params['orgId'] = val.id;
this.getReportKey(this.reportLevel)
}
// this.$store.dispatch('malls/getGateList', {
// data: {
// mallId: val.id,
// status: 1,
// isHasFace: 1,
// _t:Date.parse(new Date()) / 1000
// },
// header: {
// 'Authorization': this.atoken //自定义请求头信息
// },
// isMultiple: true
// })
},
multiCheckedMallId(val) {
console.log('watch multiCheckedMallId', val)
if(this.reportLevel === 'mall') {
this.params['orgId'] = val.map(item => item.id).join(',');
this.getReportKey(this.reportLevel)
}
}
},
mounted() {
console.log('store state', this.mallList, this.checkedMallId, this.multiCheckedMallId)
},
methods: {
backFun() {
uni.reLaunch({
url:"../passenger",
})
},
conditionFun() {
uni.navigateTo({
url: '../groupTimeCondition'
})
},
getReportKey(analysisLevel) {
this.params.orgId = this.reportLevel !== 'mall'
? this.checkedMallId.id
: this.multiCheckedMallId.map(item => item.id).join(',');
if(!this.params.orgId) return;
let keyArr = ['faceGenderDetail', 'faceAgeDetail'];
uni.showLoading({
title: '加载中'
})
uni.request({
url: window.url + '/reportCharts',
data:{
report: 'faceCountAnalyzeSta',
_t: Date.parse(new Date())/1000
},
header: {
'Authorization': this.atoken //自定义请求头信息
},
method:'GET',
success:(res) =>{
let result = res.data;
this.chartIds='';
res.data.data.forEach(item => {
if(keyArr.indexOf(item.key) != -1){
this.chartIds += item.id + ','
}
})
this.chartIds = this.chartIds.substring(0, this.chartIds.length - 1);
this.getChartData(analysisLevel);
}
})
},
getChartData(analysisLevel) {
this.genderTableData = this.genderColumns = [];
uni.request({
url: `${window.url}/report/faceCountAnalyzeSta/${analysisLevel}`,
data: {
orgIds: this.params.orgId,
startDate: `${this.selectedTime} 00:00:00`,
endDate: `${this.selectedTime} 23:59:59`,
chartIds: this.chartIds,
_t: Date.parse(new Date()) / 1000
},
header: {
'Authorization': this.atoken
},
method: 'GET',
success: (res) => {
uni.hideLoading();
let result = res.data;
let bodyData = result.data.body;
let genderResource = result.data.body['faceGenderDetail'];
let columnsKey = this.createKeyObject(genderResource.xaxis.data);
this.genderTitle = genderResource.title;
this.genderColumns = this.createColumns(columnsKey);
this.genderTableData = this.createTableData(columnsKey, genderResource.series);
// 年龄分布
let ageResource = result.data.body['faceAgeDetail'];
let ageColumnsKey = this.createKeyObject(ageResource.xaxis.data);
this.ageTitle = ageResource.title;
this.ageColumns = this.createColumns(ageColumnsKey);
this.ageTableData = this.createTableData(ageColumnsKey, ageResource.series);
}
})
},
createKeyObject(arr) { // 数组转换为key value对象
return arr.map((item, index) => {
return {
key: 'tableKey' + index,
value: item
}
})
},
createColumns(keyObject) { // 生成列数据
return keyObject.map(item => {
return {
field: item.key,
title: item.value,
width: 40,
titleAlign: 'center',
columnAlign: 'center',
isResize: true
}
})
},
createTableData(keyArr, originData) { // 生成表格数据
let result = [], temp = {};
originData.forEach((item, index) => {
if(item.data.length === keyArr.length) {
item.data.forEach((dataItem, dataIndex) => {
temp[keyArr[dataIndex].key] = dataItem || dataItem == 0 ? dataItem : '--';
})
result.push(temp);
temp = {};
}
})
return result;
},
getStorage(key) {
let storageVal = '';
uni.getStorage({
key: key,
success: (res) => {
// console.log('storage', res)
storageVal = res.data;
}
})
return storageVal
},
},
}
</script> </script>
<style> <style>
.prefix-elem {
height: 18.11upx;
}
.table-title {
display: block;
background-color: #fff;
font-size: 28.98upx;
padding: 25.36upx 14.49upx;
box-sizing: border-box;
}
</style> </style>
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
import arrow from '../../static/analysis/rArrow.png' import arrow from '../../static/analysis/rArrow.png'
import baseIcon from '../../static/analysis/base.png' import baseIcon from '../../static/analysis/base.png'
import inout from '../../static/analysis/inout.png' import inout from '../../static/analysis/inout.png'
import { mapState } from 'vuex'
export default { export default {
components: { components: {
...@@ -34,9 +35,47 @@ ...@@ -34,9 +35,47 @@
iconSrc:inout, iconSrc:inout,
rArrow:arrow, rArrow:arrow,
src:'groupTimeReport/groupTime' src:'groupTimeReport/groupTime'
}] }],
} }
}, },
created() {
this.$store.dispatch('malls/getMallList', {
data: {
accountId: this.getStorage('accountId'),
_t:Date.parse(new Date()) / 1000
},
header: {
'Authorization': this.getStorage('atoken') //自定义请求头信息
},
isMultiple: true
})
this.$store.dispatch('malls/getDateData', 15);
uni.setStorage({
key: 'personType',
data: JSON.stringify({id: 1, name: '全部类型', value: ''})
})
},
computed: {
...mapState({
checkedMallId: state => state.malls.checkedMallId
})
},
watch: {
checkedMallId(val) {
this.$store.dispatch('malls/getGateList', {
data: {
mallId: val.id,
status: 1,
isHasFace: 1,
_t:Date.parse(new Date()) / 1000
},
header: {
'Authorization': this.getStorage('atoken') //自定义请求头信息
},
isMultiple: true
})
},
},
methods: { methods: {
goReport(url){ goReport(url){
uni.navigateTo({ uni.navigateTo({
...@@ -45,6 +84,16 @@ ...@@ -45,6 +84,16 @@
animationDuration: 200 animationDuration: 200
}) })
}, },
getStorage(key) {
let storageVal = '';
uni.getStorage({
key: key,
success: (res) => {
storageVal = res.data;
}
})
return storageVal
},
}, },
} }
</script> </script>
......
<!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><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.53a419ec.js rel=prefetch><link href=/appweb/static/js/pages-analysis-index.76be7e83.js rel=prefetch><link href=/appweb/static/js/pages-analysis-inoutReport-inoutDayReport.f9bc2acc.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankDayReport.fb977464.js rel=prefetch><link href=/appweb/static/js/pages-analysis-rankReport-rankWeekReport.d6347026.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticDayReport.18c21c26.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticMonthReport.240ba99e.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticWeekReport.9781c138.js rel=prefetch><link href=/appweb/static/js/pages-analysis-staticReport-staticYearReport.7158d965.js rel=prefetch><link href=/appweb/static/js/pages-index-index.7ee4ade4.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList.5ded8bf4.js rel=prefetch><link href=/appweb/static/js/pages-list-floorList~pages-list-mallList.0d453d24.js rel=prefetch><link href=/appweb/static/js/pages-list-mallList.473f46c1.js rel=prefetch><link href=/appweb/static/js/pages-list-moreFloorList.dee60b0d.js rel=prefetch><link href=/appweb/static/js/pages-list-moreGateList.853d485b.js rel=prefetch><link href=/appweb/static/js/pages-list-moreMallList.70ce21f4.js rel=prefetch><link href=/appweb/static/js/pages-list-moreStoreList.900f6ff7.js rel=prefetch><link href=/appweb/static/js/pages-list-oneFloorList.1d51148f.js rel=prefetch><link href=/appweb/static/js/pages-list-oneMallList.1ec08088.js rel=prefetch><link href=/appweb/static/js/pages-login-login.28c43f48.js rel=prefetch><link href=/appweb/static/js/pages-passenger-captureReport-capture.40e354b2.js rel=prefetch><link href=/appweb/static/js/pages-passenger-condition.586f7194.js rel=prefetch><link href=/appweb/static/js/pages-passenger-groupTimeCondition.0ef50694.js rel=prefetch><link href=/appweb/static/js/pages-passenger-groupTimeReport-groupTime.51741354.js rel=prefetch><link href=/appweb/static/js/pages-passenger-passenger.3118e18b.js rel=prefetch><link href=/appweb/static/js/pages-profile-profile.7c061559.js rel=prefetch><link href=/appweb/static/js/chunk-vendors.e9154df1.js rel=preload as=script><link href=/appweb/static/js/index.a391b3e9.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.e9154df1.js></script><script src=/appweb/static/js/index.a391b3e9.js></script></body></html>
\ No newline at end of file \ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-list-floorList"],{"0037":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=s(n("ce42")),i=s(n("d8f1")),o=s(n("39d8"));function s(t){return t&&t.__esModule?t:{default:t}}var c={data:function(){return{leftSrc:"../../static/header/backArrow.png",titleStr:this.$t("index").areaSelect,accountId:"",atoken:"",mallId:"",floorList:[],zoneList:[],selectFloor:!0,selectZone:!1}},onLoad:function(t){this.atoken=t.atoken,this.accountId=t.accountId,this.mallId=t.mallId,this.getListData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:a.default,uniList:i.default,uniListItem:o.default},methods:{tapFloor:function(){this.selectFloor=!0,this.selectZone=!1},tapZone:function(){this.selectFloor=!1,this.selectZone=!0},selectItem:function(t,e){uni.setStorage({key:"orgIds",data:t}),uni.setStorage({key:"orgName",data:e}),this.selectFloor?uni.setStorage({key:"type",data:"floor"}):uni.setStorage({key:"type",data:"zone"}),uni.reLaunch({url:"../index/index"})},getListData:function(){var t=this;uni.request({url:window.url+"/floors",data:{accountId:this.accountId,mallId:this.mallId,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(e){t.floorList=e.data.data}}),uni.request({url:window.url+"/zones",data:{accountId:this.accountId,mallId:this.mallId,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(e){t.zoneList=e.data.data}})},backClick:function(){uni.navigateBack({delta:1})}}};e.default=c},4557:function(t,e,n){e=t.exports=n("2350")(!1),e.push([t.i,".hearSwich[data-v-a31bd244]{width:100%;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;border:1px solid #0069ff;border-radius:%?10.86?%;font-size:%?21.73?%;margin-top:%?7.24?%}.swichButton[data-v-a31bd244]{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;padding:%?7.24?% 0}.active[data-v-a31bd244]{background:#0069ff;color:#fff}",""])},"90b7":function(t,e,n){"use strict";var a=n("ceae"),i=n.n(a);i.a},c771:function(t,e,n){"use strict";n.r(e);var a=n("0037"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,function(){return a[t]})}(o);e["default"]=i.a},cd6c:function(t,e,n){"use strict";n.r(e);var a=n("ebb0"),i=n("c771");for(var o in i)"default"!==o&&function(t){n.d(e,t,function(){return i[t]})}(o);n("90b7");var s=n("2877"),c=Object(s["a"])(i["default"],a["a"],a["b"],!1,null,"a31bd244",null);e["default"]=c.exports},ceae:function(t,e,n){var a=n("4557");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var i=n("4f06").default;i("2c37de92",a,!0,{sourceMap:!1,shadowMode:!1})},ebb0:function(t,e,n){"use strict";var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("headerComp",{attrs:{leftImgSrc:t.leftSrc,title:t.titleStr},on:{leftClick:function(e){e=t.$handleEvent(e),t.backClick(e)}}}),n("v-uni-view",{staticClass:"hearSwich"},[n("span",{staticClass:"swichButton",class:{active:t.selectFloor},on:{click:function(e){e=t.$handleEvent(e),t.tapFloor(e)}}},[t._v("楼层")]),n("span",{staticClass:"swichButton",class:{active:t.selectZone},on:{click:function(e){e=t.$handleEvent(e),t.tapZone(e)}}},[t._v(t._s(t.i18n.area))])]),n("uni-list",{directives:[{name:"show",rawName:"v-show",value:t.selectFloor,expression:"selectFloor"}]},t._l(t.floorList,function(e){return n("uni-list-item",{attrs:{title:e.name},on:{click:function(n){n=t.$handleEvent(n),t.selectItem(e.id,e.name)}}})})),n("uni-list",{directives:[{name:"show",rawName:"v-show",value:t.selectZone,expression:"selectZone"}]},t._l(t.zoneList,function(e){return n("uni-list-item",{attrs:{title:e.name},on:{click:function(n){n=t.$handleEvent(n),t.selectItem(e.id,e.name)}}})}))],1)},i=[];n.d(e,"a",function(){return a}),n.d(e,"b",function(){return i})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-list-mallList"],{"817d":function(t,e,n){"use strict";n.r(e);var a=n("ae97"),i=n.n(a);for(var u in a)"default"!==u&&function(t){n.d(e,t,function(){return a[t]})}(u);e["default"]=i.a},9199:function(t,e,n){"use strict";var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("headerComp",{attrs:{leftImgSrc:t.leftSrc,title:t.titleStr},on:{leftClick:function(e){e=t.$handleEvent(e),t.backClick(e)}}}),n("uni-list",[n("uni-list-item",{attrs:{title:this.$t("index").allStore},on:{click:function(e){e=t.$handleEvent(e),t.selectStore(t.id)}}}),t._l(t.list,function(e){return n("uni-list-item",{attrs:{title:e.name},on:{click:function(n){n=t.$handleEvent(n),t.selectStore(e.id,e.name)}}})})],2)],1)},i=[];n.d(e,"a",function(){return a}),n.d(e,"b",function(){return i})},ae97:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=c(n("ce42")),i=c(n("d8f1")),u=c(n("39d8"));function c(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{aa:"aa",leftSrc:"../../static/header/backArrow.png",titleStr:this.$t("index").storeSelect,id:"",atoken:"",list:[],accountName:"",url:""}},onLoad:function(t){var e=this;this.url=t.url,uni.getStorage({key:"accountName",success:function(t){e.accountName=t.data}}),uni.getStorage({key:"accountId",success:function(t){e.id=t.data}}),uni.getStorage({key:"atoken",success:function(t){e.atoken=t.data}}),this.getListData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:a.default,uniList:i.default,uniListItem:u.default},methods:{search:function(t,e){console.log(t)},selectStore:function(t,e){uni.setStorage({key:"orgIds",data:t}),t==this.id?(uni.setStorage({key:"type",data:"account"}),uni.setStorage({key:"orgName",data:this.accountName})):(uni.setStorage({key:"type",data:"mall"}),uni.setStorage({key:"orgName",data:e})),uni.reLaunch({url:this.url})},getListData:function(){var t=this;uni.request({url:window.url+"/malls",data:{accountId:this.id,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(e){t.list=e.data.data}})},backClick:function(){uni.navigateBack({delta:1})}}};e.default=o},ea11:function(t,e,n){"use strict";n.r(e);var a=n("9199"),i=n("817d");for(var u in i)"default"!==u&&function(t){n.d(e,t,function(){return i[t]})}(u);var c=n("2877"),o=Object(c["a"])(i["default"],a["a"],a["b"],!1,null,"c7b66c40",null);e["default"]=o.exports}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-list-oneFloorList"],{"0497":function(t,e,i){"use strict";i.r(e);var n=i("fa47"),a=i("d248");for(var s in a)"default"!==s&&function(t){i.d(e,t,function(){return a[t]})}(s);i("8901");var c=i("2877"),r=Object(c["a"])(a["default"],n["a"],n["b"],!1,null,"7a4d7f93",null);e["default"]=r.exports},"19de":function(t,e,i){var n=i("53da");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("23288ac6",n,!0,{sourceMap:!1,shadowMode:!1})},"1c03":function(t,e,i){"use strict";i.r(e);var n=i("d872"),a=i("8f98");for(var s in a)"default"!==s&&function(t){i.d(e,t,function(){return a[t]})}(s);i("2cf0");var c=i("2877"),r=Object(c["a"])(a["default"],n["a"],n["b"],!1,null,"f5ed7cb0",null);e["default"]=r.exports},2205:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={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=n},"2cf0":function(t,e,i){"use strict";var n=i("19de"),a=i.n(n);a.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}",""])},4407:function(t,e,i){"use strict";i.r(e);var n=i("2205"),a=i.n(n);for(var s in n)"default"!==s&&function(t){i.d(e,t,function(){return n[t]})}(s);e["default"]=a.a},"53da":function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".listItem[data-v-f5ed7cb0]{border-bottom:1px solid #979797;height:%?72.46?%;line-height:%?72.46?%;font-size:%?25.37?%;background:#fff;position:relative}.listItem>uni-image[data-v-f5ed7cb0]{width:%?28.99?%;height:%?28.99?%;position:absolute;top:%?23.55?%;left:%?25.36?%}.listItem uni-text[data-v-f5ed7cb0]{margin-left:%?77.89?%}",""])},"7cd4":function(t,e,i){"use strict";var n=i("9f6a"),a=i.n(n);a.a},8901:function(t,e,i){"use strict";var n=i("bd76"),a=i.n(n);a.a},"8f98":function(t,e,i){"use strict";i.r(e);var n=i("ab6d"),a=i.n(n);for(var s in n)"default"!==s&&function(t){i.d(e,t,function(){return n[t]})}(s);e["default"]=a.a},"9f6a":function(t,e,i){var n=i("3595");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("5f4529cb",n,!0,{sourceMap:!1,shadowMode:!1})},a846:function(t,e,i){e=t.exports=i("2350")(!1),e.push([t.i,".searchDiv[data-v-7a4d7f93]{padding:%?12.68?% %?23.55?%;background:#f4f4f5;position:relative}.searchDiv uni-input[data-v-7a4d7f93]{height:%?54.34?%;background:#fff;padding:0 %?45.28?%}.searchDiv uni-image[data-v-7a4d7f93]{width:%?25.37?%;position:absolute;top:%?25.37?%;z-index:9;left:%?297.1?%}.searchDiv .focusClass[data-v-7a4d7f93]{left:%?32.6?%;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}",""])},ab6d:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=s(i("ce42")),a=s(i("0497"));function s(t){return t&&t.__esModule?t:{default:t}}var c={data:function(){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(t){var e=this;this.url=t.url,this.type=t.type,uni.getStorage({key:"accountName",success:function(t){e.accountName=t.data}}),uni.getStorage({key:"accountId",success:function(t){e.id=t.data}}),uni.getStorage({key:"atoken",success:function(t){e.atoken=t.data}}),this.getListData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:n.default,searchBox:a.default},methods:{searchFun:function(t){var e=this;this.list=[],this.allList.forEach(function(i){-1!=i.name.indexOf(t)&&e.list.push(i)})},itemFun:function(t){this.selectIdArr=[],this.selectNameArr=[],this.selectNameArr.push(t.name),this.selectIdArr.push(t.id),this.confirmFun()},confirmFun:function(){uni.removeStorage({key:"selectStoreNameArr",success:function(t){console.log("success")}}),uni.setStorage({key:"selectFloorIdArr",data:JSON.stringify(this.selectIdArr)}),uni.setStorage({key:"selectFloorNameArr",data:JSON.stringify(this.selectNameArr)}),uni.reLaunch({url:this.url+"?type="+this.type})},getListData:function(){var t=this;uni.getStorage({key:"accountList",success:function(e){t.allList=JSON.parse(e.data),t.list=JSON.parse(e.data)}});var e="";uni.getStorage({key:"selectAccountIdArr",success:function(t){e=JSON.parse(t.data)[0]}}),uni.request({url:window.url+"/floors",data:{accountId:this.id,mallId:e,status:1,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(e){t.allList=JSON.parse(JSON.stringify(e.data.data)),t.allList.unshift({name:"全部",id:"all"}),t.list=JSON.parse(JSON.stringify(e.data.data)),t.list.unshift({name:"全部",id:"all"})}})},backClick:function(){uni.navigateBack({delta:1})}}};e.default=c},bd76:function(t,e,i){var n=i("a846");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("e25b0f06",n,!0,{sourceMap:!1,shadowMode:!1})},ce42:function(t,e,i){"use strict";i.r(e);var n=i("f0fa"),a=i("4407");for(var s in a)"default"!==s&&function(t){i.d(e,t,function(){return a[t]})}(s);i("7cd4");var c=i("2877"),r=Object(c["a"])(a["default"],n["a"],n["b"],!1,null,"fc06f43a",null);e["default"]=r.exports},d248:function(t,e,i){"use strict";i.r(e);var n=i("d686"),a=i.n(n);for(var s in n)"default"!==s&&function(t){i.d(e,t,function(){return n[t]})}(s);e["default"]=a.a},d686:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={data:function(){return{isFocus:!1,searchVal:""}},props:{},watch:{},methods:{itemChange:function(){var t=this;setTimeout(function(){t.$emit("handleEvent",t.searchVal),console.log("aaaa",t.searchVal)},300)},inputFocus:function(){this.isFocus=!0},inputBlur:function(){""==this.searchVal&&(this.isFocus=!1)}}};e.default=n},d872:function(t,e,i){"use strict";var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("headerComp",{attrs:{leftImgSrc:t.leftSrc,title:t.titleStr},on:{leftClick:function(e){e=t.$handleEvent(e),t.backClick(e)}}}),i("searchBox",{on:{handleEvent:function(e){e=t.$handleEvent(e),t.searchFun(e)}}}),i("v-uni-view",{staticClass:"list"},t._l(t.list,function(e){return i("v-uni-view",{staticClass:"listItem",on:{click:function(i){i=t.$handleEvent(i),t.itemFun(e)}}},[i("v-uni-text",[t._v(t._s(e.name))])],1)}))],1)},a=[];i.d(e,"a",function(){return n}),i.d(e,"b",function(){return a})},f0fa:function(t,e,i){"use strict";var n=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)},a=[];i.d(e,"a",function(){return n}),i.d(e,"b",function(){return a})},fa47:function(t,e,i){"use strict";var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("div",{staticClass:"searchDiv"},[i("v-uni-image",{class:{focusClass:t.isFocus},attrs:{src:"../../static/list/searchIcon.png",mode:"widthFix"}}),i("v-uni-input",{attrs:{type:"text",placeholder:"输入名称","placeholder-class":"centers","confirm-type":"搜索"},on:{focus:function(e){e=t.$handleEvent(e),t.inputFocus(e)},blur:function(e){e=t.$handleEvent(e),t.inputBlur(e)},input:function(e){e=t.$handleEvent(e),t.itemChange(e)}},model:{value:t.searchVal,callback:function(e){t.searchVal=e},expression:"searchVal"}})],1)])},a=[];i.d(e,"a",function(){return n}),i.d(e,"b",function(){return a})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-list-oneMallList"],{"0497":function(t,e,n){"use strict";n.r(e);var i=n("fa47"),a=n("d248");for(var c in a)"default"!==c&&function(t){n.d(e,t,function(){return a[t]})}(c);n("8901");var s=n("2877"),r=Object(s["a"])(a["default"],i["a"],i["b"],!1,null,"7a4d7f93",null);e["default"]=r.exports},2205:function(t,e,n){"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,n){e=t.exports=n("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,n){"use strict";n.r(e);var i=n("2205"),a=n.n(i);for(var c in i)"default"!==c&&function(t){n.d(e,t,function(){return i[t]})}(c);e["default"]=a.a},"4cd2":function(t,e,n){"use strict";var i=n("c25c"),a=n.n(i);a.a},"65f6":function(t,e,n){"use strict";n.r(e);var i=n("9b8a"),a=n.n(i);for(var c in i)"default"!==c&&function(t){n.d(e,t,function(){return i[t]})}(c);e["default"]=a.a},"7cd4":function(t,e,n){"use strict";var i=n("9f6a"),a=n.n(i);a.a},8901:function(t,e,n){"use strict";var i=n("bd76"),a=n.n(i);a.a},"9b8a":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=c(n("ce42")),a=c(n("0497"));function c(t){return t&&t.__esModule?t:{default:t}}var s={data:function(){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(t){var e=this;this.url=t.url,this.type=t.type,uni.getStorage({key:"accountName",success:function(t){e.accountName=t.data}}),uni.getStorage({key:"accountId",success:function(t){e.id=t.data}}),uni.getStorage({key:"atoken",success:function(t){e.atoken=t.data}}),this.getListData()},computed:{i18n:function(){return this.$t("index")}},components:{headerComp:i.default,searchBox:a.default},methods:{searchFun:function(t){var e=this;this.list=[],this.allList.forEach(function(n){-1!=n.name.indexOf(t)&&e.list.push(n)})},itemFun:function(t){this.selectIdArr=[],this.selectNameArr=[],this.selectNameArr.push(t.name),this.selectIdArr.push(t.id),this.confirmFun()},confirmFun:function(){uni.removeStorage({key:"selectGateNameArr",success:function(t){console.log("success")}}),uni.removeStorage({key:"selectFloorNameArr",success:function(t){console.log("success")}}),uni.setStorage({key:"selectAccountIdArr",data:JSON.stringify(this.selectIdArr)}),uni.setStorage({key:"selectAccountNameArr",data:JSON.stringify(this.selectNameArr)}),uni.reLaunch({url:this.url+"?type="+this.type})},getListData:function(){var t=this;uni.getStorage({key:"accountList",success:function(e){t.allList=JSON.parse(e.data),t.list=JSON.parse(e.data)}})},backClick:function(){uni.navigateBack({delta:1})}}};e.default=s},"9f6a":function(t,e,n){var i=n("3595");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("5f4529cb",i,!0,{sourceMap:!1,shadowMode:!1})},a7d8:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("headerComp",{attrs:{leftImgSrc:t.leftSrc,title:t.titleStr},on:{leftClick:function(e){e=t.$handleEvent(e),t.backClick(e)}}}),n("searchBox",{on:{handleEvent:function(e){e=t.$handleEvent(e),t.searchFun(e)}}}),n("v-uni-view",{staticClass:"list"},t._l(t.list,function(e){return n("v-uni-view",{staticClass:"listItem",on:{click:function(n){n=t.$handleEvent(n),t.itemFun(e)}}},[n("v-uni-text",[t._v(t._s(e.name))])],1)}))],1)},a=[];n.d(e,"a",function(){return i}),n.d(e,"b",function(){return a})},a846:function(t,e,n){e=t.exports=n("2350")(!1),e.push([t.i,".searchDiv[data-v-7a4d7f93]{padding:%?12.68?% %?23.55?%;background:#f4f4f5;position:relative}.searchDiv uni-input[data-v-7a4d7f93]{height:%?54.34?%;background:#fff;padding:0 %?45.28?%}.searchDiv uni-image[data-v-7a4d7f93]{width:%?25.37?%;position:absolute;top:%?25.37?%;z-index:9;left:%?297.1?%}.searchDiv .focusClass[data-v-7a4d7f93]{left:%?32.6?%;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}",""])},aecb:function(t,e,n){"use strict";n.r(e);var i=n("a7d8"),a=n("65f6");for(var c in a)"default"!==c&&function(t){n.d(e,t,function(){return a[t]})}(c);n("4cd2");var s=n("2877"),r=Object(s["a"])(a["default"],i["a"],i["b"],!1,null,"ccfb3374",null);e["default"]=r.exports},bd76:function(t,e,n){var i=n("a846");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("e25b0f06",i,!0,{sourceMap:!1,shadowMode:!1})},c25c:function(t,e,n){var i=n("d632");"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("0c0f574c",i,!0,{sourceMap:!1,shadowMode:!1})},ce42:function(t,e,n){"use strict";n.r(e);var i=n("f0fa"),a=n("4407");for(var c in a)"default"!==c&&function(t){n.d(e,t,function(){return a[t]})}(c);n("7cd4");var s=n("2877"),r=Object(s["a"])(a["default"],i["a"],i["b"],!1,null,"fc06f43a",null);e["default"]=r.exports},d248:function(t,e,n){"use strict";n.r(e);var i=n("d686"),a=n.n(i);for(var c in i)"default"!==c&&function(t){n.d(e,t,function(){return i[t]})}(c);e["default"]=a.a},d632:function(t,e,n){e=t.exports=n("2350")(!1),e.push([t.i,".listItem[data-v-ccfb3374]{border-bottom:1px solid #979797;height:%?72.46?%;line-height:%?72.46?%;font-size:%?25.37?%;background:#fff;position:relative}.listItem>uni-image[data-v-ccfb3374]{width:%?28.99?%;height:%?28.99?%;position:absolute;top:%?23.55?%;left:%?25.36?%}.listItem uni-text[data-v-ccfb3374]{margin-left:%?77.89?%}",""])},d686:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={data:function(){return{isFocus:!1,searchVal:""}},props:{},watch:{},methods:{itemChange:function(){var t=this;setTimeout(function(){t.$emit("handleEvent",t.searchVal),console.log("aaaa",t.searchVal)},300)},inputFocus:function(){this.isFocus=!0},inputBlur:function(){""==this.searchVal&&(this.isFocus=!1)}}};e.default=i},f0fa:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("div",{style:{height:t.navheight+"px",background:"#0069FF"}}),n("v-uni-view",{staticClass:"indexNav"},[n("v-uni-text",{staticClass:"left",on:{click:function(e){e=t.$handleEvent(e),t.lClick(e)}}},[t._v(t._s(t.leftText))]),n("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)),n("span",{staticClass:"right",on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}},[t._v(t._s(t.rightText))]),n("v-uni-image",{staticClass:"rImg",attrs:{src:t.rightImgSrc},on:{click:function(e){e=t.$handleEvent(e),t.rClick(e)}}})],1),n("v-uni-view",{staticClass:"blanks"})],1)},a=[];n.d(e,"a",function(){return i}),n.d(e,"b",function(){return a})},fa47:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("div",{staticClass:"searchDiv"},[n("v-uni-image",{class:{focusClass:t.isFocus},attrs:{src:"../../static/list/searchIcon.png",mode:"widthFix"}}),n("v-uni-input",{attrs:{type:"text",placeholder:"输入名称","placeholder-class":"centers","confirm-type":"搜索"},on:{focus:function(e){e=t.$handleEvent(e),t.inputFocus(e)},blur:function(e){e=t.$handleEvent(e),t.inputBlur(e)},input:function(e){e=t.$handleEvent(e),t.itemChange(e)}},model:{value:t.searchVal,callback:function(e){t.searchVal=e},expression:"searchVal"}})],1)])},a=[];n.d(e,"a",function(){return i}),n.d(e,"b",function(){return a})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-login-login"],{1758:function(t,a,e){var n=e("bfa8");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=e("4f06").default;i("7fec530c",n,!0,{sourceMap:!1,shadowMode:!1})},"591c":function(t,a,e){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var n={data:function(){return{username:"",password:"",navheight:0,atoken:"",id:""}},onLoad:function(){this.getDate(),this.dateArr()},onReady:function(){var t=this;uni.getStorage({key:"statusBarH",success:function(a){t.navheight=a.data}})},methods:{getDate:function(){for(var t=[],a={},e=1999;e<2020;e++){a={value:e+"年",children:[]};for(var n=0;n<12;n++){var i=n+1;i=i>9?i:"0"+i;var o={value:i+"月",children:[]};a.children.push(o);for(var s=new Date(e,n+1,0),r=s.getDate(),u=0;u<r;u++){i=u+1;i=i>9?i:"0"+i;var c={value:i+"日"};a.children[n].children.push(c)}}t.push(a)}uni.setStorage({key:"dayData",data:JSON.stringify(t)})},dateArr:function(){for(var t=[],a=[],e=[],n=[],i=[],o=[],s=[],r=[],u=1999;u<2020;u++)t.push(u+"年");a.push(t);var c=[];for(u=1;u<12;u++){var d=u;u<10&&(d="0"+u),c.push(d+"月")}n.push(t),n.push(c);var l=["第一周","第二周","第三周","第四周","第五周"];o.push(t),o.push(c),o.push(l);var g=new Date,p=g.getFullYear(),f=p-1999;e.push(f);var h=g.getMonth();d=h+1>9?h+1:"0"+(h+1);i.push(f),i.push(h);var v=g.getDay(),b=g.getDate(),w=Math.ceil((b+6-v)/7)-1;s.push(f),s.push(h),s.push(w);var k=b-1;r.push(f),r.push(h),r.push(k),uni.setStorage({key:"yearData",data:JSON.stringify(a)}),uni.setStorage({key:"yearData",data:JSON.stringify(a)}),uni.setStorage({key:"currentYear",data:JSON.stringify(e)}),uni.setStorage({key:"monthData",data:JSON.stringify(n)}),uni.setStorage({key:"currentMonth",data:JSON.stringify(i)}),uni.setStorage({key:"weekData",data:JSON.stringify(o)}),uni.setStorage({key:"currentWeek",data:JSON.stringify(s)}),uni.setStorage({key:"currentDay",data:JSON.stringify(r)})},login:function(){this.username.length<=0?uni.showToast({icon:"none",title:"请输入用户名"}):this.password.length<=0?uni.showToast({icon:"none",title:"请输入密码"}):(uni.showLoading({title:"加载中"}),uni.request({url:window.url+"/users/login",data:{loginName:this.username,password:this.password},method:"POST",success:function(t){uni.hideLoading();var a=t.data;200==a.code?(this.atoken=a.data.atoken,this.id=a.data.user.accountId,uni.request({url:window.url+"/malls",data:{accountId:this.id,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){uni.setStorage({key:"accountList",data:JSON.stringify(t.data.data)})}}),uni.request({url:window.url+"/accounts",data:{id:this.id,_t:Date.parse(new Date)/1e3},header:{Authorization:this.atoken},method:"GET",success:function(t){if(200==t.data.code){var a=t.data.data;uni.setStorage({key:"orgName",data:a[0].name}),uni.setStorage({key:"accountName",data:a[0].name})}uni.switchTab({url:"../index/index"})}}),uni.setStorage({key:"atoken",data:a.data.atoken}),uni.setStorage({key:"accountId",data:a.data.user.accountId}),uni.setStorage({key:"orgIds",data:a.data.user.accountId}),uni.setStorage({key:"type",data:"account"})):uni.showToast({icon:"none",title:a.msg})}}))}}};a.default=n},"5ff9":function(t,a,e){t.exports=e.p+"static/img/loginBg.521f9b73.png"},"722d":function(t,a,e){"use strict";e.r(a);var n=e("c8f5"),i=e("8cfa");for(var o in i)"default"!==o&&function(t){e.d(a,t,function(){return i[t]})}(o);e("8e3f");var s=e("2877"),r=Object(s["a"])(i["default"],n["a"],n["b"],!1,null,"665c4ecb",null);a["default"]=r.exports},"8cfa":function(t,a,e){"use strict";e.r(a);var n=e("591c"),i=e.n(n);for(var o in n)"default"!==o&&function(t){e.d(a,t,function(){return n[t]})}(o);a["default"]=i.a},"8e3f":function(t,a,e){"use strict";var n=e("1758"),i=e.n(n);i.a},bfa8:function(t,a,e){var n=e("b041");a=t.exports=e("2350")(!1),a.push([t.i,".loginBg[data-v-665c4ecb]{background:url("+n(e("5ff9"))+") no-repeat;background-size:100% 100%;height:%?731.88?%}.loginBox[data-v-665c4ecb]{background:#fff;width:%?670.28?%;height:%?663.04?%;position:relative;top:%?311.59?%;margin:0 auto;-webkit-box-shadow:0 0 %?12.68?% 0 rgba(0,0,0,.14);box-shadow:0 0 %?12.68?% 0 rgba(0,0,0,.14);border-radius:%?7.24?%;padding-top:%?85.14?%}.loginTitle[data-v-665c4ecb]{font-size:%?43.47?%;color:#4a4a4a;letter-spacing:%?1.81?%;text-align:center;display:block;position:relative;margin-bottom:%?119.56?%}.inputBox[data-v-665c4ecb]{width:%?528.98?%;border-bottom:%?1.81?% solid #9b9b9b;margin:0 auto;padding-left:%?12.68?%;position:relative}.userBox[data-v-665c4ecb]{margin-bottom:%?43.47?%}.userBox uni-image[data-v-665c4ecb]{height:%?32.6?%;width:%?25.5?%;display:inline-block;position:absolute;top:%?16.3?%}.pwdBox uni-image[data-v-665c4ecb]{height:%?32.6?%;width:%?32.6?%;display:inline-block;position:absolute;top:%?16.3?%}.userInput[data-v-665c4ecb]{display:inline-block;font-size:%?30.79?%;top:%?9.05?%;left:%?54.34?%}.pwdInput[data-v-665c4ecb]{display:inline-block;font-size:%?30.79?%;top:%?9.05?%;left:%?54.34?%}.pwdBox[data-v-665c4ecb]{margin-bottom:%?94.2?%}.loginBtn[data-v-665c4ecb]{width:%?516.36?%;height:%?76.08?%;background:#0069ff;border-radius:21px;font-size:%?36.23?%;color:#fff;line-height:%?76.08?%;letter-spacing:%?25.36?%;padding:0;padding-left:%?25.36?%}",""])},c8f5:function(t,a,e){"use strict";var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("v-uni-view",[e("div",{style:{height:t.navheight+"px",background:"#008fff"}}),e("v-uni-view",{staticClass:"loginBg"},[e("v-uni-view",{staticClass:"loginBox"},[e("v-uni-text",{staticClass:"loginTitle"},[t._v("智慧商业客流6.0")]),e("v-uni-view",{staticClass:"inputBox userBox"},[e("v-uni-image",{attrs:{src:"../../static/login/user.png",mode:""}}),e("v-uni-input",{staticClass:"uni-input userInput",attrs:{focus:"",placeholder:"请输入用户名"},model:{value:t.username,callback:function(a){t.username=a},expression:"username"}})],1),e("v-uni-view",{staticClass:"inputBox pwdBox"},[e("v-uni-image",{attrs:{src:"../../static/login/pwd.png",mode:""}}),e("v-uni-input",{staticClass:"uni-input pwdInput",attrs:{placeholder:"请输入密码",password:""},model:{value:t.password,callback:function(a){t.password=a},expression:"password"}})],1),e("v-uni-button",{staticClass:"loginBtn",on:{click:function(a){a=t.$handleEvent(a),t.login(a)}}},[t._v("登录")])],1)],1)],1)},i=[];e.d(a,"a",function(){return n}),e.d(a,"b",function(){return i})}}]);
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-passenger-index"],{"1a8d":function(n,t,e){},"2c93":function(n,t,e){"use strict";var r=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",[n._v("222")])},u=[];e.d(t,"a",function(){return r}),e.d(t,"b",function(){return u})},"457f":function(n,t,e){"use strict";e.r(t);var r=e("1a8d"),u=e.n(r);for(var a in r)"default"!==a&&function(n){e.d(t,n,function(){return r[n]})}(a);t["default"]=u.a},"4ec6":function(n,t,e){"use strict";e.r(t);var r=e("2c93"),u=e("457f");for(var a in u)"default"!==a&&function(n){e.d(t,n,function(){return u[n]})}(a);var c=e("2877"),f=Object(c["a"])(u["default"],r["a"],r["b"],!1,null,"d656344c",null);t["default"]=f.exports}}]);
\ 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
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!