|
@@ -13,8 +13,8 @@
|
|
|
<div class="home-right">
|
|
|
<span style="color: #8d9399">
|
|
|
<span class="span3">{{ times }}</span>
|
|
|
- <img @click="changeSkin" @mouseenter="showSwitchTip = true" @mouseleave="delayToHideTip" src="../../assets/images/icons/switch.png">
|
|
|
- <div class="tip" v-show="showSwitchTip" @mouseenter="cancelHideTip" @mouseleave="showSwitchTip = false" >
|
|
|
+ <img @click="changeSkin" @mouseleave="delayToHideTip" src="../../assets/images/icons/switch.png">
|
|
|
+ <div class="tip" @mouseenter="cancelHideTip" >
|
|
|
{{skinMode === 'light' ? '切换驾驶舱':'切换集团首页'}}
|
|
|
</div>
|
|
|
</span>
|
|
@@ -353,8 +353,9 @@
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
+ <!-- v-show="pageCount > 9" -->
|
|
|
<Pagination
|
|
|
- v-show="pageCount > 9"
|
|
|
+
|
|
|
:pageCount="pageCount"
|
|
|
style="float: right; margin-top: 20px"
|
|
|
:page="currentPage"
|
|
@@ -407,7 +408,7 @@ export default {
|
|
|
testTree: true,
|
|
|
exceptionData: [],
|
|
|
storeExceptionData: [],
|
|
|
- activeName: "",
|
|
|
+ activeName: "2",
|
|
|
systemExceptionData: {},
|
|
|
showMask: false, // 控制遮罩层的显示隐藏
|
|
|
placeholder: "全部",
|
|
@@ -1197,9 +1198,6 @@ export default {
|
|
|
*@description 打开弹窗
|
|
|
*/
|
|
|
openMaskPanel(system) {
|
|
|
- if(this.skinMode === 'dark') {
|
|
|
- return false;
|
|
|
- }
|
|
|
let target = this.getDataByCityCcode(this.selectedZone)
|
|
|
if (target) {
|
|
|
this.currentDialogLevel = target.level
|
|
@@ -1224,6 +1222,7 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
if (this.tabData.length) {
|
|
|
this.activeName = this.tabData[0].id;
|
|
|
this.currentDialogTab = this.activeName;
|