123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- <template>
- <div class="app-wrapper" :class="classObj">
- <div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"></div>
-
- <div class="mainBox">
- <div class="navLeft">
- <div v-if="menzhenShow" :class="index == 0 ? 'navOne navActive' : 'navOne'" @click="clickActive(0,'HIS管理')">
- <i class="iconfont icon--yishengmenzhen navIcon"></i>
- <p>HIS管理</p>
- </div>
- <div v-if="bingliShow" :class="index == 1 ? 'navOne navActive' : 'navOne'" @click="clickActive(1,'电子病历')">
- <i class="iconfont icon-s_bingli navIcon"></i>
- <p>电子病历</p>
- </div>
- <div v-if="medicianshow" :class="index == 7 ? 'navOne navActive' : 'navOne'" @click="clickActive(7,'药房管理')">
- <i class="iconfont icon-shangcheng-1 navIcon"></i>
- <p>药房管理</p>
- </div>
- <div v-if="touxiShow" :class="index == 2 ? 'navOne navActive' : 'navOne'" @click="clickActive(2,'透析管理')">
- <i class="iconfont icon-computer_fill navIcon"></i>
- <p>透析管理</p>
- </div>
- <div v-if="caigouShow" :class="index == 5 ? 'navOne navActive' : 'navOne'" @click="clickActive(5,'采购管理')">
- <i class="iconfont icon-kccx navIcon"></i>
- <p>采购管理</p>
- </div>
- <div v-if="kucunShow" :class="index == 3 ? 'navOne navActive' : 'navOne'" @click="clickActive(3,'库房管理')">
- <i class="iconfont icon-kccx navIcon"></i>
- <p>库房管理</p>
- </div>
- <div v-if="kuyishoppingShow" :class="index == 4 ? 'navOne navActive' : 'navOne'" @click="clickActive(4,'圣械通')">
- <i class="iconfont icon-shangcheng-1 navIcon"></i>
- <p>圣械通</p>
- </div>
-
- <div class="navOne" @click="open">
- <i class="iconfont icon-manage_fill navIcon"></i>
- <p>更多</p>
- </div>
- </div>
- <sidebar :navTitle="navTitle" v-show="navShow" class="sidebar-container" @func="show"></sidebar>
- <div class="main-container new-main-container" style="flex:1;margin-top:50px;">
- <navbar></navbar>
-
- <!-- <tags-view></tags-view> -->
- <app-main></app-main>
- </div>
- </div>
- <div class="dialogMadol" v-if="sign" @click="close"></div>
- <div class="dialogBox" v-if="sign">
- <div class="dialogBoxTitle">
- <span>更多菜单</span>
- <span @click="close">关闭</span>
- </div>
- <div class="dialogMain">
- <!-- <div class="dialogMainOne" @click="clickActive(5,'库存管理')">
- <div class="dialogIcon">
- <i class="el-icon-menu newIcon"></i>
- </div>
- <p>库存管理</p>
- </div> -->
- <!-- <a :href="CDMWebsit()" target="_blank" v-if="this.$store.getters.xt_user.cdm_role_exist">
- <div class="dialogMainOne">
- <div class="dialogIcon">
- <i class="iconfont icon-yiliao newIcon"></i>
- </div>
- <p>慢病管理</p>
- </div>
- </a>
- <a :href="SCRMWebsit()" target="_blank" v-if="this.$store.getters.xt_user.scrm_role_exist">
- <div class="dialogMainOne">
- <div class="dialogIcon">
- <i class="iconfont icon-yingxiao newIcon"></i>
- </div>
- <p>营销管理</p>
- </div>
- </a> -->
- <!-- <div class="dialogMainOne">
- <div class="dialogIcon">
- <i class="iconfont icon-shujufenxi-jingyinggaikuang newIcon"></i>
- </div>
- <p>经营中心</p>
- </div> -->
- <a :href="MircoMallWebsit()" target="_blank" v-if="this.$store.getters.xt_user.mall_role_exist">
- <div class="dialogMainOne">
- <div class="dialogIcon">
- <i class="iconfont icon-fenxiao newIcon"></i>
- </div>
- <p>分销商城</p>
- </div>
- </a>
- <div v-if="peizhiShow" class="dialogMainOne" @click="clickActive(11,'配置管理')">
- <div class="dialogIcon">
- <i class="iconfont icon-setup_fill newIcon"></i>
- </div>
- <p>配置管理</p>
- </div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import { mapGetters } from "vuex";
- import { Navbar, Sidebar, AppMain, TagsView } from './components'
- import ResizeMixin from './mixin/ResizeHandler'
-
- export default {
- name: 'layout',
- components: {
- Navbar,
- Sidebar,
- AppMain,
- TagsView
- },
- mixins: [ResizeMixin],
- data(){
- return{
- index:2,
- navTitle:'透析管理',
- sign:false,
- navShow:true,
- //
- menzhenShow:true,
- bingliShow:true,
- touxiShow:true,
- kucunShow:true,
- medicianshow:true,
- peizhiShow:true,
- kuyishoppingShow:true,
- caigouShow:true,
- }
- },
- created(){
- let menzhen = ['hospitalStation',"hospitalRecord","hospitalCharges","DepositManagement","hisTool","eleFaPiao",'outpatientRegistration','outpatientDoctorStation','outpatientCharges','outpatientPharmacy','outpatientRecord'];
- let bingli = ['User','createPatient'];
- let touxi = ['home','workforce', 'dialysisrecord', 'dialysis', 'medicalScheduling', 'signIndex', 'qcd', 'device', 'quality_control','dialysis_index','log_index'];
- let kucun = ['stockManage','stockDrugs','selfPreparedMedicine','inventoryTransfer','wareHouseManage','otherManagement'];
- let caigou = ['supplyManage','supplyList'];
- let peizhi = ['system','roleManage','DepartManage', 'bedManagement', 'dictionaryManagement', 'templateManagement','showconfig','printTemplate','integration_config','basicConfig'];
- let kuyishopping = ['kuyiShopping'];
- let medician = ['PatientDispensing','DrugDispensing','DispensingDetails','stockDrugs']
- let menzhenArr = [];
- let bingliArr = [];
- let touxiArr = [];
- let kucunArr = [];
- let peizhiArr = [];
- let kuyishoppingArr = [];
- let caigouArr =[]
- let medicianArr = []
- this.permission_routers.map(item => {
- if(menzhen.indexOf(item.name) > -1){
- menzhenArr.push(item)
- }else if(bingli.indexOf(item.name) > -1){
- bingliArr.push(item)
- }else if(touxi.indexOf(item.name) > -1){
- touxiArr.push(item)
- }else if(kucun.indexOf(item.name) > -1){
- kucunArr.push(item)
- }else if(peizhi.indexOf(item.name) > -1){
- peizhiArr.push(item)
- }else if(kuyishopping.indexOf(item.name) > -1){
- kuyishoppingArr.push(item)
- }else if(caigou.indexOf(item.name)>-1){
- caigouArr.push(item)
- }else if(medician.indexOf(item.name) > -1){
- medicianArr.push(item)
- }
- });
- // console.log('menzhenArr.length',menzhenArr.length)
- // console.log('bingliArr.length',bingliArr.length)
- // console.log('touxiArr.length',touxiArr.length)
- // console.log('kucunArr.length',kucunArr.length)
- // console.log('peizhiArr.length',peizhiArr.length)
- // console.log('kuyishoppingArr.length',kuyishoppingArr.length)
- // console.log("cagouArr23323322323",caigouArr.length)
- if(menzhenArr.length == 0){
- this.menzhenShow = false
- }else if(bingliArr.length == 0){
- this.bingliShow = false
- }else if(touxiArr.length == 0){
- this.touxiShow = false
- }else if(kucunArr.length == 0){
- this.kucunShow = false
- }else if(peizhiArr.length == 0){
- this.peizhiShow = false
- }else if(kuyishoppingArr.length == 0){
- this.kuyishoppingShow = false
- }else if(caigouArr.length == 0){
- this.caigouShow = false
- }
- },
- computed: {
- ...mapGetters(["permission_routers"]),
- sidebar() {
- return this.$store.state.app.sidebar
- },
- device() {
- return this.$store.state.app.device
- },
- classObj() {
- return {
- hideSidebar: !this.sidebar.opened,
- openSidebar: this.sidebar.opened,
- withoutAnimation: this.sidebar.withoutAnimation,
- mobile: this.device === 'mobile'
- }
- }
- },
- methods: {
- handleClickOutside() {
- this.$store.dispatch('closeSideBar', { withoutAnimation: false })
- },
- clickActive(index,title){
- if(index == 4){
- // this.$router.push({ path: "/kuyiShopping",name:"kuyiShopping" })
- this.$router.push('/kuyiShopping/index')
- }else if(index == 6){
- this.CDMWebsit()
- }
- this.index = index;
- this.navTitle = title;
- this.sign = false
- },
- open(){
- this.sign = true
- },
- close(){
- this.sign = false
- },
- show(data){
- this.navShow = data
- },
- SCRMWebsit() {
- return process.env.SRCM_HOST;
- },
- MircoMallWebsit() {
- return process.env.MIRCO_MALL_HOST;
- },
- CDMWebsit() {
- return process.env.CDM_HOST;
- },
- }
- }
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- @import "src/styles/mixin.scss";
- .app-wrapper {
- @include clearfix;
- position: relative;
- height: 100%;
- width: 100%;
- &.mobile.openSidebar{
- position: fixed;
- top: 0;
- }
- }
- .drawer-bg {
- background: #000;
- opacity: 0.3;
- width: 100%;
- top: 0;
- height: 100%;
- position: absolute;
- z-index: 999;
- }
- // .sidebar-container{
- // position: fixed;
- // top:50px;
- // left:0;
- // }
- .navLeft{
- width:80px;
- height:100%;
- background: #1F2D3D;
- margin-top:50px;
- .navOne{
- font-size:14px;
- width:80px;
- height:80px;
- color:#BFCBD9;
- display: flex;
- align-items: center;
- flex-direction: column;
- cursor: pointer;
- .navIcon{
- margin: 16px 0 10px 0;
- font-size: 24px;
- }
- }
- .navActive{
- background: #409EFF;
- color:#fff;
- }
- }
- .mainBox{
- display:flex;
- width:100%;
- height:calc(100% - 50px)
- }
- #app .sidebar-container {
- width: 140px !important;
- height: 100%;
- margin-top:50px;
- overflow: visible;
- background-color: #fff;
- }
- .dialogBox{
- width: 392px;
- height: 400px;
- background: #304155;
- position: fixed;
- bottom:0;
- left:80px;
- z-index:4000;
- .dialogBoxTitle{
- display: flex;
- justify-content: space-between;
- padding:0 16px;
- border-bottom:1px solid #BFCBD9;
- height:44px;
- align-items: center;
- color:#BFCBD9;
- >:last-child{
- cursor: pointer;
- }
- }
- .dialogMain{
- display: flex;
- flex-wrap: wrap;
- }
- .dialogMainOne{
- color:#BFCBD9;
- display: flex;
- align-items: center;
- flex-direction: column;
- margin: 16px;
- .dialogIcon{
- width: 66px;
- height: 66px;
- background: rgba(64, 158, 255, 0.2);
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .newIcon{
- margin: 0 auto;
- font-size: 24px;
- }
- >p{
- font-size: 14px;
- }
- }
- }
- .dialogMadol{
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .5;
- background: #000;
- z-index: 3000;
- }
- .new-main-container{
- width: calc(100% - 220px);
- }
- .sidebar-container{
- transform: translate3d(0, 0, 0) !important;
- }
- </style>
|