Browse Source

Merge branch 'dev'

master
jiangyy 5 years ago
parent
commit
4005e1b250
  1. 2
      epmet-oper-web/src/views/main-sidebar.vue
  2. 8
      epmet-oper-web/src/views/modules/customer/customize/ConfigItem.vue

2
epmet-oper-web/src/views/main-sidebar.vue

@ -2,7 +2,7 @@
<aside :class="['aui-sidebar', `aui-sidebar--${$store.state.sidebarLayoutSkin}`]"> <aside :class="['aui-sidebar', `aui-sidebar--${$store.state.sidebarLayoutSkin}`]">
<div class="aui-sidebar__inner"> <div class="aui-sidebar__inner">
<el-menu :default-active="$store.state.sidebarMenuActiveName" <el-menu :default-active="$store.state.sidebarMenuActiveName"
:collapse="false" :collapse="$store.state.sidebarFold"
:unique-opened="true" :unique-opened="true"
:collapseTransition="false" :collapseTransition="false"
class="aui-sidebar__menu"> class="aui-sidebar__menu">

8
epmet-oper-web/src/views/modules/customer/customize/ConfigItem.vue

@ -1,7 +1,7 @@
<!-- 配置详情 --> <!-- 配置详情 -->
<template> <template>
<div style=" position: relative;"> <div style=" position: relative;">
<div v-if="userType==='opea'" <div v-if="userType==='oper'"
class="div_btn"> class="div_btn">
<span style="margin-right:20px">{{customerName}}</span> <span style="margin-right:20px">{{customerName}}</span>
<el-button type="default" <el-button type="default"
@ -133,7 +133,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-table v-if="userType==='opea'" <el-table v-if="userType==='oper'"
:data="resiNoList" :data="resiNoList"
border border
v-loading="noLoading" v-loading="noLoading"
@ -300,7 +300,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-table v-if="userType==='opea'" <el-table v-if="userType==='oper'"
:data="workNoList" :data="workNoList"
border border
v-loading="noLoading" v-loading="noLoading"
@ -429,7 +429,7 @@ export default {
return localStorage.getItem('userType') return localStorage.getItem('userType')
}, },
tableHeight1 () { tableHeight1 () {
if (this.userType === 'opea') { if (this.userType === 'oper') {
return (this.clientHeight - 220) / 2 + 50 return (this.clientHeight - 220) / 2 + 50
} else { } else {
return (this.clientHeight - 220) return (this.clientHeight - 220)

Loading…
Cancel
Save