|
@@ -1,14 +1,40 @@
|
|
<script setup name="DataEDBIndex">
|
|
<script setup name="DataEDBIndex">
|
|
import {reactive,ref, watch} from 'vue'
|
|
import {reactive,ref, watch} from 'vue'
|
|
import apiDataEDB from '@/api/dataEDB'
|
|
import apiDataEDB from '@/api/dataEDB'
|
|
|
|
+import {apiCommonSetSysConfig} from '@/api/common'
|
|
import EDBClassify from './components/EDBClassify.vue'
|
|
import EDBClassify from './components/EDBClassify.vue'
|
|
-import { showToast } from 'vant'
|
|
|
|
|
|
+import { showSuccessToast, showToast } from 'vant'
|
|
import {useRouter} from 'vue-router'
|
|
import {useRouter} from 'vue-router'
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
|
+import langIconZH from '@/assets/imgs/chartETA/lang-icon.png'
|
|
|
|
+import langIconEN from '@/assets/imgs/chartETA/langEn-icon.png'
|
|
|
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
const router=useRouter()
|
|
const router=useRouter()
|
|
|
|
|
|
|
|
+const langType=ref('zh')
|
|
|
|
+// 获取当前要显示的语言版本
|
|
|
|
+async function getLangType(){
|
|
|
|
+ const res=await apiDataEDB.getEDBShowLangType()
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ langType.value=res.Data.Language==='CN'?'zh':'en'
|
|
|
|
+ classifyPopIns.value.langTypeChange(langType.value)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+getLangType()
|
|
|
|
+//设置语言
|
|
|
|
+async function langTypeChange(){
|
|
|
|
+ const res=await apiCommonSetSysConfig({
|
|
|
|
+ ConfigCode: 'edb_language',
|
|
|
|
+ ConfigValue: langType.value === 'en' ? 'EN' : 'CN'
|
|
|
|
+ })
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ showSuccessToast('设置成功')
|
|
|
|
+ langType.value=langType.value === 'en' ? 'zh' : 'en'
|
|
|
|
+ classifyPopIns.value.langTypeChange(langType.value)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
|
|
const listState = reactive({
|
|
const listState = reactive({
|
|
list:[],
|
|
list:[],
|
|
@@ -21,13 +47,14 @@ const listState = reactive({
|
|
activeClassifyId:0,
|
|
activeClassifyId:0,
|
|
})
|
|
})
|
|
async function getEDBList(){
|
|
async function getEDBList(){
|
|
|
|
+ listState.loading=true
|
|
const res=await apiDataEDB.edbChartList({
|
|
const res=await apiDataEDB.edbChartList({
|
|
PageSize:listState.pageSize,
|
|
PageSize:listState.pageSize,
|
|
CurrentIndex:listState.page,
|
|
CurrentIndex:listState.page,
|
|
ClassifyId:listState.activeClassifyId
|
|
ClassifyId:listState.activeClassifyId
|
|
})
|
|
})
|
|
- if(res.Ret===200){
|
|
|
|
- listState.loading=false
|
|
|
|
|
|
+ listState.loading=false
|
|
|
|
+ if(res.Ret===200){
|
|
const arr=res.Data.List||[]
|
|
const arr=res.Data.List||[]
|
|
listState.list=[...listState.list,...arr]
|
|
listState.list=[...listState.list,...arr]
|
|
listState.total=res.Data.Paging.Totals
|
|
listState.total=res.Data.Paging.Totals
|
|
@@ -62,22 +89,20 @@ function handleSelectActionOpt(e){
|
|
// 分类弹窗
|
|
// 分类弹窗
|
|
const classifyPopIns=ref(null)
|
|
const classifyPopIns=ref(null)
|
|
const showClassifyPop=ref(false)
|
|
const showClassifyPop=ref(false)
|
|
-watch(
|
|
|
|
- ()=>showClassifyPop.value,
|
|
|
|
- (n)=>{
|
|
|
|
- if(!n){
|
|
|
|
- listState.page=1
|
|
|
|
- listState.list=[]
|
|
|
|
- listState.finished=false
|
|
|
|
- listState.total=0
|
|
|
|
- getEDBList()
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-)
|
|
|
|
function handleSelectClassifyChange(e){
|
|
function handleSelectClassifyChange(e){
|
|
listState.activeClassifyName=e.selectClassifyNameStr
|
|
listState.activeClassifyName=e.selectClassifyNameStr
|
|
listState.activeClassifyId=e.selectClassifyId
|
|
listState.activeClassifyId=e.selectClassifyId
|
|
}
|
|
}
|
|
|
|
+watch(
|
|
|
|
+ ()=>listState.activeClassifyId,
|
|
|
|
+ ()=>{
|
|
|
|
+ listState.page=1
|
|
|
|
+ listState.list=[]
|
|
|
|
+ listState.finished=false
|
|
|
|
+ listState.total=0
|
|
|
|
+ getEDBList()
|
|
|
|
+ }
|
|
|
|
+)
|
|
|
|
|
|
// 单个指标操作数据
|
|
// 单个指标操作数据
|
|
const edbOptState=reactive({
|
|
const edbOptState=reactive({
|
|
@@ -175,30 +200,10 @@ async function handleConfirmEDBMove(){
|
|
|
|
|
|
// 跳转详情
|
|
// 跳转详情
|
|
function handleEDBDetail(item){
|
|
function handleEDBDetail(item){
|
|
- let edbType=1// 1基础指标 2计算指标
|
|
|
|
- // 基础指标
|
|
|
|
- if(item.EdbType===1 || [58,59,67,68].includes(item.Source)){
|
|
|
|
- edbType=1
|
|
|
|
- }
|
|
|
|
- // 计算指标
|
|
|
|
- if(item.EdbType === 2 && ![27,40,58,59].includes(item.Source)){
|
|
|
|
- edbType=2
|
|
|
|
- }
|
|
|
|
- //代码运算
|
|
|
|
- if(item.Source===27){
|
|
|
|
- showToast('代码运算指标请在pc端操作')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- //数据调整
|
|
|
|
- if(item.Source===40){
|
|
|
|
- showToast('数据调整指标请在pc端操作')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
router.push({
|
|
router.push({
|
|
path:'/dataEDB/detail',
|
|
path:'/dataEDB/detail',
|
|
query:{
|
|
query:{
|
|
- edbInfoId:item.EdbInfoId,
|
|
|
|
- edbType:edbType
|
|
|
|
|
|
+ edbInfoId:item.EdbInfoId
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -223,8 +228,7 @@ async function goSearch(){
|
|
@click-input="goSearch"
|
|
@click-input="goSearch"
|
|
/>
|
|
/>
|
|
<div class="lang-icon icon">
|
|
<div class="lang-icon icon">
|
|
- <img v-if="true" src="@/assets/imgs/chartETA/lang-icon.png" alt="">
|
|
|
|
- <img v-if="false" src="@/assets/imgs/chartETA/langEn-icon.png" alt="">
|
|
|
|
|
|
+ <img :src="langType==='zh'?langIconZH:langIconEN" alt="" @click="langTypeChange">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="count-box">
|
|
<div class="count-box">
|
|
@@ -246,7 +250,7 @@ async function goSearch(){
|
|
<img v-if="listState.list.length==0&&listState.finished" class="list-empty-img" src="https://hzstatic.hzinsights.com/static/ETA_mobile/empty_img.png" alt="">
|
|
<img v-if="listState.list.length==0&&listState.finished" class="list-empty-img" src="https://hzstatic.hzinsights.com/static/ETA_mobile/empty_img.png" alt="">
|
|
<ul class="edb-list">
|
|
<ul class="edb-list">
|
|
<li class="edb-item" v-for="item in listState.list" :key="item.EdbInfoId" @click="handleEDBDetail(item)">
|
|
<li class="edb-item" v-for="item in listState.list" :key="item.EdbInfoId" @click="handleEDBDetail(item)">
|
|
- <div class="van-multi-ellipsis--l2 name">{{item.EdbName}}</div>
|
|
|
|
|
|
+ <div class="van-multi-ellipsis--l2 name">{{langType==='zh'?item.EdbName:item.EdbNameEn||item.EdbName}}</div>
|
|
<van-image
|
|
<van-image
|
|
class="img"
|
|
class="img"
|
|
:src="item.ChartImage"
|
|
:src="item.ChartImage"
|
|
@@ -349,6 +353,7 @@ async function goSearch(){
|
|
background-color: $page-bg-grey;
|
|
background-color: $page-bg-grey;
|
|
}
|
|
}
|
|
.fixed-opt-btn{
|
|
.fixed-opt-btn{
|
|
|
|
+ cursor: pointer;
|
|
width: var(--van-back-top-size);
|
|
width: var(--van-back-top-size);
|
|
height: var(--van-back-top-size);
|
|
height: var(--van-back-top-size);
|
|
position: fixed;
|
|
position: fixed;
|
|
@@ -382,6 +387,7 @@ async function goSearch(){
|
|
padding: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
.lang-icon{
|
|
.lang-icon{
|
|
|
|
+ cursor: pointer;
|
|
margin-left: 10px;
|
|
margin-left: 10px;
|
|
width: 70px;
|
|
width: 70px;
|
|
height:70px;
|
|
height:70px;
|
|
@@ -414,6 +420,7 @@ async function goSearch(){
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.menu-icon{
|
|
.menu-icon{
|
|
|
|
+ cursor: pointer;
|
|
width: 48px;
|
|
width: 48px;
|
|
height: 48px;
|
|
height: 48px;
|
|
flex-shrink: 0;
|
|
flex-shrink: 0;
|
|
@@ -429,6 +436,7 @@ async function goSearch(){
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
gap: 30px 0;
|
|
gap: 30px 0;
|
|
.edb-item{
|
|
.edb-item{
|
|
|
|
+ cursor: pointer;
|
|
width: 326px;
|
|
width: 326px;
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
background: #FFF;
|
|
background: #FFF;
|
|
@@ -446,6 +454,7 @@ async function goSearch(){
|
|
font-size: 24px;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
.opt-icon{
|
|
.opt-icon{
|
|
|
|
+ cursor: pointer;
|
|
float: right;
|
|
float: right;
|
|
width: 28px;
|
|
width: 28px;
|
|
height: 28px;
|
|
height: 28px;
|
|
@@ -469,4 +478,67 @@ async function goSearch(){
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+@media screen and (min-width:$media-width){
|
|
|
|
+ .fixed-opt-btn{
|
|
|
|
+ bottom: calc(var(--van-back-top-bottom) + var(--van-back-top-size) + 10px);
|
|
|
|
+ svg{
|
|
|
|
+ width: 20px;
|
|
|
|
+ height: 20px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .top-sticky-box{
|
|
|
|
+ top: 60px;
|
|
|
|
+ .search-box{
|
|
|
|
+ padding: 20px $page-padding;
|
|
|
|
+ .lang-icon{
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ width: 35px;
|
|
|
|
+ height: 35px;
|
|
|
|
+ img{
|
|
|
|
+ width: 23px;
|
|
|
|
+ height: 23px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .count-box{
|
|
|
|
+ padding: 20px $page-padding;
|
|
|
|
+ .con{
|
|
|
|
+ .num{
|
|
|
|
+ margin-left: 12px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .menu-icon{
|
|
|
|
+ width: 30px;
|
|
|
|
+ height: 30px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .edb-list-wrap{
|
|
|
|
+ padding: 32px $page-padding;
|
|
|
|
+ .edb-list{
|
|
|
|
+ gap: 15px;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ .edb-item{
|
|
|
|
+ width: 313px;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ padding: 10px;
|
|
|
|
+ .name{
|
|
|
|
+ min-height: 36px;
|
|
|
|
+ }
|
|
|
|
+ .img{
|
|
|
|
+ height: 220px;
|
|
|
|
+ margin: 14px 0;
|
|
|
|
+ }
|
|
|
|
+ .time{
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+ .opt-icon{
|
|
|
|
+ width: 28px;
|
|
|
|
+ height: 28px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
</style>
|
|
</style>
|