|
@@ -1,11 +1,14 @@
|
|
<template>
|
|
<template>
|
|
<div v-loading.fullscreen.lock="fullscreenLoading">
|
|
<div v-loading.fullscreen.lock="fullscreenLoading">
|
|
|
|
+
|
|
<transition>
|
|
<transition>
|
|
<div class="gotop-index" v-show="btnFlag">
|
|
<div class="gotop-index" v-show="btnFlag">
|
|
<a href="javascript:;" class="gotop-a" @click="backTop"></a>
|
|
<a href="javascript:;" class="gotop-a" @click="backTop"></a>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</transition>
|
|
<div class="reportsbale-all">
|
|
<div class="reportsbale-all">
|
|
|
|
+ <!-- <WorldMap style="width: 100%;height:600px;" id="WorldMap" ref="WorldMap" :chartData="worldChartData"></WorldMap> -->
|
|
|
|
+ <!-- <world-chart :id="WorldMap" ref="WorldMap" :chartData="worldChartData"/> -->
|
|
<div class="reportsbale-info">
|
|
<div class="reportsbale-info">
|
|
<div style="display: flex;">
|
|
<div style="display: flex;">
|
|
<div class="reportsbale-info-li">
|
|
<div class="reportsbale-info-li">
|
|
@@ -481,7 +484,7 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
<!-- <el-table-column
|
|
<!-- <el-table-column
|
|
- prop="payWay"
|
|
|
|
|
|
+ prop="payWay"
|
|
label="支付方式"
|
|
label="支付方式"
|
|
width="40">
|
|
width="40">
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
@@ -1037,13 +1040,10 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
|
|
+import WorldMap from "../ConferenceModule/WorldMap.vue"; //引入地图组件
|
|
|
|
+import "../../assets/js/world"
|
|
export default {
|
|
export default {
|
|
- beforeRouteLeave(to, from, next) {
|
|
|
|
- if(to.name!='Groupreports'){
|
|
|
|
- localStorage.removeItem('tzbbval');
|
|
|
|
- }
|
|
|
|
- next()
|
|
|
|
- },
|
|
|
|
|
|
+ components: { WorldMap },
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
groupInfo:{},
|
|
groupInfo:{},
|
|
@@ -1076,7 +1076,12 @@ export default {
|
|
feeTotalStr:'',
|
|
feeTotalStr:'',
|
|
btnFlag: false,
|
|
btnFlag: false,
|
|
scrollTop:0,
|
|
scrollTop:0,
|
|
- fullscreenLoading:false
|
|
|
|
|
|
+ fullscreenLoading:false,
|
|
|
|
+ worldChartData:{
|
|
|
|
+ namemap:{}, // 自定义地区的名称映射,从官方world.json中获取
|
|
|
|
+ dataArr: [], // 地图系列中的数据内容数组,从后台返回数据
|
|
|
|
+ },
|
|
|
|
+ isShow:false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods:{
|
|
methods:{
|
|
@@ -1095,7 +1100,6 @@ export default {
|
|
id: that.diid
|
|
id: that.diid
|
|
}
|
|
}
|
|
}).then(function (res) {
|
|
}).then(function (res) {
|
|
- console.log(res)
|
|
|
|
if(res.data.code==200){
|
|
if(res.data.code==200){
|
|
that.groupInfo=res.data.data;
|
|
that.groupInfo=res.data.data;
|
|
that.PostGroupStatementDetails();
|
|
that.PostGroupStatementDetails();
|
|
@@ -1125,7 +1129,6 @@ export default {
|
|
isAudit:true
|
|
isAudit:true
|
|
}
|
|
}
|
|
}).then(function (res) {
|
|
}).then(function (res) {
|
|
- console.log(res)
|
|
|
|
var resinif=res.data.data
|
|
var resinif=res.data.data
|
|
if(res.data.code==200){
|
|
if(res.data.code==200){
|
|
that.feeTotalStr=resinif.feeTotalStr;
|
|
that.feeTotalStr=resinif.feeTotalStr;
|
|
@@ -1185,7 +1188,6 @@ export default {
|
|
},
|
|
},
|
|
// 为了计算距离顶部的高度,当高度大于60显示回顶部图标,小于60则隐藏
|
|
// 为了计算距离顶部的高度,当高度大于60显示回顶部图标,小于60则隐藏
|
|
scrollToTop() {
|
|
scrollToTop() {
|
|
- console.log(123);
|
|
|
|
const that = this;
|
|
const that = this;
|
|
let scrollTop =
|
|
let scrollTop =
|
|
window.pageYOffset ||
|
|
window.pageYOffset ||
|
|
@@ -1217,11 +1219,24 @@ export default {
|
|
return value.replace(/\\t/g," ")
|
|
return value.replace(/\\t/g," ")
|
|
},
|
|
},
|
|
title_br(value){
|
|
title_br(value){
|
|
- console.log(value)
|
|
|
|
return value.split(/\\r\\n/g).join('<br/>')
|
|
return value.split(/\\r\\n/g).join('<br/>')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ created(){
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ beforeRouteLeave(to, from, next) {
|
|
|
|
+ if(to.name!='Groupreports'){
|
|
|
|
+ localStorage.removeItem('tzbbval');
|
|
|
|
+ }
|
|
|
|
+ next()
|
|
|
|
+ },
|
|
mounted(){
|
|
mounted(){
|
|
|
|
+ this.worldChartData.namemap=this.$store.state.worldjson.namemap;
|
|
|
|
+ this.worldChartData.dataArr=this.$store.state.worldjson.dataArr;
|
|
|
|
+ console.log(this.worldChartData);
|
|
|
|
+ this.isShow=true;
|
|
this.diid = Number(this.$route.query.id);
|
|
this.diid = Number(this.$route.query.id);
|
|
this.token=JSON.parse(localStorage.getItem('userinif')).token;
|
|
this.token=JSON.parse(localStorage.getItem('userinif')).token;
|
|
this.pageId=Number(localStorage.getItem('indexs').split('-')[1]);//页面id
|
|
this.pageId=Number(localStorage.getItem('indexs').split('-')[1]);//页面id
|