diff --git a/src/layouts/header/index.vue b/src/layouts/header/index.vue index 6ad01ac..c2d132d 100644 --- a/src/layouts/header/index.vue +++ b/src/layouts/header/index.vue @@ -167,7 +167,9 @@ export default { }, // 获取日志状态 getLogStatus() { - this.token && this.$get(this.api.logNotification).then(({ notification }) => { + this.token && this.$get(this.api.logNotification, { + platformId: Setting.platformId + }).then(({ notification }) => { this.SET_LOG() // 把查看日志状态设置为true if (notification) { this.logVisible = true // 返回true,则显示日志弹框 diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue index a7229d0..3e8a748 100644 --- a/src/pages/account/login/index.vue +++ b/src/pages/account/login/index.vue @@ -96,7 +96,7 @@ - +
提示 @@ -648,6 +648,50 @@ export default { } } } +/deep/.info-dia { + .el-dialog__header { + border-bottom: 0; + } + .info-header { + position: absolute; + top: 20px; + display: flex; + align-items: center; + font-size: 16px; + color: #333; + } + .el-icon-warning { + margin-right: 10px; + color: #e6a23c; + font-size: 24px; + } + .info-wrap { + padding: 10px 33px; + } + .users { + max-height: 125px; + margin-top: 20px; + overflow: auto; + li { + margin: 5px; + font-size: 14px; + color: #333; + } + } + .info-footer { + display: flex; + justify-content: space-between; + // align-items: center; + margin-top: 20px; + } + .el-button { + width: 142px; + } + .unbind { + white-space: normal; + line-height: 1.6; + } +} @media (max-height: 680px) { .wrap .login { padding: 40px 0; diff --git a/src/pages/screen/list/index.vue b/src/pages/screen/list/index.vue index ff0add2..18f0187 100644 --- a/src/pages/screen/list/index.vue +++ b/src/pages/screen/list/index.vue @@ -1075,13 +1075,9 @@ export default { value: res.ll_yh_china[1].tvalue }, { - name: '英国', + name: '大不列颠联合王国', value: res.ll_yh_english[0].tvalue }, - { - name: '欧洲', - value: res.ll_yh_euro[0].tvalue - }, { name: '印度', value: res.ll_yh_india[0].tvalue @@ -1115,7 +1111,8 @@ export default { // 提示框浮层内容格式器,支持字符串模板和回调函数两种形式 // 使用函数模板 传入的数据值 -> value: number | Array formatter: function (val) { - return val.data.name + '利率: ' + val.data.value + '%' + const { data } = val + return data ? (data.name + '利率: ' + data.value + '%') : val.name } }, // 视觉映射组件 @@ -1134,7 +1131,7 @@ export default { realtime: false, // 拖拽时,是否实时更新 // 定义 在选中范围中 的视觉元素 inRange: { - color: ['rgba(219, 207, 149, .9)', '#e6ac53', '#74e2ca', '#85daef', '#9feaa5', '#5475f5'] // 图元的颜色 + color: ['rgba(96, 82, 255, 1)', '#e6ac53', '#74e2ca', '#85daef', '#9feaa5', '#5475f5'] // 图元的颜色 } }, series: [ @@ -1151,7 +1148,7 @@ export default { }, // 地图区域的多边形 图形样式 itemStyle: { - areaColor: '#4c60ff', // 地图区域的颜色 如果设置了visualMap,areaColor属性将不起作用 + areaColor: 'rgba(78, 130, 255, 1)', // 地图区域的颜色 如果设置了visualMap,areaColor属性将不起作用 borderWidth: 0.5, // 描边线宽 为 0 时无描边 borderColor: '#000', // 图形的描边颜色 支持的颜色格式同 color,不支持回调函数 borderType: 'solid' // 描边类型,默认为实线,支持 'solid', 'dashed', 'dotted' @@ -1163,7 +1160,7 @@ export default { color: '#fff' // 文字的颜色 如果设置为 'auto',则为视觉映射得到的颜色,如系列色 }, itemStyle: { - areaColor: 'rgba(41, 63, 255, .9)' // 地图区域的颜色 + areaColor: 'rgba(190, 77, 255, 1)' // 地图区域的颜色 } }, // 自定义地区的名称映射 @@ -1183,7 +1180,7 @@ export default { dataIndex: index }) // 显示提示框 - chart.dispatchAction({ + index < 9 && chart.dispatchAction({ type: 'showTip', seriesIndex: 0, dataIndex: index + 1 @@ -1195,13 +1192,23 @@ export default { dataIndex: index }) // 高亮指定的数据图形 - chart.dispatchAction({ + index < 9 && chart.dispatchAction({ type: 'highlight', seriesIndex: 0, dataIndex: index + 1 }) index++ if (index > data.length - 1) { + chart.dispatchAction({ + type: 'hideTip', + seriesIndex: 0, + dataIndex: 9 + }) + chart.dispatchAction({ + type: 'downplay', + seriesIndex: 0, + dataIndex: 9 + }) index = -1 } }, 2000)